Main Page | Modules | Namespace List | Class Hierarchy | Class List | File List | Namespace Members | Class Members | File Members | Related Pages
hugin1/hugin/HDRMergeOptionDialog.h
Go to the documentation of this file.00001 // -*- c-basic-offset: 4 -*- 00012 /* This is free software; you can redistribute it and/or 00013 * modify it under the terms of the GNU General Public 00014 * License as published by the Free Software Foundation; either 00015 * version 2 of the License, or (at your option) any later version. 00016 * 00017 * This software is distributed in the hope that it will be useful, 00018 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00019 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00020 * Lesser General Public License for more details. 00021 * 00022 * You should have received a copy of the GNU General Public 00023 * License along with this software; if not, write to the Free Software 00024 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 00025 * 00026 */ 00027 00028 #ifndef _HDRMERGEOPTIONDIALOG_H 00029 #define _HDRMERGEOPTIONDIALOG_H 00030 00031 #include "panoinc_WX.h" 00032 00045 class HDRMergeOptionsDialog : public wxDialog 00046 { 00047 public: 00049 HDRMergeOptionsDialog(wxWindow *parent); 00051 void SetCommandLineArgument(wxString cmd); 00053 wxString GetCommandLineArgument() { return m_cmd;}; 00055 void OnOk(wxCommandEvent & e); 00056 00057 protected: 00059 void OnModeChanged(wxCommandEvent &e); 00060 00061 private: 00062 bool BuildCommandLineArgument(); 00063 wxChoice *m_mode; 00064 wxPanel *m_panel_avg; 00065 wxPanel *m_panel_avgslow; 00066 wxPanel *m_panel_khan; 00067 wxCheckBox *m_option_c; 00068 wxSpinCtrl *m_khan_iter; 00069 wxTextCtrl *m_khan_sigma; 00070 wxCheckBox *m_option_khan_af; 00071 wxCheckBox *m_option_khan_ag; 00072 wxCheckBox *m_option_khan_am; 00073 wxString m_cmd; 00074 DECLARE_EVENT_TABLE() 00075 }; 00076 00077 #endif //_HDRMERGEOPTIONDIALOG_H
1.3.9.1