00001 //----------------------------------------------------------------------------------------
00011 // RCS-ID: $Id: message_wizardpage.h,v 1.4 2002/09/10 18:07:56 robertoconnor Exp $
00012 //----------------------------------------------------------------------------------------
00013
00014 //----------------------------------------------------------------------------------------
00015 // Begin single inclusion of this .h file condition
00016 //----------------------------------------------------------------------------------------
00017
00018 #ifndef _MESSAGE_WIZARDPAGE_H_
00019 #define _MESSAGE_WIZARDPAGE_H_
00020
00021 //----------------------------------------------------------------------------------------
00022 // GCC interface
00023 //----------------------------------------------------------------------------------------
00024
00025 #if defined(__GNUG__) && ! defined(__APPLE__)
00026 #pragma interface "message_wizardpage.h"
00027 #endif
00028
00029 // ---------------------------------------------------------------------------------------
00030 // Shared defines
00031 // ---------------------------------------------------------------------------------------
00032
00033 #include "plucker_defines.h"
00034
00035 //----------------------------------------------------------------------------------------
00036 // Begin feature removal condition
00037 //----------------------------------------------------------------------------------------
00038
00039 #if ( setupUSE_WIZARDS )
00040
00041 //----------------------------------------------------------------------------------------
00042 // Headers
00043 //----------------------------------------------------------------------------------------
00044
00045 #include "wx/wizard.h"
00046 #include "wx/html/htmlwin.h"
00047
00048 //----------------------------------------------------------------------------------------
00049 // Class definition: message_wizardpage
00050 //----------------------------------------------------------------------------------------
00051
00053
00058 class message_wizardpage : public wxWizardPageSimple
00059 {
00060
00061 public:
00062
00064
00070 message_wizardpage( wxWizard* parent,
00071 const wxString& message = wxEmptyString,
00072 wxBitmap bitmap = wxNullBitmap );
00073
00075 ~message_wizardpage();
00076
00077 private:
00078
00079 wxHtmlWindow* m_html_window;
00080
00081 DECLARE_EVENT_TABLE()
00082 };
00083
00084 //----------------------------------------------------------------------------------------
00085 // End feature removal condition
00086 //----------------------------------------------------------------------------------------
00087
00088 #endif // setupUSE_WIZARDS
00089
00090 //----------------------------------------------------------------------------------------
00091 // End single inclusion of this .h file condition
00092 //----------------------------------------------------------------------------------------
00093
00094 #endif //_MESSAGE_WIZARDPAGE_H_
00095