]> Creatis software - creaImageIO.git/blobdiff - src2/creaImageIOWxGimmickTools.h
Fixed a problem with the Listener
[creaImageIO.git] / src2 / creaImageIOWxGimmickTools.h
index 0cc976a06c28e4010881a15a2982617730c30a2d..31ba5e0b3aad2359c5c701fdcd6157a6a7b80bf3 100644 (file)
@@ -17,30 +17,33 @@ namespace creaImageIO
   class WxGimmickTools : public wxPanel
   {
        public:
-               WxGimmickTools(wxWindow * parent);              
+               WxGimmickTools(wxWindow * parent, wxString mCurrentDirectory);          
                ~WxGimmickTools();
                
-               void onThresholdStop();
-               void onThresholdInstantChange(double range[]);
+               wxString getInputDir();
+               
+               wxString getOutputDir();
+               
+               bool getCheckBoxValue();
+               
 
        private:
 
-               mBarRange* _mBarThreshold;
-               wxSlider* _opacity;
-               bool _thresholdGo;
-               wxCheckBox* _interpolationCheckBox;     
+               wxCheckBox * _addCheckBox;      
 
-               void onThresholdChange(wxCommandEvent& event);
+               wxTextCtrl * _inputPath;
 
-               void onThresholdGo(wxCommandEvent& event);
-
-               void onThresholdRemove(wxCommandEvent& event);
+               wxTextCtrl * _outputPath;
+               
+               wxString _currentDir;
+               
+               bool _addFiles;
 
-               void onThresholdInterpolation(wxCommandEvent& event);
+               void onInputDir(wxCommandEvent& event);
 
-               void onChangeOpacity(wxScrollEvent& event);
+               void onOutputDir(wxCommandEvent& event);
 
-               DECLARE_EVENT_TABLE()
+               void onAddToDatabase(wxCommandEvent& event);
     
        };