Main Page | Modules | Namespace List | Class Hierarchy | Class List | File List | Namespace Members | Class Members | File Members | Related Pages
hugin1/hugin/NumTransDialog.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 _NUMTRANSDIALOG_H 00029 #define _NUMTRANSDIALOG_H 00030 00031 #include "panoinc_WX.h" 00032 #include "hugin/MainFrame.h" 00033 00034 using namespace PT; 00035 00040 class NumTransDialog: public wxDialog, public PT::PanoramaObserver 00041 { 00042 public: 00044 NumTransDialog(wxWindow *parent, PT::Panorama &pano); 00045 00046 private: 00047 00048 PT::Panorama * m_pano; 00049 00050 wxTextCtrl *m_numtrans_Yaw; 00051 wxTextCtrl *m_numtrans_Pitch; 00052 wxTextCtrl *m_numtrans_Roll; 00053 wxButton *m_apply_numeric_transform; 00054 DECLARE_EVENT_TABLE() 00055 00056 // apply numeric transform 00057 void OnApplyNumTransform(wxCommandEvent & e); 00058 00059 }; 00060 00061 #endif // _NUMTRANSDIALOG_H
1.3.9.1