Computer Assited Medical Intervention Tool Kit  version 5.0
WizardController.h
Go to the documentation of this file.
1 /*****************************************************************************
2  * $CAMITK_LICENCE_BEGIN$
3  *
4  * CamiTK - Computer Assisted Medical Intervention ToolKit
5  * (c) 2001-2021 Univ. Grenoble Alpes, CNRS, Grenoble INP, TIMC, 38000 Grenoble, France
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 WIZARDCONTROLLER_H
26 #define WIZARDCONTROLLER_H
27 
28 // Import from Qt
29 #include <QStateMachine>
30 
31 class WizardMainWindow;
32 
33 // Dependency from cepcoreschema
34 // Declaration here to avoid declaration in dependant projects.
35 namespace cepcoreschema {
36 class Cep;
37 }
38 
51 
52 public:
55 
58 
60  void launch();
61 
62 private:
63  QStateMachine machine;
65 
70  cepcoreschema::Cep* domCep;
71 
73 };
74 #endif
WelcomeWidget
Class linked with welcome interface which allows user to choose what he wants to create ( action,...
Definition: WelcomeWidget.h:41
ComponentExtensionCreationState
State to create component extension.
Definition: ComponentExtensionCreationState.h:57
WizardController::mainWindow
WizardMainWindow * mainWindow
Definition: WizardController.h:64
WizardMainWindow
The main window of the Wizard. All state widgets are contained in this window.
Definition: WizardMainWindow.h:43
CepCreateOrModifyWidget.h
WizardController::machine
QStateMachine machine
Definition: WizardController.h:63
CepContactState.h
WizardController::~WizardController
~WizardController()
Destructor of the Controller.
Definition: WizardController.cpp:173
WizardController::launch
void launch()
Method to start.
Definition: WizardController.cpp:179
CepCreationDirectoryState.h
WizardController::devDirectoryName
QString devDirectoryName
Definition: WizardController.h:72
CepDescriptionState.h
CepContactWidget
Widget to enter contact of the creator of the CEP.
Definition: CepContactWidget.h:41
CepCreateRecapWidget.h
CepCreationDirectoryWidget.h
CepCreateRecapState
State to summarize the creation of the CEP.
Definition: CepCreateRecapState.h:45
LibraryCreationState
State to create library.
Definition: LibraryCreationState.h:56
CepCreateRecapWidget
Widget to summarize the creation of the CEP.
Definition: CepCreateRecapWidget.h:41
CepDescriptionWidget
Widget to describe the CEP.
Definition: CepDescriptionWidget.h:41
CepDescriptionState
CEP description state.
Definition: CepDescriptionState.h:44
CepContactWidget.h
WizardController::WizardController
WizardController()
Constructor: creation of all the interfaces and the connections.
Definition: WizardController.cpp:67
ComponentExtensionCreationState.h
WizardController.h
LibraryCreationState.h
GeneratingCEPState
State to generate CEP.
Definition: GeneratingCEPState.h:48
WizardController
Controller class, based on MVP architecture.
Definition: WizardController.h:50
WizardState
Generic state of the wizard.
Definition: WizardState.h:43
GeneratingCEPWidget.h
ViewerExtensionCreationState
State to create an action extension. .
Definition: ViewerExtensionCreationState.h:60
ActionExtensionCreationState
State to create an action extension. .
Definition: ActionExtensionCreationState.h:60
CepCreationDirectoryState
State to define the directory of the CEP.
Definition: CepCreationDirectoryState.h:39
CepCreateRecapState.h
GeneratingCEPState.h
WelcomeWidget.h
WizardState.h
CepCreationDirectoryWidget
Widget to define the directory of the CEP.
Definition: CepCreationDirectoryWidget.h:41
ViewerExtensionCreationState.h
ActionExtensionCreationState.h
cepcoreschema
Definition: ActionExtensionGenerator.h:36
WizardMainWindow.h
CepContactState
State of the contact of the creator of the CEP.
Definition: CepContactState.h:44
GeneratingCEPWidget
Widget to generate CEP.
Definition: GeneratingCEPWidget.h:41
CepDescriptionWidget.h
WizardController::domCep
cepcoreschema::Cep * domCep
XML DOM Element create by CodeSynthesis.
Definition: WizardController.h:70