home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / wxos2233.zip / wxOS2-2_3_3.zip / wxWindows-2.3.3 / contrib / samples / canvas / simple / simple.h < prev    next >
C/C++ Source or Header  |  2002-09-08  |  2KB  |  81 lines

  1. /////////////////////////////////////////////////////////////////////////////
  2. // Name:        simple.h
  3. // Author:      XX
  4. // Created:     XX/XX/XX
  5. // Copyright:   
  6. /////////////////////////////////////////////////////////////////////////////
  7.  
  8. #ifndef __simple_H__
  9. #define __simple_H__
  10.  
  11. #if defined(__GNUG__) && !defined(__APPLE__)
  12.     #pragma interface "simple.cpp"
  13. #endif
  14.  
  15. // Include wxWindows' headers
  16.  
  17. #ifndef WX_PRECOMP
  18.     #include <wx/wx.h>
  19. #endif
  20.  
  21. #include "wx/canvas/canvas.h"
  22. #include "wx/timer.h"
  23.  
  24. //----------------------------------------------------------------------------
  25. //   constants
  26. //----------------------------------------------------------------------------
  27.  
  28. #define ID_QUIT     101
  29.  
  30. // WDR: class declarations
  31.  
  32. //----------------------------------------------------------------------------
  33. // MyFrame
  34. //----------------------------------------------------------------------------
  35.  
  36. class MyFrame: public wxFrame
  37. {
  38. public:
  39.     // constructors and destructors
  40.     MyFrame( wxWindow *parent, wxWindowID id, const wxString &title,
  41.         const wxPoint& pos = wxDefaultPosition,
  42.         const wxSize& size = wxDefaultSize,
  43.         long style = wxDEFAULT_FRAME_STYLE );
  44.     ~MyFrame();
  45.     
  46. private:
  47.     // WDR: method declarations for MyFrame
  48.     void CreateMyMenuBar();
  49.     
  50. private:
  51.     // WDR: member variable declarations for MyFrame
  52.     wxCanvasImage    *m_smile1;
  53.     wxCanvasImage    *m_smile2;
  54.     wxCanvasAdmin    *m_admin;
  55.     wxTimer          *m_timer;
  56.     
  57. private:
  58.     // WDR: handler declarations for MyFrame
  59.     void OnQuit( wxCommandEvent &event );
  60.     void OnCloseWindow( wxCloseEvent &event );
  61.     void OnTimer( wxTimerEvent &event );
  62.     
  63. private:
  64.     DECLARE_EVENT_TABLE()
  65. };
  66.  
  67. //----------------------------------------------------------------------------
  68. // MyApp
  69. //----------------------------------------------------------------------------
  70.  
  71. class MyApp: public wxApp
  72. {
  73. public:
  74.     MyApp();
  75.     
  76.     virtual bool OnInit();
  77.     virtual int OnExit();
  78. };
  79.  
  80. #endif
  81.