Main Page | Modules | Namespace List | Class Hierarchy | Class List | File List | Namespace Members | Class Members | File Members | Related Pages
hugin1/hugin/CPFineTuneFrame.h
Go to the documentation of this file.00001 // -*- c-basic-offset: 4 -*- 00024 #ifndef _CPFINETUNEFRAME_H 00025 #define _CPFINETUNEFRAME_H 00026 00027 #include "hugin/CPZoomDisplayPanel.h" 00028 00033 class CPFineTuneFrame : public wxFrame 00034 { 00035 public: 00036 00039 CPFineTuneFrame(wxWindow * frame, PT::Panorama & pano); 00040 00043 virtual ~CPFineTuneFrame(); 00044 00045 CPZoomDisplayPanel * GetLeftImg() 00046 { 00047 return m_leftImg; 00048 } 00049 00050 CPZoomDisplayPanel * GetRightImg() 00051 { 00052 return m_rightImg; 00053 } 00054 00055 private: 00056 00057 CPZoomDisplayPanel * m_leftImg; 00058 CPZoomDisplayPanel * m_rightImg; 00059 00060 DECLARE_EVENT_TABLE(); 00061 }; 00062 00063 00064 00065 #endif // _CPFINETUNEFRAME_H
1.3.9.1