ALBA
albaWizardBlockVMEFindOrSelection.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: ALBA (Agile Library for Biomedical Applications)
4 Module: albaWizardBlockVMEFindOrSelection
5 Authors: Simone Bna
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 __albaWizardBlockVMEFindOrSelection_H__
18#define __albaWizardBlockVMEFindOrSelection_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
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 //Set the path of the parent vme of a list of childs
58 //The wizard block will look for childs of correct type
59 void VmeParentSelect( const char *path );
60
61
62protected:
63
65 virtual void ExcutionBegin();
66
67 //** VME Accept function */
68 static int VMEAccept(albaVME*node);
69
70 wxString m_AcceptedVME;
71 wxString m_Title;
72 wxString m_Description;
74};
75#endif
albaVME -
Definition: albaVME.h:150
Class Name: albaWizardBlockVMEFindOrSelection.
void SetAcceptedVME(const char *VME)
Set The title of the selection window.
static int VMEAccept(albaVME *node)
void VmeParentSelect(const char *path)
albaWizardBlockVMEFindOrSelection(const char *name)
Default constructor.
virtual void ExcutionBegin()
Starts the execution of the block.
wxString GetAcceptedVME()
Set The title of the selection window.
wxString GetWindowTitle()
Get The title of the selection window.
~albaWizardBlockVMEFindOrSelection()
Default destructor.
void SetWindowTitle(const char *Title)
Set The title of the selection window.
Class Name: albaWizardBlock.