Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Main Repositories
otb
Commits
9bf2e486
Commit
9bf2e486
authored
Aug 18, 2016
by
Stéphane Albert
Browse files
MRG: Merged from origin/rfc-51-mvd_modules.
parents
be4c84e2
f87c8cde
Changes
117
Hide whitespace changes
Inline
Side-by-side
Modules/Visualization/Monteverdi/include/mvdMainWindow.h
View file @
9bf2e486
...
...
@@ -116,7 +116,7 @@ public:
// Public methods.
public:
/** \brief Constructor. */
MainWindow
(
QWidget
*
Parent
=
0
,
Qt
::
WindowFlags
flags
=
0
);
MainWindow
(
QWidget
*
p
=
0
,
Qt
::
WindowFlags
flags
=
0
);
/** \brief Destructor. */
virtual
~
MainWindow
();
...
...
Modules/Visualization/Monteverdi/include/mvdPreferencesDialog.h
View file @
9bf2e486
...
...
@@ -85,7 +85,7 @@ class Monteverdi_EXPORT PreferencesDialog :
public:
/** Constructor */
PreferencesDialog
(
QWidget
*
p
arent
=
NULL
,
Qt
::
WindowFlags
flags
=
0
);
PreferencesDialog
(
QWidget
*
p
=
NULL
,
Qt
::
WindowFlags
flags
=
0
);
/** Destructor */
virtual
~
PreferencesDialog
();
...
...
Modules/Visualization/Monteverdi/src/mvdMainWindow.cxx
View file @
9bf2e486
...
...
@@ -114,8 +114,8 @@ namespace mvd
/*****************************************************************************/
MainWindow
::
MainWindow
(
QWidget
*
p
arent
,
Qt
::
WindowFlags
flags
)
:
I18nMainWindow
(
p
arent
,
flags
),
::
MainWindow
(
QWidget
*
p
,
Qt
::
WindowFlags
flags
)
:
I18nMainWindow
(
p
,
flags
),
m_UI
(
new
mvd
::
Ui
::
MainWindow
()
),
m_ColorDynamicsDock
(
NULL
),
m_ColorSetupDock
(
NULL
),
...
...
Modules/Visualization/Monteverdi/src/mvdPreferencesDialog.cxx
View file @
9bf2e486
...
...
@@ -100,8 +100,8 @@ IsPathModified( I18nCoreApplication::SettingsKey enabledKey,
/* CLASS IMPLEMENTATION SECTION */
/*****************************************************************************/
PreferencesDialog
::
PreferencesDialog
(
QWidget
*
p
arent
,
Qt
::
WindowFlags
flags
)
:
QDialog
(
p
arent
,
flags
),
::
PreferencesDialog
(
QWidget
*
p
,
Qt
::
WindowFlags
flags
)
:
QDialog
(
p
,
flags
),
m_UI
(
new
mvd
::
Ui
::
PreferencesDialog
()
),
m_ResultsDirModified
(
false
),
m_GeoidFileModified
(
false
),
...
...
Modules/Visualization/MonteverdiCore/include/mvdAbstractImageModel.h
View file @
9bf2e486
...
...
@@ -293,7 +293,7 @@ signals:
protected:
/** Constructor */
AbstractImageModel
(
QObject
*
p
arent
=
NULL
);
AbstractImageModel
(
QObject
*
p
=
NULL
);
/**
* \brief Set image properties pointer.
...
...
Modules/Visualization/MonteverdiCore/include/mvdAbstractLayerModel.h
View file @
9bf2e486
...
...
@@ -156,7 +156,7 @@ signals:
protected:
/** \brief Constructor. */
AbstractLayerModel
(
QObject
*
p
arent
=
NULL
);
AbstractLayerModel
(
QObject
*
p
=
NULL
);
/**
*/
...
...
Modules/Visualization/MonteverdiCore/include/mvdAbstractModel.h
View file @
9bf2e486
...
...
@@ -132,7 +132,7 @@ signals:
// Protected methods.
protected:
/** Constructor */
AbstractModel
(
QObject
*
p
arent
=
NULL
);
AbstractModel
(
QObject
*
p
=
NULL
);
/**
*/
...
...
Modules/Visualization/MonteverdiCore/include/mvdAbstractWorker.h
View file @
9bf2e486
...
...
@@ -162,7 +162,7 @@ signals:
protected:
/** \brief Constructor. */
AbstractWorker
(
QObject
*
p
arent
=
NULL
);
AbstractWorker
(
QObject
*
p
=
NULL
);
//
// Protected attributes.
...
...
Modules/Visualization/MonteverdiCore/include/mvdApplicationsBrowser.h
View file @
9bf2e486
...
...
@@ -103,7 +103,7 @@ public:
/** typedef */
/** \brief Constructor. */
ApplicationsBrowser
(
QObject
*
p
arent
=
NULL
);
ApplicationsBrowser
(
QObject
*
p
=
NULL
);
/** \brief Destructor. */
virtual
~
ApplicationsBrowser
();
...
...
Modules/Visualization/MonteverdiCore/include/mvdBackgroundTask.h
View file @
9bf2e486
...
...
@@ -90,7 +90,7 @@ public:
*/
BackgroundTask
(
AbstractWorker
*
worker
,
bool
autoDestroy
=
true
,
QObject
*
p
arent
=
NULL
);
QObject
*
p
=
NULL
);
/**
* \brief Destructor.
...
...
Modules/Visualization/MonteverdiCore/include/mvdHistogramModel.h
View file @
9bf2e486
...
...
@@ -158,7 +158,7 @@ public:
public:
/** \brief Constructor. */
HistogramModel
(
QObject
*
p
arent
=
NULL
);
HistogramModel
(
QObject
*
p
=
NULL
);
/** \brief Destructor. */
virtual
~
HistogramModel
();
...
...
Modules/Visualization/MonteverdiCore/include/mvdI18nCoreApplication.h
View file @
9bf2e486
...
...
@@ -296,7 +296,7 @@ public:
LoadImageModel
(
const
QString
&
filename
,
int
width
,
int
height
,
QObject
*
p
arent
=
NULL
);
QObject
*
p
=
NULL
);
/**
*/
...
...
Modules/Visualization/MonteverdiCore/include/mvdImageImporter.h
View file @
9bf2e486
...
...
@@ -99,7 +99,7 @@ public:
bool
isForceCreateEnabled
,
int
width
=-
1
,
int
height
=-
1
,
QObject
*
p
arent
=
NULL
);
QObject
*
p
=
NULL
);
/**
* \brief Constructor (image-model).
...
...
@@ -112,7 +112,7 @@ public:
ImageImporter
(
const
QString
&
filename
,
int
width
=-
1
,
int
height
=-
1
,
QObject
*
p
arent
=
NULL
);
QObject
*
p
=
NULL
);
/**
* \brief Destructor.
...
...
Modules/Visualization/MonteverdiCore/include/mvdImageProperties.h
View file @
9bf2e486
...
...
@@ -103,7 +103,7 @@ public:
/** \brief Constructor. */
#if IMAGE_PROPERTIES_IS_QOBJECT
ImageProperties
(
QObject
*
p
arent
=
NULL
);
ImageProperties
(
QObject
*
p
=
NULL
);
#else
ImageProperties
();
#endif
...
...
Modules/Visualization/MonteverdiCore/include/mvdMyClass.h
View file @
9bf2e486
...
...
@@ -86,7 +86,7 @@ class Monteverdi_EXPORT MyClass :
public:
/** \brief Constructor. */
MyClass
(
QObject
*
p
arent
=
NULL
);
MyClass
(
QObject
*
p
=
NULL
);
/** \brief Destructor. */
virtual
~
MyClass
();
...
...
Modules/Visualization/MonteverdiCore/include/mvdOverviewBuilder.h
View file @
9bf2e486
...
...
@@ -100,7 +100,7 @@ public:
* \brief Constructor.
*/
OverviewBuilder
(
const
GDALOverviewsBuilderVector
&
builders
,
QObject
*
p
arent
=
NULL
);
QObject
*
p
=
NULL
);
/**
* \brief Destructor.
...
...
Modules/Visualization/MonteverdiCore/include/mvdQuicklookModel.h
View file @
9bf2e486
...
...
@@ -93,7 +93,7 @@ public:
public:
/** Constructor */
QuicklookModel
(
QObject
*
p
arent
=
NULL
);
QuicklookModel
(
QObject
*
p
=
NULL
);
/** Destructor */
virtual
~
QuicklookModel
();
...
...
Modules/Visualization/MonteverdiCore/include/mvdStackedLayerModel.h
View file @
9bf2e486
...
...
@@ -108,7 +108,7 @@ public:
public:
/** \brief Constructor. */
StackedLayerModel
(
QObject
*
p
arent
=
NULL
);
StackedLayerModel
(
QObject
*
p
=
NULL
);
/** \brief Destructor. */
virtual
~
StackedLayerModel
();
...
...
Modules/Visualization/MonteverdiCore/include/mvdVectorImageModel.h
View file @
9bf2e486
...
...
@@ -110,7 +110,7 @@ public:
static
const
unsigned
int
DEFAULT_LOD_SIZE
;
/** Constructor */
VectorImageModel
(
QObject
*
p
arent
=
NULL
);
VectorImageModel
(
QObject
*
p
=
NULL
);
/** Destructor */
virtual
~
VectorImageModel
();
...
...
Modules/Visualization/MonteverdiCore/src/mvdAbstractImageModel.cxx
View file @
9bf2e486
...
...
@@ -87,8 +87,8 @@ ENHANCED_BAND_NAMES[ 10 ] = {
/*******************************************************************************/
AbstractImageModel
::
AbstractImageModel
(
QObject
*
p
arent
)
:
AbstractLayerModel
(
p
arent
),
::
AbstractImageModel
(
QObject
*
p
)
:
AbstractLayerModel
(
p
),
m_NativeLargestRegion
(),
m_Id
(
-
1
),
m_CurrentLod
(
0
),
...
...
Prev
1
2
3
4
5
6
Next
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment