Rebake after latest changes.
[wxWidgets.git] / demos / poem / wxpoem.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wxpoem.h
3 // Purpose: A small C++ program which displays a random poem on
4 // execution. It also allows search for poems containing a
5 // string.
6 // It requires winpoem.dat and creates winpoem.idx.
7 // Original version (WinPoem) written in 1994.
8 // This has not been rewritten in a long time so
9 // beware, inelegant code!
10 // Author: Julian Smart
11 // Created: 12/12/98
12 // RCS-ID: $Id$
13 // Copyright: (c) 1998 Julian Smart
14 // Licence: wxWindows licence
15 /////////////////////////////////////////////////////////////////////////////
16
17 #ifndef _WXPOEM_H_
18 #define _WXPOEM_H_
19
20
21 // Define a new application
22 class MyApp: public wxApp
23 {
24 public:
25 bool OnInit();
26 int OnExit();
27 };
28
29 DECLARE_APP(MyApp)
30
31 // Define a new canvas which can receive some events
32 class MyCanvas: public wxWindow
33 {
34 public:
35 MyCanvas(wxFrame *frame);
36 virtual ~MyCanvas();
37
38 void OnPaint(wxPaintEvent& event);
39 void OnMouseEvent(wxMouseEvent& event);
40 void OnChar(wxKeyEvent& event);
41
42 private:
43 wxMenu *m_popupMenu;
44
45 DECLARE_EVENT_TABLE()
46 };
47
48 // Define a new frame
49 class MainWindow: public wxFrame
50 {
51 public:
52 MyCanvas *canvas;
53 MainWindow(wxFrame *frame, wxWindowID id, const wxString& title,
54 const wxPoint& pos, const wxSize& size, long style);
55 virtual ~MainWindow();
56
57 void OnCloseWindow(wxCloseEvent& event);
58 void OnChar(wxKeyEvent& event);
59 void OnPopup(wxCommandEvent& event);
60
61 // Display next page or poem
62 void NextPage(void);
63
64 // Display previous page
65 void PreviousPage(void);
66
67 // User search
68 void Search(bool);
69
70 // Look in file for string
71 long DoSearch(void);
72
73 // Do the actual drawing of text (or just calculate size needed)
74 void ScanBuffer(wxDC *dc, bool DrawIt, int *max_x, int *max_y);
75
76 // Load the poem
77 void GetIndexLoadPoem(void);
78 void Resize(void);
79
80 private:
81
82 wxString m_searchString;
83 wxString m_title;
84
85 // Preferences
86 void WritePreferences();
87 void ReadPreferences();
88
89 // Fonts
90 void CreateFonts();
91 wxFont *m_normalFont;
92 wxFont *m_boldFont;
93 wxFont *m_italicFont;
94
95 // Icons
96 wxIcon *m_corners[4];
97
98 DECLARE_EVENT_TABLE()
99 };
100
101 // Menu items
102 enum
103 {
104 POEM_ABOUT = wxID_ABOUT,
105 POEM_EXIT = wxID_EXIT,
106 POEM_PREVIOUS = wxID_BACKWARD,
107 POEM_COPY = wxID_COPY,
108 POEM_NEXT = wxID_FORWARD,
109 POEM_NEXT_MATCH = wxID_MORE,
110 POEM_BIGGER_TEXT = wxID_ZOOM_IN,
111 POEM_SMALLER_TEXT = wxID_ZOOM_OUT,
112 POEM_SEARCH = wxID_FIND,
113 POEM_MINIMIZE = wxID_ICONIZE_FRAME
114 };
115
116 #endif // _WXPOEM_H_