ALBA
albaWizardBlockVMESelection.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: ALBA (Agile Library for Biomedical Applications)
4 Module: albaWizardSelectionBlock
5 Authors: Gianluigi Crimi
6
7 Copyright (c) BIC
8 All rights reserved. See Copyright.txt or
9
10
11 This software is distributed WITHOUT ANY WARRANTY; without even
12 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
13 PURPOSE. See the above copyright notice for more information.
14
15=========================================================================*/
16
17#ifndef __albaWizardBlockVMESelection_H__
18#define __albaWizardBlockVMESelection_H__
19
20//----------------------------------------------------------------------------
21// includes :
22//----------------------------------------------------------------------------
23#include "albaDefines.h"
24#include "albaWizardBlock.h"
25#include <vector>
26
27//----------------------------------------------------------------------------
28// forward reference
29//----------------------------------------------------------------------------
30
36{
37public:
38
40 albaWizardBlockVMESelection(const char *name);
41
44
46 void SetWindowTitle(const char *Title);
47
49 wxString GetWindowTitle(){return m_Title;};
50
52 void SetAcceptedVME(const char *VME);
53
55 wxString GetAcceptedVME(){return m_AcceptedVME;};
56
57
58protected:
59
61 virtual void ExcutionBegin();
62
63 //** VME Accept function */
64 static int VMEAccept(albaVME*node);
65
66private:
67
68 wxString m_AcceptedVME;
69 wxString m_Title;
70 wxString m_Description;
71};
72#endif
albaVME -
Definition: albaVME.h:150
Class Name: albaWizardSelectionBlock.
~albaWizardBlockVMESelection()
Default destructor.
static int VMEAccept(albaVME *node)
wxString GetWindowTitle()
Get The title of the selection window.
albaWizardBlockVMESelection(const char *name)
Default constructor.
void SetAcceptedVME(const char *VME)
Set The title of the selection window.
wxString GetAcceptedVME()
Set The title of the selection window.
void SetWindowTitle(const char *Title)
Set The title of the selection window.
virtual void ExcutionBegin()
Starts the execution of the block.
Class Name: albaWizardBlock.