Computer Assited Medical Intervention Tool Kit  version 4.1
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-2018 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 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 
50 class WizardController {
51 
52 public:
55 
58 
60  void launch();
61 
62 private:
63  QStateMachine machine;
65 
70  cepcoreschema::Cep* domCep;
71 
72  QString devDirectoryName;
73 };
74 #endif
WelcomeWidget
Class linked with welcome interface which allows user to choose what he wants to create ( action,...
Definition: WelcomeWidget.h:40
ComponentExtensionCreationState
State to create component extension.
Definition: ComponentExtensionCreationState.h:56
WizardController::mainWindow
WizardMainWindow * mainWindow
Definition: WizardController.h:63
WizardMainWindow
The main window of the Wizard. All state widgets are contained in this window.
Definition: WizardMainWindow.h:42
CepCreateOrModifyWidget.h
WizardController::machine
QStateMachine machine
Definition: WizardController.h:62
CepContactState.h
WizardController::~WizardController
~WizardController()
Destructor of the Controller.
Definition: WizardController.cpp:164
WizardController::launch
void launch()
Method to start.
Definition: WizardController.cpp:170
CepCreationDirectoryState.h
WizardController::devDirectoryName
QString devDirectoryName
Definition: WizardController.h:71
CepDescriptionState.h
CepContactWidget
Widget to enter contact of the creator of the CEP.
Definition: CepContactWidget.h:40
CepCreateRecapWidget.h
CepCreationDirectoryWidget.h
CepCreateRecapState
State to summarize the creation of the CEP.
Definition: CepCreateRecapState.h:44
LibraryCreationState
State to create library.
Definition: LibraryCreationState.h:55
CepCreateRecapWidget
Widget to summarize the creation of the CEP.
Definition: CepCreateRecapWidget.h:40
CepDescriptionWidget
Widget to describe the CEP.
Definition: CepDescriptionWidget.h:40
CepDescriptionState
CEP description state.
Definition: CepDescriptionState.h:43
CepContactWidget.h
WizardController::WizardController
WizardController()
Constructor: creation of all the interfaces and the connections.
Definition: WizardController.cpp:65
ComponentExtensionCreationState.h
WizardController.h
LibraryCreationState.h
GeneratingCEPState
State to generate CEP.
Definition: GeneratingCEPState.h:47
WizardController
Controller class, based on MVP architecture.
Definition: WizardController.h:49
WizardState
Generic state of the wizard.
Definition: WizardState.h:42
GeneratingCEPWidget.h
ActionExtensionCreationState
State to create an action extension. .
Definition: ActionExtensionCreationState.h:59
CepCreationDirectoryState
State to define the directory of the CEP.
Definition: CepCreationDirectoryState.h:38
CepCreateRecapState.h
GeneratingCEPState.h
WelcomeWidget.h
WizardState.h
CepCreationDirectoryWidget
Widget to define the directory of the CEP.
Definition: CepCreationDirectoryWidget.h:40
ActionExtensionCreationState.h
cepcoreschema
Definition: ActionExtensionGenerator.h:35
WizardMainWindow.h
CepContactState
State of the contact of the creator of the CEP.
Definition: CepContactState.h:43
GeneratingCEPWidget
Widget to generate CEP.
Definition: GeneratingCEPWidget.h:40
CepDescriptionWidget.h
WizardController::domCep
cepcoreschema::Cep * domCep
XML DOM Element create by CodeSynthesis.
Definition: WizardController.h:69