]> Creatis software - bbtk.git/blob - packages/wx/src/bbwxDirectorySelector.cxx
680bf63cc5286cbde55ea6e4f5403e00429cf86f
[bbtk.git] / packages / wx / src / bbwxDirectorySelector.cxx
1 /*=========================================================================
2                                                                                 
3   Program:   bbtk
4   Module:    $RCSfile: bbwxDirectorySelector.cxx,v $
5   Language:  C++
6   Date:      $Date: 2008/07/24 14:37:06 $
7   Version:   $Revision: 1.5 $
8                                                                                 
9   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
10   l'Image). All rights reserved. See Doc/License.txt or
11   http://www.creatis.insa-lyon.fr/Public/bbtk/License.html for details.
12                                                                                 
13      This software is distributed WITHOUT ANY WARRANTY; without even
14      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15      PURPOSE.  See the above copyright notices for more information.
16                                                                                 
17 =========================================================================*/
18 /**
19  *  \file 
20  *  \brief 
21  */
22
23
24 #ifdef _USE_WXWIDGETS_
25
26
27 #include "bbwxDirectorySelector.h"
28 #include "bbtkWx.h"
29 #include "bbwxPackage.h"
30  
31 #include <wx/dirdlg.h>
32
33 namespace bbwx
34 {
35
36   BBTK_ADD_BLACK_BOX_TO_PACKAGE(wx,DirectorySelector);
37   
38
39   BBTK_BLACK_BOX_IMPLEMENTATION(DirectorySelector,bbtk::AtomicBlackBox);
40
41
42   void DirectorySelector::Process() 
43   { 
44     bbtkDebugMessageInc("Core",9,"DirectorySelector::Process() ["
45                         <<bbGetFullName()<<"]"<<std::endl);
46
47     wxDirDialog* FD = 
48       new wxDirDialog( 0, 
49                         bbtk::std2wx(bbGetInputMessage()),
50                         bbtk::std2wx(bbGetInputDefaultDir()));
51     
52         if (FD->ShowModal()==wxID_OK)
53       {
54         bbSetOutputOut( bbtk::wx2std (FD->GetPath()) );
55         bbSetInputDefaultDir( bbtk::wx2std (FD->GetPath()) );
56     }
57     else
58       {  
59         bbSetOutputOut("");
60         bbSetInputDefaultDir("");
61       }
62     
63     bbtkDebugDecTab("Core",9); 
64   }
65   
66
67
68 }//namespace bbtk
69
70 #endif // _USE_WXWIDGETS_ 
71