Main Page   Modules   Class Hierarchy   Alphabetical List   Compound List   File List   Compound Members   File Members   Related Pages  

about_dialog.h

Go to the documentation of this file.
      00001 //----------------------------------------------------------------------------------------
      00011 // RCS-ID:      $Id: about_dialog.h,v 1.1 2002/08/27 05:06:04 robertoconnor Exp $
      00012 //----------------------------------------------------------------------------------------
      00013 
      00014 //----------------------------------------------------------------------------------------
      00015 // Begin single inclusion of this .h file condition
      00016 //----------------------------------------------------------------------------------------
      00017 
      00018 #ifndef _ABOUT_DIALOG_H_
      00019 #define _ABOUT_DIALOG_H_
      00020 
      00021 //----------------------------------------------------------------------------------------
      00022 // GCC interface
      00023 //----------------------------------------------------------------------------------------
      00024 
      00025 #if defined(__GNUG__) && ! defined(__APPLE__)
      00026     #pragma interface "about_dialog.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_ENHANCED_ABOUT_DIALOG )
      00040 
      00041 //----------------------------------------------------------------------------------------
      00042 // Headers
      00043 //----------------------------------------------------------------------------------------
      00044 
      00045 #include "wx/dialog.h"
      00046 
      00047 //----------------------------------------------------------------------------------------
      00048 // Class definition: about_dialog
      00049 //----------------------------------------------------------------------------------------
      00050 
      00052 class about_dialog : public wxDialog
      00053 {
      00054 
      00055 public:      
      00056 
      00058 
      00061     about_dialog( wxWindow* parent );
      00062   
      00064     ~about_dialog();
      00065 
      00066 private:
      00067 
      00069     void set_plucker_credits_html();  
      00070     
      00072     void set_plucker_desktop_credits_html();
      00073  
      00075     wxString create_section_header( const wxString& section );
      00076  
      00078     wxString create_string_from_file( const wxString& fullname );
      00079  
      00081     void set_version_and_build_date_text();
      00082 
      00083     DECLARE_EVENT_TABLE()
      00084     
      00085 };
      00086 
      00087 //----------------------------------------------------------------------------------------
      00088 // End feature removal condition
      00089 //----------------------------------------------------------------------------------------
      00090 
      00091 #endif   // setupUSE_ENHANCED_ABOUT_DIALOG 
      00092 
      00093 //----------------------------------------------------------------------------------------
      00094 // End single inclusion of this .h file condition
      00095 //----------------------------------------------------------------------------------------
      00096 
      00097 #endif  //_ABOUT_DIALOG_H_
      00098