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
CamiTK
CamiTK Community Edition
Commits
3ba44bba
Commit
3ba44bba
authored
Mar 30, 2016
by
saubatn
Browse files
Merge branch 'feature-31' Add CEP name in the Q_PLUGIN_METADATA IID name into develop.
parents
2b59eaa5
a4d72c74
Changes
30
Hide whitespace changes
Inline
Side-by-side
imaging/actions/itkfilters/ITKFiltersExtension.h
View file @
3ba44bba
...
...
@@ -38,14 +38,14 @@
class
ITKFiltersExtension
:
public
camitk
::
ActionExtension
{
Q_OBJECT
Q_INTERFACES
(
camitk
::
ActionExtension
)
Q_PLUGIN_METADATA
(
IID
"fr.imag.camitk.action.itkfilters"
)
Q_PLUGIN_METADATA
(
IID
"fr.imag.camitk.
imaging.
action.itkfilters"
)
public:
/// the constructor
ITKFiltersExtension
()
:
ActionExtension
()
{}
;
ITKFiltersExtension
()
:
ActionExtension
()
{}
/// the destructor
virtual
~
ITKFiltersExtension
()
{}
;
virtual
~
ITKFiltersExtension
()
{}
/// Method that return the action extension name
virtual
QString
getName
()
{
...
...
imaging/actions/itksegmentation/ITKSegmentationExtension.h
View file @
3ba44bba
...
...
@@ -38,7 +38,7 @@
class
ITKSegmentationExtension
:
public
camitk
::
ActionExtension
{
Q_OBJECT
Q_INTERFACES
(
camitk
::
ActionExtension
)
Q_PLUGIN_METADATA
(
IID
"fr.imag.camitk.action.itksegmentation"
)
Q_PLUGIN_METADATA
(
IID
"fr.imag.camitk.
imaging.
action.itksegmentation"
)
public:
/// the constructor
...
...
imaging/components/dicom/DicomComponentExtension.h
View file @
3ba44bba
...
...
@@ -52,7 +52,7 @@ class DicomDialogEntry;
class
DicomComponentExtension
:
public
camitk
::
ComponentExtension
{
Q_OBJECT
Q_INTERFACES
(
camitk
::
ComponentExtension
)
Q_PLUGIN_METADATA
(
IID
"fr.imag.camitk.component.dicom"
)
Q_PLUGIN_METADATA
(
IID
"fr.imag.camitk.
imaging.
component.dicom"
)
public:
/// Constructor
...
...
imaging/components/itkimage/ItkImageComponentExtension.h
View file @
3ba44bba
...
...
@@ -39,11 +39,11 @@
class
ItkImageComponentExtension
:
public
camitk
::
ImageComponentExtension
{
Q_OBJECT
Q_INTERFACES
(
camitk
::
ComponentExtension
)
Q_PLUGIN_METADATA
(
IID
"fr.imag.camitk.component.itkimage"
)
Q_PLUGIN_METADATA
(
IID
"fr.imag.camitk.
imaging.
component.itkimage"
)
public:
/// the constructor (do nothing really)
ItkImageComponentExtension
()
:
ImageComponentExtension
()
{}
;
ItkImageComponentExtension
()
:
ImageComponentExtension
()
{}
/// get the plugin name
virtual
QString
getName
()
const
;
...
...
modeling/actions/mml/MMLActionExtension.h
View file @
3ba44bba
...
...
@@ -40,14 +40,14 @@
class
MMLActionExtension
:
public
camitk
::
ActionExtension
{
Q_OBJECT
Q_INTERFACES
(
camitk
::
ActionExtension
)
Q_PLUGIN_METADATA
(
IID
"fr.imag.camitk.action.mml"
)
Q_PLUGIN_METADATA
(
IID
"fr.imag.camitk.
imaging.
action.mml"
)
public:
/// the constructor
MMLActionExtension
()
:
ActionExtension
()
{}
;
MMLActionExtension
()
:
ActionExtension
()
{}
/// the destructor
virtual
~
MMLActionExtension
()
{}
;
virtual
~
MMLActionExtension
()
{}
/// Method must be reimplemented when an ActionExtension is done,
/// the own actions of an extension are load there.
...
...
@@ -68,4 +68,4 @@ public:
#endif // MMLACTIONEXTENSION_H
\ No newline at end of file
#endif // MMLACTIONEXTENSION_H
modeling/actions/pml/PMLActionExtension.h
View file @
3ba44bba
...
...
@@ -31,14 +31,14 @@
class
PMLActionExtension
:
public
camitk
::
ActionExtension
{
Q_OBJECT
Q_INTERFACES
(
camitk
::
ActionExtension
)
Q_PLUGIN_METADATA
(
IID
"fr.imag.camitk.action.pml"
)
Q_PLUGIN_METADATA
(
IID
"fr.imag.camitk.
modeling.
action.pml"
)
public:
/// Constructor
PMLActionExtension
()
:
ActionExtension
()
{}
;
PMLActionExtension
()
:
ActionExtension
()
{}
/// Destructor
virtual
~
PMLActionExtension
()
{}
;
virtual
~
PMLActionExtension
()
{}
/// Method returning the action extension name
virtual
QString
getName
()
{
...
...
modeling/components/mmlcomponent/MMLComponentExtension.h
View file @
3ba44bba
...
...
@@ -42,11 +42,11 @@
class
MMLCOMPONENT_API
MMLComponentExtension
:
public
camitk
::
ComponentExtension
{
Q_OBJECT
Q_INTERFACES
(
camitk
::
ComponentExtension
)
Q_PLUGIN_METADATA
(
IID
"fr.imag.camitk.component.mmlcomponent"
)
Q_PLUGIN_METADATA
(
IID
"fr.imag.camitk.
modeling.
component.mmlcomponent"
)
public:
/// the constructor (do nothing really)
MMLComponentExtension
()
:
ComponentExtension
()
{}
;
MMLComponentExtension
()
:
ComponentExtension
()
{}
/// get the plugin name
virtual
QString
getName
()
const
;
...
...
modeling/components/pmlcomponent/PMLComponentExtension.h
View file @
3ba44bba
...
...
@@ -42,11 +42,11 @@
class
PMLComponentExtension
:
public
camitk
::
MeshComponentExtension
{
Q_OBJECT
Q_INTERFACES
(
camitk
::
ComponentExtension
)
Q_PLUGIN_METADATA
(
IID
"fr.imag.camitk.component.pmlcomponent"
)
Q_PLUGIN_METADATA
(
IID
"fr.imag.camitk.
modeling.
component.pmlcomponent"
)
public:
/// the constructor (does nothing really)
PMLComponentExtension
()
:
MeshComponentExtension
()
{}
;
PMLComponentExtension
()
:
MeshComponentExtension
()
{}
/// get the plugin name
virtual
QString
getName
()
const
;
...
...
sdk/actions/application/ApplicationActionExtension.h
View file @
3ba44bba
...
...
@@ -43,14 +43,14 @@
class
ApplicationActionExtension
:
public
camitk
::
ActionExtension
{
Q_OBJECT
Q_INTERFACES
(
camitk
::
ActionExtension
)
Q_PLUGIN_METADATA
(
IID
"fr.imag.camitk.action.application"
)
Q_PLUGIN_METADATA
(
IID
"fr.imag.camitk.
sdk.
action.application"
)
public:
/// the constructor (needed to initialize the icon resources)
ApplicationActionExtension
();
/// the destructor
virtual
~
ApplicationActionExtension
()
{}
;
virtual
~
ApplicationActionExtension
()
{}
/// initialize all the actions
virtual
void
init
();
...
...
@@ -67,4 +67,4 @@ public:
};
#endif // APPLICATION_ACTION_EXTENSION_H
\ No newline at end of file
#endif // APPLICATION_ACTION_EXTENSION_H
sdk/actions/frame/editframes/TestFrameExtension.h
View file @
3ba44bba
...
...
@@ -30,14 +30,14 @@
class
TestFrameExtension
:
public
camitk
::
ActionExtension
{
Q_OBJECT
Q_INTERFACES
(
camitk
::
ActionExtension
)
Q_PLUGIN_METADATA
(
IID
"fr.imag.camitk.action.editframes"
)
Q_PLUGIN_METADATA
(
IID
"fr.imag.camitk.
sdk.
action.editframes"
)
public:
/// Constructor
TestFrameExtension
()
:
ActionExtension
()
{}
;
TestFrameExtension
()
:
ActionExtension
()
{}
/// Destructor
virtual
~
TestFrameExtension
()
{}
;
virtual
~
TestFrameExtension
()
{}
/// Method returning the action extension name
virtual
QString
getName
()
{
...
...
sdk/actions/image/cropvolume/BoxVOIExtension.h
View file @
3ba44bba
...
...
@@ -38,14 +38,14 @@
class
BoxVOIExtension
:
public
camitk
::
ActionExtension
{
Q_OBJECT
Q_INTERFACES
(
camitk
::
ActionExtension
)
Q_PLUGIN_METADATA
(
IID
"fr.imag.camitk.action.cropvolume"
)
Q_PLUGIN_METADATA
(
IID
"fr.imag.camitk.
sdk.
action.cropvolume"
)
public:
/// the constructor
BoxVOIExtension
()
:
ActionExtension
()
{}
;
BoxVOIExtension
()
:
ActionExtension
()
{}
/// the destructor
virtual
~
BoxVOIExtension
()
{}
;
virtual
~
BoxVOIExtension
()
{}
/// Method that return the action extension name
virtual
QString
getName
()
{
...
...
sdk/actions/image/imagelut/ImageLutExtension.h
View file @
3ba44bba
...
...
@@ -38,14 +38,14 @@
class
ImageLutExtension
:
public
camitk
::
ActionExtension
{
Q_OBJECT
Q_INTERFACES
(
camitk
::
ActionExtension
)
Q_PLUGIN_METADATA
(
IID
"fr.imag.camitk.action.imagelut"
)
Q_PLUGIN_METADATA
(
IID
"fr.imag.camitk.
sdk.
action.imagelut"
)
public:
/// the constructor
ImageLutExtension
()
:
ActionExtension
()
{}
;
ImageLutExtension
()
:
ActionExtension
()
{}
/// the destructor
virtual
~
ImageLutExtension
()
{}
;
virtual
~
ImageLutExtension
()
{}
/// initialize all the actions
virtual
void
init
();
...
...
sdk/actions/image/imageresampling/ResampleExtension.h
View file @
3ba44bba
...
...
@@ -30,14 +30,14 @@
class
ResampleExtension
:
public
camitk
::
ActionExtension
{
Q_OBJECT
Q_INTERFACES
(
camitk
::
ActionExtension
)
Q_PLUGIN_METADATA
(
IID
"fr.imag.camitk.action.imageresampling"
)
Q_PLUGIN_METADATA
(
IID
"fr.imag.camitk.
sdk.
action.imageresampling"
)
public:
/// Constructor
ResampleExtension
()
:
ActionExtension
()
{}
;
ResampleExtension
()
:
ActionExtension
()
{}
/// Destructor
virtual
~
ResampleExtension
()
{}
;
virtual
~
ResampleExtension
()
{}
/// Method returning the action extension name
virtual
QString
getName
()
{
...
...
sdk/actions/image/multipicking/MultiPickingExtension.h
View file @
3ba44bba
...
...
@@ -38,14 +38,14 @@
class
MultiPickingExtension
:
public
camitk
::
ActionExtension
{
Q_OBJECT
Q_INTERFACES
(
camitk
::
ActionExtension
)
Q_PLUGIN_METADATA
(
IID
"fr.imag.camitk.action.multipicking"
)
Q_PLUGIN_METADATA
(
IID
"fr.imag.camitk.
sdk.
action.multipicking"
)
public:
/// the constructor
MultiPickingExtension
()
:
ActionExtension
()
{}
;
MultiPickingExtension
()
:
ActionExtension
()
{}
/// the destructor
virtual
~
MultiPickingExtension
()
{}
;
virtual
~
MultiPickingExtension
()
{}
/// Method that return the action extension name
virtual
QString
getName
()
{
...
...
sdk/actions/image/pixelcolorchanger/PixelColorChangerExtension.h
View file @
3ba44bba
...
...
@@ -33,14 +33,14 @@
class
PixelColorChangerExtension
:
public
camitk
::
ActionExtension
{
Q_OBJECT
Q_INTERFACES
(
camitk
::
ActionExtension
)
Q_PLUGIN_METADATA
(
IID
"fr.imag.camitk.action.pixelcolorchanger"
)
Q_PLUGIN_METADATA
(
IID
"fr.imag.camitk.
sdk.
action.pixelcolorchanger"
)
public:
/// the constructor
PixelColorChangerExtension
()
:
ActionExtension
()
{}
;
PixelColorChangerExtension
()
:
ActionExtension
()
{}
/// the destructor
virtual
~
PixelColorChangerExtension
()
{}
;
virtual
~
PixelColorChangerExtension
()
{}
/// initialize all the actions
virtual
void
init
();
...
...
@@ -58,4 +58,4 @@ public:
};
#endif // PIXELCOLORCHANGEREXTENSION_H
\ No newline at end of file
#endif // PIXELCOLORCHANGEREXTENSION_H
sdk/actions/image/reconstruction/ReconstructionExtension.h
View file @
3ba44bba
...
...
@@ -40,14 +40,14 @@
class
ReconstructionExtension
:
public
camitk
::
ActionExtension
{
Q_OBJECT
Q_INTERFACES
(
camitk
::
ActionExtension
)
Q_PLUGIN_METADATA
(
IID
"fr.imag.camitk.action.reconstruction"
)
Q_PLUGIN_METADATA
(
IID
"fr.imag.camitk.
sdk.
action.reconstruction"
)
public:
/// the constructor
ReconstructionExtension
()
:
ActionExtension
()
{}
;
ReconstructionExtension
()
:
ActionExtension
()
{}
/// the destructor
virtual
~
ReconstructionExtension
()
{}
;
virtual
~
ReconstructionExtension
()
{}
/// initialize all the actions
virtual
void
init
();
...
...
@@ -65,4 +65,4 @@ public:
};
#endif // RECONSTRUCTIONEXTENSION_H
\ No newline at end of file
#endif // RECONSTRUCTIONEXTENSION_H
sdk/actions/image/reorientimage/ReorientImageExtension.h
View file @
3ba44bba
...
...
@@ -30,14 +30,14 @@
class
ReorientImageExtension
:
public
camitk
::
ActionExtension
{
Q_OBJECT
Q_INTERFACES
(
camitk
::
ActionExtension
)
Q_PLUGIN_METADATA
(
IID
"fr.imag.camitk.action.reorientimage"
)
Q_PLUGIN_METADATA
(
IID
"fr.imag.camitk.
sdk.
action.reorientimage"
)
public:
/// Constructor
ReorientImageExtension
()
:
camitk
::
ActionExtension
()
{}
;
ReorientImageExtension
()
:
camitk
::
ActionExtension
()
{}
/// Destructor
virtual
~
ReorientImageExtension
()
{}
;
virtual
~
ReorientImageExtension
()
{}
/// Method returning the action extension name
virtual
QString
getName
()
{
...
...
sdk/actions/image/showin3d/ShowIn3DExtension.h
View file @
3ba44bba
...
...
@@ -37,14 +37,14 @@
class
ShowIn3DExtension
:
public
camitk
::
ActionExtension
{
Q_OBJECT
Q_INTERFACES
(
camitk
::
ActionExtension
)
Q_PLUGIN_METADATA
(
IID
"fr.imag.camitk.action.showin3D"
)
Q_PLUGIN_METADATA
(
IID
"fr.imag.camitk.
sdk.
action.showin3D"
)
public:
/// Constructor
ShowIn3DExtension
()
:
camitk
::
ActionExtension
()
{}
;
ShowIn3DExtension
()
:
camitk
::
ActionExtension
()
{}
/// Destructor
virtual
~
ShowIn3DExtension
()
{}
;
virtual
~
ShowIn3DExtension
()
{}
/// Method returning the action extension name
virtual
QString
getName
()
{
...
...
sdk/actions/image/volumerendering/VolumeRenderingExtension.h
View file @
3ba44bba
...
...
@@ -38,14 +38,14 @@
class
VolumeRenderingExtension
:
public
camitk
::
ActionExtension
{
Q_OBJECT
Q_INTERFACES
(
camitk
::
ActionExtension
)
Q_PLUGIN_METADATA
(
IID
"fr.imag.camitk.action.volumerendering"
)
Q_PLUGIN_METADATA
(
IID
"fr.imag.camitk.
sdk.
action.volumerendering"
)
public:
/// the constructor
VolumeRenderingExtension
()
:
ActionExtension
()
{}
;
VolumeRenderingExtension
()
:
ActionExtension
()
{}
/// the destructor
virtual
~
VolumeRenderingExtension
()
{}
;
virtual
~
VolumeRenderingExtension
()
{}
/// Method that return the action extension name
virtual
QString
getName
()
{
...
...
sdk/actions/imageacquisition/ImageAcquisitionActionExtension.h
View file @
3ba44bba
...
...
@@ -41,7 +41,7 @@
class
ImageAcquisitionActionExtension
:
public
camitk
::
ActionExtension
{
Q_OBJECT
Q_INTERFACES
(
camitk
::
ActionExtension
)
Q_PLUGIN_METADATA
(
IID
"fr.imag.camitk.action.imageacquisition"
)
Q_PLUGIN_METADATA
(
IID
"fr.imag.camitk.
sdk.
action.imageacquisition"
)
public:
/// Constructor
...
...
Prev
1
2
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