00001 // -*- c-basic-offset: 4 -*- 00010 /* This is free software; you can redistribute it and/or 00011 * modify it under the terms of the GNU General Public 00012 * License as published by the Free Software Foundation; either 00013 * version 2 of the License, or (at your option) any later version. 00014 * 00015 * This software is distributed in the hope that it will be useful, 00016 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00017 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00018 * Lesser General Public License for more details. 00019 * 00020 * You should have received a copy of the GNU General Public 00021 * License along with this software; if not, write to the Free Software 00022 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 00023 * 00024 */ 00025 00026 #ifndef _RESETDIALOG_H 00027 #define _RESETDIALOG_H 00028 00029 #include "panoinc_WX.h" 00030 #include "GuiLevel.h" 00031 00044 class ResetDialog : public wxDialog 00045 { 00046 public: 00048 ResetDialog(wxWindow *parent, GuiLevel guiLevel); 00050 bool GetResetPos(); 00052 bool GetResetTranslation(); 00054 bool GetResetFOV(); 00056 bool GetResetLens(); 00058 bool GetResetExposure(); 00062 bool GetResetExposureToExif(); 00064 bool GetResetColor(); 00066 bool GetResetVignetting(); 00068 bool GetResetResponse(); 00069 00071 void LimitToGeometric(); 00073 void LimitToPhotometric(); 00074 protected: 00078 void OnSelectExposure(wxCommandEvent & e); 00080 void OnOk(wxCommandEvent & e); 00081 00082 private: 00083 DECLARE_EVENT_TABLE() 00084 }; 00085 00086 #endif //_RESETDIALOG_H
1.3.9.1