Computer Assited Medical Intervention Tool Kit  version 4.1
Public Slots | Public Member Functions | Private Member Functions | Private Attributes | List of all members
ExportAsMDL Class Reference

#include <ExportAsMDL.h>

Inherits camitk::Action.

Public Slots

virtual ApplyStatus apply ()
 this method is automatically called when the action is triggered. More...
 
void outputFileChanged (const QString &)
 slot retrieving text edited in the output file QLineEdit More...
 
void outputMDL ()
 slot opening a QFileDialog to provide the output file path in a .mdl format More...
 
- Public Slots inherited from camitk::Action
virtual ApplyStatus apply ()=0
 This method is called when the action has to be applied on the target list (get the target lists using getTargets()) It calls the algorithm of your action on the target list of components. More...
 
ApplyStatus applyAndRegister ()
 This method is called whenever the action has to be applied on the target list (like the apply()) method AND registered within the application history of actions. More...
 
ApplyStatus trigger (QWidget *parent=nullptr)
 This method triggers the action. More...
 

Public Member Functions

 ExportAsMDL (camitk::ActionExtension *)
 Default Constructor. More...
 
virtual QWidget * getWidget ()
 This method has to be redefined in your Action only if: More...
 
virtual ~ExportAsMDL ()
 Default Destructor. More...
 
- Public Member Functions inherited from camitk::Action
 Action (ActionExtension *)
 Default Constructor: the ActionExtension is needed. More...
 
ComponentgetOutputComponent ()
 Returns the output Components in case of only one Component. More...
 
ComponentList getOutputComponents ()
 Returns the output Component(s) More...
 
void setInputComponent (Component *input)
 Specify the input Components in case of only one Component. More...
 
void setInputComponents (ComponentList inputs)
 Specify the input Component(s) Only applyInPipeline() should be called with this method (maybe apply), but not trigger() as its first intruction is to clear the target components list !!! More...
 
 ~Action () override
 Destructor. More...
 
QAction * getQAction ()
 Get the corresponding QAction. More...
 
QString getName () const
 get the name of the action More...
 
QString getDescription () const
 the description of the action More...
 
QString getComponent () const
 the name of the component class that can be used by this action More...
 
QString getFamily () const
 the name of the family in which this action is associated More...
 
QString getExtensionName () const
 the name of the extension in the family in which this action is associated More...
 
QStringList getTag () const
 the name of the tag called this action More...
 
bool getEmbedded () const
 argument use to know if the widget is embedded or not More...
 
virtual QPixmap getIcon ()
 the icon to personalize the action (no icon by default) More...
 
const ComponentList getTargets () const
 the currently selected and valid (regarding the component property) components, for which this action is called More...
 
bool getAutoUpdateProperties () const
 
void setAutoUpdateProperties (bool)
 are the properties to be udpated every time the user makes a change in the widget (default is false)? More...
 
virtual Q_INVOKABLE PropertygetProperty (QString name)
 Get a Property given its name. More...
 
virtual bool addParameter (Property *)
 Add a new parameter to the action, using the CamiTK property class. More...
 
void applyTargetPosition (Component *input, Component *target)
 Change the target frame according to the default frame policy regarding the input's one. More...
 
void applyTargetPosition (Component *input, Component *target, Application::TargetPositionningPolicy policy)
 Change the target frame according to a given frame policy regarding the input's one. More...
 
ApplyStatus applyInPipeline ()
 This method encapsulates the apply() method. More...
 

Private Member Functions

ApplyStatus process (camitk::MeshComponent *)
 helper method to simplify the target component processing More...
 
void saveMeshComponentToMDL (camitk::MeshComponent *)
 export MeshComponent in MDL format More...
 

Private Attributes

QString filename
 output file More...
 
QLineEdit * outputfile
 output file editor More...
 

Additional Inherited Members

