Computer Assited Medical Intervention Tool Kit  version 4.0
ActionTransition.h
Go to the documentation of this file.
1 /*****************************************************************************
2  * $CAMITK_LICENCE_BEGIN$
3  *
4  * CamiTK - Computer Assisted Medical Intervention ToolKit
5  * (c) 2001-2016 Univ. Grenoble Alpes, CNRS, TIMC-IMAG UMR 5525 (GMCAO)
6  *
7  * Visit http://camitk.imag.fr for more information
8  *
9  * This file is part of CamiTK.
10  *
11  * CamiTK is free software: you can redistribute it and/or modify
12  * it under the terms of the GNU Lesser General Public License version 3
13  * only, as published by the Free Software Foundation.
14  *
15  * CamiTK is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18  * GNU Lesser General Public License version 3 for more details.
19  *
20  * You should have received a copy of the GNU Lesser General Public License
21  * version 3 along with CamiTK. If not, see <http://www.gnu.org/licenses/>.
22  *
23  * $CAMITK_LICENCE_END$
24  ****************************************************************************/
25 #ifndef ACTIONTRANSITION_H
26 #define ACTIONTRANSITION_H
27 
28 #include <QSignalTransition>
29 #include <QString>
30 #include <QTime>
31 #include <QMap>
32 #include <QTextStream>
33 #include <QStringList>
34 
35 class ActionState;
56 class ActionTransition : public QSignalTransition {
57 
58 public:
59 
61  ActionTransition(QObject * sender, const char * signal, QState * sourceState = 0, QString buttonText="", bool applyPreviousAction = true, QTextStream * logStream = NULL);
62 
65  void addComponentToClose(QString compName, QString compType, bool force=false);
66 
68  virtual void onTransition(QEvent *e);
69 
71  void setButtonText(QString buttonText);
72 
74  QString getButtonText();
75 
76 private:
78  QString buttonText;
79 
82 
84  QMap<QString, QString> componentsToClose;
85 
88 
90  QTextStream * logStream;
91 
93  QTime * startTime;
94 };
95 #endif // ACTIONTRANSITION_H
QStringList componentsToForceClose
list of the components&#39; name that should be closed even if they are modified
Definition: ActionTransition.h:87
void setButtonText(QString buttonText)
the transition button&#39;s text
Definition: ActionTransition.cpp:127
bool applyPreviousAction
should the action be applied during the transition (default set to true)
Definition: ActionTransition.h:81
virtual void onTransition(QEvent *e)
called during the transition
Definition: ActionTransition.cpp:40
QTime * startTime
Keep track of time (needed for the log)
Definition: ActionTransition.h:93
QString buttonText
the text of the push button displayed in the ASM
Definition: ActionTransition.h:78
QString getButtonText()
get the transition button&#39;s text
Definition: ActionTransition.cpp:132
The state (in a state machine point of view) corresponding to the current processed action...
Definition: ActionState.h:47
QMap< QString, QString > componentsToClose
Map containing all the name/type of the components to be closed during the transition.
Definition: ActionTransition.h:84
void addComponentToClose(QString compName, QString compType, bool force=false)
add a component&#39;s name and type to the list of component to close during the transition.
Definition: ActionTransition.cpp:137
This class handle a transition between two states (including previous/next buttons).
Definition: ActionTransition.h:56
QTextStream * logStream
local pointer to the log stream
Definition: ActionTransition.h:90
ActionTransition(QObject *sender, const char *signal, QState *sourceState=0, QString buttonText="", bool applyPreviousAction=true, QTextStream *logStream=NULL)
constructor: takes at least the state and signal considered for the transition
Definition: ActionTransition.cpp:33