]>
git.saurik.com Git - wxWidgets.git/blob - demos/poem/wxpoem.h
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: A small C++ program which displays a random poem on
4 // execution. It also allows search for poems containing a
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
13 // Copyright: (c) 1998 Julian Smart
14 // Licence: wxWindows licence
15 /////////////////////////////////////////////////////////////////////////////
17 #if defined(__GNUG__) && !defined(__APPLE__)
18 #pragma interface "wxpoem.h"
21 // Define a new application
22 class MyApp
: public wxApp
31 // Define a new canvas which can receive some events
32 class MyCanvas
: public wxWindow
35 MyCanvas(wxFrame
*frame
, wxWindowID id
, const wxPoint
& pos
, const wxSize
& size
);
38 void OnPaint(wxPaintEvent
& event
);
39 void OnMouseEvent(wxMouseEvent
& event
);
40 void OnChar(wxKeyEvent
& event
);
48 class MainWindow
: public wxFrame
52 MainWindow(wxFrame
*frame
, wxWindowID id
, const wxString
& title
, const wxPoint
& pos
, const wxSize
& size
, long style
);
54 void OnCloseWindow(wxCloseEvent
& event
);
55 void OnChar(wxKeyEvent
& event
);
56 void OnPopup(wxCommandEvent
& event
);
58 // Display next page or poem
61 // Display previous page
62 void PreviousPage(void);
67 // Look in file for string
70 // Do the actual drawing of text (or just calculate size needed)
71 void ScanBuffer(wxDC
*dc
, bool DrawIt
, int *max_x
, int *max_y
);
74 void GetIndexLoadPoem(void);
83 POEM_NEXT
= wxID_HIGHEST
,