- Public Types inherited from camitk::Action
enum  ApplyStatus {
  SUCCESS, ERROR, WARNING, ABORTED,
  TRIGGERED
}
 describes what happened during the application of an algorithm (i.e. results of the apply method) More...
 
- Static Public Member Functions inherited from camitk::Action
static QString getStatusAsString (ApplyStatus)
 
- Protected Member Functions inherited from camitk::Action
void setName (QString name)
 
void setDescription (QString description)
 the description of the action More...
 
void setComponent (QString component)
 the name of the component class that can be used by this action More...
 
void setFamily (QString family)
 the name of the family in which this action is associated More...
 
void addTag (QString tag)
 add a tag to the tags list of this action More...
 
void setEmbedded (bool isEmbedded)
 set the embedded property (an action is embedded by default, unless specified otherwise by explicitly calling this method with false) More...
 
void setIcon (QPixmap)
 set the Pixmap More...
 
- Protected Attributes inherited from camitk::Action
QWidget * actionWidget
 the action widget More...
 

Constructor & Destructor Documentation

◆ ExportAsMDL()

ExportAsMDL::ExportAsMDL ( camitk::ActionExtension extension)

◆ ~ExportAsMDL()

ExportAsMDL::~ExportAsMDL ( )
virtual

Default Destructor.

Member Function Documentation

◆ apply

Action::ApplyStatus ExportAsMDL::apply ( )
virtualslot

this method is automatically called when the action is triggered.

Call getTargets() method to get the list of components to use.

Note
getTargets() is automatically filtered so that it only contains compatible components, i.e., instances of ExportAsMDL (or a subclass).

References camitk::Action::ABORTED, CAMITK_WARNING, camitk::Component::getHierarchy(), camitk::Component::getName(), camitk::Action::getTargets(), process(), and camitk::Action::SUCCESS.

◆ getWidget()

QWidget * ExportAsMDL::getWidget ( )
virtual

This method has to be redefined in your Action only if:

  • you do not have any widget to control your action (i.e. getWidget() will have to return NULL),
  • you do not use the default ActionWidget but another one.

In the second case, it is strongly recommanded to have a code similar to this:

QWidget *MyAction::getWidget() {
// build or update the widget
if (!myWidget)
myWidget = new MyVerySpecialActionWidget(this);
else
// MyVerySpecialActionWidget should have an update() method
myWidget->update();
return myWidget;
}

The update() method in MyVerySpecialActionWidget is used in case the selection has changed since the last time the widget was shown (a change in the selection often means the targets or the parameter values have changed, the UI should be refreshed as well).

Reimplemented from camitk::Action.

References camitk::Action::actionWidget, outputfile, outputFileChanged(), and outputMDL().

◆ outputFileChanged

void ExportAsMDL::outputFileChanged ( const QString &  ofile)
slot

slot retrieving text edited in the output file QLineEdit

References filename.

Referenced by getWidget().

◆ outputMDL

void ExportAsMDL::outputMDL ( )
slot

slot opening a QFileDialog to provide the output file path in a .mdl format

References outputfile.

Referenced by getWidget().

◆ process()

Action::ApplyStatus ExportAsMDL::process ( camitk::MeshComponent comp)
private

helper method to simplify the target component processing

References camitk::Action::ABORTED, CAMITK_WARNING, filename, saveMeshComponentToMDL(), and camitk::Action::SUCCESS.

Referenced by apply().

◆ saveMeshComponentToMDL()

void ExportAsMDL::saveMeshComponentToMDL ( camitk::MeshComponent comp)
private

export MeshComponent in MDL format

References filename, camitk::Component::getName(), and camitk::InterfaceGeometry::getPointSet().

Referenced by process().

Member Data Documentation

◆ filename

QString ExportAsMDL::filename
private

output file

Referenced by outputFileChanged(), process(), and saveMeshComponentToMDL().

◆ outputfile

QLineEdit* ExportAsMDL::outputfile
private

output file editor

Referenced by getWidget(), and outputMDL().


The documentation for this class was generated from the following files: