00001
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028 #ifndef _ABOUTDIALOG_H
00029 #define _ABOUTDIALOG_H
00030
00031 #include "panoinc_WX.h"
00032 #include "panoinc.h"
00033 #include "hugin/MainFrame.h"
00034
00035
00040 class AboutDialog: public wxDialog
00041 {
00042 public:
00044 AboutDialog(wxWindow *parent);
00045
00046 private:
00047
00048 int m_mode;
00049 wxString m_logo_file;
00050 wxNotebook* m_about_notebook;
00051 wxStaticBitmap * m_logoImgCtrl;
00052 wxBitmap m_logo;
00053
00054 DECLARE_EVENT_TABLE()
00055
00056
00057 void GetSystemInformation(wxFont *font);
00059 void OnChangedTab(wxNotebookEvent &e);
00061 void SetMode(int newMode);
00063 void SetLogo(wxString newLogoFile);
00064 };
00065
00066 #endif