00001 //----------------------------------------------------------------------------------------
00012 // RCS-ID: $Id: image_dialog.h,v 1.5 2002/09/10 18:07:56 robertoconnor Exp $
00013 //----------------------------------------------------------------------------------------
00014
00015 //----------------------------------------------------------------------------------------
00016 // Begin single inclusion of this .h file condition
00017 //----------------------------------------------------------------------------------------
00018
00019 #ifndef _IMAGE_DIALOG_H_
00020 #define _IMAGE_DIALOG_H_
00021
00022 //----------------------------------------------------------------------------------------
00023 // GCC interface
00024 //----------------------------------------------------------------------------------------
00025
00026 #if defined(__GNUG__) && ! defined(__APPLE__)
00027 #pragma interface "image_dialog.h"
00028 #endif
00029
00030 //----------------------------------------------------------------------------------------
00031 // Shared defines
00032 //----------------------------------------------------------------------------------------
00033
00034 #include "plucker_defines.h"
00035
00036 //----------------------------------------------------------------------------------------
00037 // Begin feature removal condition
00038 //----------------------------------------------------------------------------------------
00039
00040 #if ( setupUSE_INTEGRATED_HTML_EDITOR )
00041
00042 //----------------------------------------------------------------------------------------
00043 // Headers
00044 //----------------------------------------------------------------------------------------
00045
00046 #include "wx/dialog.h"
00047
00048 //----------------------------------------------------------------------------------------
00049 // Class definition: image_dialog
00050 //----------------------------------------------------------------------------------------
00051
00053 class image_dialog : public wxDialog
00054 {
00055
00056 public:
00057
00059
00062 image_dialog( wxWindow* parent );
00063
00065 ~image_dialog();
00066
00068
00072 void transfer_to( wxString& starting_text, wxString& ending_text );
00073
00074 private:
00075
00076 void on_src_button( wxCommandEvent& event );
00077 void on_color_button( wxCommandEvent& event );
00078
00079 void on_help_button( wxCommandEvent& event );
00080 //Override base class functions
00081 void OnOK( wxCommandEvent& event );
00082
00083 wxString m_starting_text;
00084 wxString m_ending_text;
00085
00086 DECLARE_EVENT_TABLE()
00087
00088 };
00089
00090 //----------------------------------------------------------------------------------------
00091 // End feature removal condition
00092 //----------------------------------------------------------------------------------------
00093
00094 #endif // setupUSE_INTEGRATED_HTML_EDITOR
00095
00096 //----------------------------------------------------------------------------------------
00097 // End single inclusion of this .h file condition
00098 //----------------------------------------------------------------------------------------
00099
00100 #endif //_IMAGE_DIALOG_H_
00101