]>
git.saurik.com Git - wxWidgets.git/blob - samples/wxpoem/wxpoem.cpp
dea7b5ac0f73e2c83e6f696c1e3d51eff2853862
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 /////////////////////////////////////////////////////////////////////////////
18 #pragma implementation "wxpoem.h"
21 // For compilers that support precompilation, includes "wx.h".
22 #include "wx/wxprec.h"
38 #if defined(__WXGTK__) || defined(__WXMOTIF__)
39 #include "corner1.xpm"
40 #include "corner2.xpm"
41 #include "corner3.xpm"
42 #include "corner4.xpm"
50 #define buf_size 10000
51 #define DEFAULT_POETRY_DAT "wxpoem"
52 #define DEFAULT_POETRY_IND "wxpoem"
53 #define DEFAULT_CHAR_HEIGHT 18
54 #define DEFAULT_FONT "Swiss"
55 #define DEFAULT_X_POS 0
56 #define DEFAULT_Y_POS 0
57 #define BORDER_SIZE 30
58 #define THIN_LINE_BORDER 10
59 #define THICK_LINE_BORDER 16
60 #define THICK_LINE_WIDTH 2
61 #define SHADOW_OFFSET 1
65 static char *poem_buffer
; // Storage for each poem
66 static char line
[150]; // Storage for a line
67 static char title
[150]; // Remember the title
68 static char *search_string
= NULL
; // The search string
69 static int pages
[30]; // For multipage poems -
70 // store the start of each page
71 static long last_poem_start
= 0; // Start of last found poem
72 static long last_find
= -1; // Point in file of last found
74 static bool search_ok
= FALSE
; // Search was successful
75 static bool same_search
= FALSE
; // Searching on same string
77 static long poem_index
[600]; // Index of poem starts
78 static long nitems
= 0; // Number of poems
79 static int desired_char_height
= DEFAULT_CHAR_HEIGHT
; // Desired height
80 static char DesiredFont
[64]; // Chosen font
81 static int char_height
= DEFAULT_CHAR_HEIGHT
; // Actual height
82 static int index_ptr
= -1; // Pointer into index
83 static int poem_height
, poem_width
; // Size of poem
84 static int XPos
; // Startup X position
85 static int YPos
; // Startup Y position
86 static int pointSize
= 12; // Font size
88 static char *index_filename
= NULL
; // Index filename
89 static char *data_filename
= NULL
; // Data filename
90 static char error_buf
[300]; // Error message buffer
91 static bool loaded_ok
= FALSE
; // Poem loaded ok
92 static bool index_ok
= FALSE
; // Index loaded ok
94 static bool paging
= FALSE
; // Are we paging?
95 static int current_page
= 0; // Currently viewed page
97 wxIcon
*Corner1
= NULL
;
98 wxIcon
*Corner2
= NULL
;
99 wxIcon
*Corner3
= NULL
;
100 wxIcon
*Corner4
= NULL
;
103 wxFont
*NormalFont
= NULL
;
104 wxFont
*BoldFont
= NULL
;
105 wxFont
*ItalicFont
= NULL
;
108 wxPen
*GreyPen
= NULL
;
109 wxPen
*DarkGreyPen
= NULL
;
110 wxPen
*WhitePen
= NULL
;
113 wxBitmap
*backingBitmap
= NULL
;
115 void PoetryError(char *, char *caption
="wxPoem Error");
116 void PoetryNotify(char *Msg
, char *caption
="wxPoem");
118 bool LoadPoem(char *, long);
120 int LoadIndex(char *);
122 void WritePreferences();
123 void ReadPreferences();
124 void FindMax(int *max_thing
, int thing
);
127 void CopyToClipboard(HWND
, char *);
130 wxMenu
*popupMenu
= NULL
;
131 void PopupFunction(wxMenu
& menu
, wxCommandEvent
& event
);
133 wxHelpController
*HelpController
= NULL
;
135 // A macro needed for some compilers (AIX) that need 'main' to be defined
136 // in the application itself.
141 MainWindow
*TheMainWindow
= NULL
;
146 NormalFont
= wxTheFontList
->FindOrCreateFont(pointSize
, wxSWISS
, wxNORMAL
, wxNORMAL
);
147 BoldFont
= wxTheFontList
->FindOrCreateFont(pointSize
, wxSWISS
, wxNORMAL
, wxBOLD
);
148 ItalicFont
= wxTheFontList
->FindOrCreateFont(pointSize
, wxSWISS
, wxITALIC
, wxNORMAL
);
151 BEGIN_EVENT_TABLE(MainWindow
, wxFrame
)
152 EVT_CLOSE(MainWindow::OnCloseWindow
)
153 EVT_CHAR(MainWindow::OnChar
)
156 MainWindow::MainWindow(wxFrame
*frame
, wxWindowID id
, const wxString
& title
,
157 const wxPoint
& pos
, const wxSize
& size
, long style
):
158 wxFrame(frame
, id
, title
, pos
, size
, style
)
162 MainWindow::~MainWindow()
164 // Note: this must be done before the main window/canvas are destroyed
165 // or we get an error (no parent window for menu item button)
170 // Read the poetry buffer, either for finding the size
171 // or for writing to a bitmap (not to the window directly,
172 // since that displays messily)
173 // If DrawIt is true, we draw, otherwise we just determine the
174 // size the window should be.
175 void MainWindow::ScanBuffer(wxDC
*dc
, bool DrawIt
, int *max_x
, int *max_y
)
177 int i
= pages
[current_page
];
184 bool page_break
= FALSE
;
191 y
= (*max_y
- poem_height
)/2;
196 if (DrawIt
&& wxColourDisplay())
198 dc
->SetBrush(*wxLIGHT_GREY_BRUSH
);
199 dc
->SetPen(*GreyPen
);
200 dc
->DrawRectangle(0, 0, width
, height
);
201 dc
->SetBackgroundMode(wxTRANSPARENT
);
204 // See what ACTUAL char height is
205 dc
->SetFont(* NormalFont
);
208 dc
->GetTextExtent("X", &xx
, &yy
);
209 char_height
= (int)yy
;
211 if (current_page
== 0)
213 else if (title
[0] != 0)
215 dc
->SetFont(* BoldFont
);
216 dc
->GetTextExtent(title
, &xx
, &yy
);
217 FindMax(&curr_width
, (int)xx
);
222 dc
->SetFont(* BoldFont
);
224 // Change text to BLACK!
225 dc
->SetTextForeground(* wxBLACK
);
226 dc
->DrawText(title
, x
, y
);
227 // Change text to WHITE!
228 dc
->SetTextForeground(* wxWHITE
);
229 dc
->DrawText(title
, x
-SHADOW_OFFSET
, y
-SHADOW_OFFSET
);
235 while (ch
!= 0 && !page_break
)
239 while (((ch
= poem_buffer
[i
]) != 13) && (ch
!= 0))
241 while (((ch
= poem_buffer
[i
]) != 10) && (ch
!= 0))
258 // Add another to skip the linefeed
261 // If a single newline on its own, put a space in
283 dc
->SetFont(* BoldFont
);
286 strcpy(title
, line_ptr
);
287 strcat(title
, " (cont'd)");
289 dc
->GetTextExtent(line_ptr
, &xx
, &yy
);
290 FindMax(&curr_width
, (int)xx
);
295 dc
->SetFont(* BoldFont
);
297 // Change text to BLACK!
298 dc
->SetTextForeground(* wxBLACK
);
299 dc
->DrawText(line_ptr
, x
, y
);
301 // Change text to WHITE!
302 dc
->SetTextForeground(* wxWHITE
);
303 dc
->DrawText(line_ptr
, x
-SHADOW_OFFSET
, y
-SHADOW_OFFSET
);
304 dc
->SetTextForeground(* wxWHITE
);
310 dc
->SetFont(* ItalicFont
);
312 dc
->GetTextExtent(line_ptr
, &xx
, &yy
);
313 FindMax(&curr_width
, (int)xx
);
318 dc
->SetTextForeground(* wxBLACK
);
319 dc
->DrawText(line_ptr
, x
, y
);
323 // Default: just ignore this line
330 dc
->SetFont(* NormalFont
);
332 dc
->GetTextExtent(line
, &xx
, &yy
);
333 FindMax(&curr_width
, (int)xx
);
337 int x
= (int)((width
- xx
)/2.0);
338 dc
->SetFont(* NormalFont
);
339 dc
->SetTextForeground(* wxBLACK
);
340 dc
->DrawText(line
, x
, y
);
350 char *cont
= "(cont'd)";
352 dc
->SetFont(* NormalFont
);
354 dc
->GetTextExtent(cont
, &xx
, &yy
);
355 FindMax(&curr_width
, (int)xx
);
358 int x
= (int)((width
- xx
)/2.0);
359 dc
->SetFont(* NormalFont
);
360 dc
->SetTextForeground(* wxBLACK
);
361 dc
->DrawText(cont
, x
, y
);
366 *max_x
= (int)curr_width
;
367 *max_y
= (int)(y
-char_height
);
370 pages
[current_page
+1] = i
;
376 // Draw dark grey thick border
377 if (wxColourDisplay())
379 dc
->SetBrush(*wxGREY_BRUSH
);
380 dc
->SetPen(*wxGREY_PEN
);
383 dc
->DrawRectangle(0, 0, THIN_LINE_BORDER
, height
);
385 dc
->DrawRectangle(THIN_LINE_BORDER
, 0, width
-THIN_LINE_BORDER
, THIN_LINE_BORDER
);
387 dc
->DrawRectangle(width
-THIN_LINE_BORDER
, THIN_LINE_BORDER
, width
, height
-THIN_LINE_BORDER
);
389 dc
->DrawRectangle(THIN_LINE_BORDER
, height
-THIN_LINE_BORDER
, width
-THIN_LINE_BORDER
, height
);
392 // Have grey background, plus 3-d border -
393 // One black rectangle.
394 // Inside this, left and top sides - dark grey. Bottom and right -
397 // Change pen to black
398 dc
->SetPen(*wxBLACK_PEN
);
399 dc
->DrawLine(THIN_LINE_BORDER
, THIN_LINE_BORDER
, width
-THIN_LINE_BORDER
, THIN_LINE_BORDER
);
400 dc
->DrawLine(width
-THIN_LINE_BORDER
, THIN_LINE_BORDER
, width
-THIN_LINE_BORDER
, height
-THIN_LINE_BORDER
);
401 dc
->DrawLine(width
-THIN_LINE_BORDER
, height
-THIN_LINE_BORDER
, THIN_LINE_BORDER
, height
-THIN_LINE_BORDER
);
402 dc
->DrawLine(THIN_LINE_BORDER
, height
-THIN_LINE_BORDER
, THIN_LINE_BORDER
, THIN_LINE_BORDER
);
404 // Right and bottom white lines - 'grey' (black!) if
405 // we're running on a mono display.
406 if (wxColourDisplay())
407 dc
->SetPen(*WhitePen
);
409 dc
->SetPen(*DarkGreyPen
);
411 dc
->DrawLine(width
-THICK_LINE_BORDER
, THICK_LINE_BORDER
,
412 width
-THICK_LINE_BORDER
, height
-THICK_LINE_BORDER
);
413 dc
->DrawLine(width
-THICK_LINE_BORDER
, height
-THICK_LINE_BORDER
,
414 THICK_LINE_BORDER
, height
-THICK_LINE_BORDER
);
416 // Left and top grey lines
417 dc
->SetPen(*DarkGreyPen
);
418 dc
->DrawLine(THICK_LINE_BORDER
, height
-THICK_LINE_BORDER
,
419 THICK_LINE_BORDER
, THICK_LINE_BORDER
);
420 dc
->DrawLine(THICK_LINE_BORDER
, THICK_LINE_BORDER
,
421 width
-THICK_LINE_BORDER
, THICK_LINE_BORDER
);
425 dc
->DrawIcon(* Corner1
, 0, 0);
426 dc
->DrawIcon(* Corner2
, int(width
-32), 0);
428 int y2
= height
- 32;
430 dc
->DrawIcon(* Corner3
, 0, y2
);
431 dc
->DrawIcon(* Corner4
, x2
, y2
);
436 // Get an index (randomly generated) and load the poem
437 void MainWindow::GetIndexLoadPoem(void)
440 index_ptr
= GetIndex();
443 loaded_ok
= LoadPoem(data_filename
, -1);
446 // Find the size of the poem and resize the window accordingly
447 void MainWindow::Resize(void)
449 wxClientDC
dc(canvas
);
452 ScanBuffer(& dc
, FALSE
, &poem_width
, &poem_height
);
453 int x
= poem_width
+ (2*BORDER_SIZE
);
454 int y
= poem_height
+ (2*BORDER_SIZE
);
458 // In case client size isn't what we set it to...
460 GetClientSize(&xx
, &yy
);
463 if (backingBitmap
) delete backingBitmap
;
464 backingBitmap
= new wxBitmap(x
, yy
);
465 memDC
.SelectObject(* backingBitmap
);
468 TheMainWindow
->ScanBuffer(&memDC
, TRUE
, &xx
, &yy
);
472 void FindMax(int *max_thing
, int thing
)
474 if (thing
> *max_thing
)
479 void MainWindow::NextPage(void)
492 void MainWindow::PreviousPage(void)
494 if (current_page
> 0)
501 // Search for a string
502 void MainWindow::Search(bool ask
)
506 if (ask
|| !search_string
)
508 wxString s
= wxGetTextFromUser("Enter search string", "Search", (const char*) search_string
);
511 if (search_string
) delete[] search_string
;
512 search_string
= copystring(s
);
514 } else search_ok
= FALSE
;
522 if (search_string
&& search_ok
)
524 position
= DoSearch();
527 loaded_ok
= LoadPoem(data_filename
, position
);
533 PoetryNotify("Search string not found.");
538 // Copy a string to the clipboard
540 void CopyToClipboard(HWND handle
, char *s
)
542 int length
= strlen(s
);
543 HANDLE hGlobalMemory
= GlobalAlloc(GHND
, (DWORD
) length
+ 1);
546 #ifdef __WINDOWS_386__
547 LPSTR lpGlobalMemory
= MK_FP32(GlobalLock(hGlobalMemory
));
549 LPSTR lpGlobalMemory
= (LPSTR
)GlobalLock(hGlobalMemory
);
552 for (i
= 0; i
< length
; i
++)
570 lpGlobalMemory
[j
] = s
[i
];
575 GlobalUnlock(hGlobalMemory
);
576 OpenClipboard(handle
);
578 SetClipboardData(CF_TEXT
, hGlobalMemory
);
586 poem_buffer
= new char[buf_size
];
588 GreyPen
= new wxPen("LIGHT GREY", THICK_LINE_WIDTH
, wxSOLID
);
589 DarkGreyPen
= new wxPen("GREY", THICK_LINE_WIDTH
, wxSOLID
);
590 WhitePen
= new wxPen("WHITE", THICK_LINE_WIDTH
, wxSOLID
);
592 HelpController
= new wxHelpController();
593 HelpController
->Initialize("wxpoem");
599 // Seed the random number generator
602 (void)time(¤t_time
);
603 srand((unsigned int)current_time
);
608 TheMainWindow
= new MainWindow(NULL
, -1, "wxPoem", wxPoint(XPos
, YPos
), wxSize(100, 100), wxCAPTION
|wxMINIMIZE_BOX
|wxSYSTEM_MENU
);
611 TheMainWindow
->SetIcon(Icon("wxpoem"));
614 TheMainWindow
->canvas
= new MyCanvas(TheMainWindow
, -1, wxDefaultPosition
, wxDefaultSize
);
616 popupMenu
= new wxMenu("", (wxFunction
)PopupFunction
);
617 popupMenu
->Append(POEM_NEXT
, "Next poem/page");
618 popupMenu
->Append(POEM_PREVIOUS
, "Previous page");
619 popupMenu
->AppendSeparator();
620 popupMenu
->Append(POEM_SEARCH
, "Search");
621 popupMenu
->Append(POEM_NEXT_MATCH
, "Next match");
622 popupMenu
->Append(POEM_COPY
, "Copy to clipboard");
623 popupMenu
->Append(POEM_MINIMIZE
, "Minimize");
624 popupMenu
->AppendSeparator();
625 popupMenu
->Append(POEM_BIGGER_TEXT
, "Bigger text");
626 popupMenu
->Append(POEM_SMALLER_TEXT
, "Smaller text");
627 popupMenu
->AppendSeparator();
628 popupMenu
->Append(POEM_ABOUT
, "About wxPoem");
629 popupMenu
->AppendSeparator();
630 popupMenu
->Append(POEM_EXIT
, "Exit");
634 index_filename
= copystring(argv
[1]);
635 data_filename
= copystring(argv
[1]);
639 index_filename
= DEFAULT_POETRY_IND
;
640 data_filename
= DEFAULT_POETRY_DAT
;
645 Corner1
= new wxIcon("icon_1");
646 Corner2
= new wxIcon("icon_2");
647 Corner3
= new wxIcon("icon_3");
648 Corner4
= new wxIcon("icon_4");
650 #if defined(__WXGTK__) || defined(__WXMOTIF__)
651 Corner1
= new wxIcon( corner1_xpm
);
652 Corner2
= new wxIcon( corner2_xpm
);
653 Corner3
= new wxIcon( corner3_xpm
);
654 Corner4
= new wxIcon( corner4_xpm
);
657 TheMainWindow
->GetIndexLoadPoem();
658 TheMainWindow
->Resize();
659 TheMainWindow
->Show(TRUE
);
667 delete backingBitmap
;
668 delete HelpController
;
686 void MainWindow::OnCloseWindow(wxCloseEvent
& WXUNUSED(event
))
692 void MainWindow::OnChar(wxKeyEvent
& event
)
694 canvas
->OnChar(event
);
697 BEGIN_EVENT_TABLE(MyCanvas
, wxPanel
)
698 EVT_MOUSE_EVENTS(MyCanvas::OnMouseEvent
)
699 EVT_CHAR(MyCanvas::OnChar
)
700 EVT_PAINT(MyCanvas::OnPaint
)
703 // Define a constructor for my canvas
704 MyCanvas::MyCanvas(wxFrame
*frame
, wxWindowID id
, const wxPoint
& pos
, const wxSize
& size
):
705 wxPanel(frame
, id
, pos
, size
)
709 // Define the repainting behaviour
710 void MyCanvas::OnPaint(wxPaintEvent
& WXUNUSED(event
))
717 TheMainWindow
->GetClientSize(&xx
, &yy
);
720 memDC
.SelectObject(* backingBitmap
);
721 dc
.Blit(0, 0, backingBitmap
->GetWidth(), backingBitmap
->GetHeight(), &memDC
, 0, 0);
725 void MyCanvas::OnMouseEvent(wxMouseEvent
& event
)
728 event
.Position(&x
, &y
);
729 static int startPosX
, startPosY
, startFrameX
, startFrameY
;
731 event
.Position(&x
, &y
);
733 if (event
.RightDown())
735 // Versions from wxWin 1.67 are probably OK
737 FakePopupMenu(popupMenu
, x
, y
);
739 PopupMenu(popupMenu
, (int)x
, (int)y
);
742 else if (event
.LeftDown())
744 this->CaptureMouse();
747 ClientToScreen(&x1
, &y1
);
750 GetParent()->GetPosition(&startFrameX
, &startFrameY
);
752 else if (event
.LeftUp())
753 this->ReleaseMouse();
754 else if (event
.Dragging() && event
.LeftIsDown())
758 ClientToScreen(&x1
, &y1
);
760 int dX
= x1
- startPosX
;
761 int dY
= y1
- startPosY
;
762 GetParent()->Move(startFrameX
+ dX
, startFrameY
+ dY
);
766 // Process characters
767 void MyCanvas::OnChar(wxKeyEvent
& event
)
769 switch (event
.KeyCode())
774 TheMainWindow
->Search(FALSE
);
779 TheMainWindow
->Search(TRUE
);
783 TheMainWindow
->NextPage();
786 TheMainWindow
->Close(TRUE
);
793 int LoadIndex(char *file_name
)
802 sprintf(buf
, "%s.idx", file_name
);
803 if (! (file_name
&& (index_file
= fopen(buf
, "r"))))
807 fscanf(index_file
, "%ld", &nitems
);
809 for (i
= 0; i
< nitems
; i
++)
811 fscanf(index_file
, "%ld", &data
);
812 poem_index
[i
] = data
;
825 indexn
= (int)(rand() % nitems
);
827 if ((indexn
< 0) || (indexn
> nitems
))
828 { PoetryError("No such poem!");
836 void ReadPreferences()
838 wxGetResource("wxPoem", "FontSize", &pointSize
);
839 wxGetResource("wxPoem", "X", &XPos
);
840 wxGetResource("wxPoem", "Y", &YPos
);
843 // Write preferences to disk
844 void WritePreferences()
847 TheMainWindow
->GetPosition(&XPos
, &YPos
);
848 wxWriteResource("wxPoem", "FontSize", pointSize
);
849 wxWriteResource("wxPoem", "X", XPos
);
850 wxWriteResource("wxPoem", "Y", YPos
);
854 // Load a poem from given file, at given point in file.
855 // If position is > -1, use this for the position in the
856 // file, otherwise use index[index_ptr] to find the correct position.
857 bool LoadPoem(char *file_name
, long position
)
871 sprintf(buf
, "%s.dat", file_name
);
873 if (! (file_name
&& (data_file
= fopen(buf
, "r"))))
875 sprintf(error_buf
, "Data file %s not found.", buf
);
876 PoetryError(error_buf
);
884 data
= poem_index
[index_ptr
];
886 fseek(data_file
, data
, SEEK_SET
);
890 while ((ch
!= EOF
) && (ch
!= '#'))
892 ch
= getc(data_file
);
893 // Add a linefeed so it will copy to the clipboard ok
905 sprintf(error_buf
, "%s", "Poetry buffer exceeded.");
906 PoetryError(error_buf
);
911 poem_buffer
[i
-1] = 0;
917 long MainWindow::DoSearch(void)
927 long previous_poem_start
;
930 int search_length
= strlen(search_string
);
934 find_start
= last_find
+ 1;
935 previous_poem_start
= last_poem_start
;
941 previous_poem_start
= -1;
945 sprintf(buf
, "%s.dat", data_filename
);
947 if (! (data_filename
&& (file
= fopen(buf
, "r"))))
949 sprintf(error_buf
, "Poetry data file %s not found\n", buf
);
950 PoetryError(error_buf
);
954 fseek(file
, find_start
, SEEK_SET
);
956 while ((ch
!= EOF
) && !found
)
959 ch
|= 0x0020; // Make lower case
961 // Only match if we're looking at a different poem
962 // (no point in displaying the same poem again)
963 if ((ch
== search_string
[i
]) && (last_poem_start
!= previous_poem_start
))
966 last_find
= ftell(file
);
967 if (i
== search_length
-1)
977 last_poem_start
= ftell(file
);
986 return last_poem_start
;
992 // Set up poetry filenames, preferences, load the index
993 // Load index (or compile it if none found)
996 index_ok
= LoadIndex(index_filename
);
997 if (!index_ok
|| (nitems
== 0))
999 PoetryError("Index file not found; will compile new one", "wxPoem");
1000 index_ok
= Compile();
1005 void PoetryError(char *msg
, char *caption
)
1007 wxMessageBox(msg
, caption
, wxOK
|wxICON_EXCLAMATION
);
1010 // Notification (change icon to something appropriate!)
1011 void PoetryNotify(char *Msg
, char *caption
)
1013 wxMessageBox(Msg
, caption
, wxOK
| wxICON_INFORMATION
);
1016 // Build up and save an index into the poetry data file, for
1017 // rapid random access
1027 sprintf(buf
, "%s.dat", data_filename
);
1029 if (! (data_filename
&& (file
= fopen(buf
, "r"))))
1031 sprintf(error_buf
, "Poetry data file %s not found\n", buf
);
1032 PoetryError(error_buf
);
1039 poem_index
[nitems
] = 0;
1052 poem_index
[nitems
] = data
;
1059 sprintf(buf
, "%s.idx", index_filename
);
1060 if (! (data_filename
&& (file
= fopen(buf
, "w"))))
1062 sprintf(error_buf
, "Poetry index file %s cannot be created\n", buf
);
1063 PoetryError(error_buf
);
1067 fprintf(file
, "%ld\n\n", nitems
);
1068 for (j
= 0; j
< nitems
; j
++)
1069 fprintf(file
, "%ld\n", poem_index
[j
]);
1072 PoetryNotify("Poetry index compiled.");
1076 void PopupFunction(wxMenu
& /*menu*/, wxCommandEvent
& event
)
1078 switch (event
.GetId())
1081 // Another poem/page
1082 TheMainWindow
->NextPage();
1086 TheMainWindow
->PreviousPage();
1089 // Search - with dialog
1090 TheMainWindow
->Search(TRUE
);
1092 case POEM_NEXT_MATCH
:
1093 // Search - without dialog (next match)
1094 TheMainWindow
->Search(FALSE
);
1097 TheMainWindow
->Iconize(TRUE
);
1101 // Copy current poem to the clipboard
1102 CopyToClipboard((HWND
) TheMainWindow
->GetHWND(), poem_buffer
);
1109 case POEM_BIGGER_TEXT
:
1113 TheMainWindow
->Resize();
1116 case POEM_SMALLER_TEXT
:
1122 TheMainWindow
->Resize();
1126 case POEM_HELP_CONTENTS
:
1128 HelpController
->LoadFile("wxpoem");
1129 HelpController
->DisplayContents();
1134 (void)wxMessageBox("wxPoem Version 1.1\nJulian Smart (c) 1995",
1135 "About wxPoem", wxOK
, TheMainWindow
);
1140 TheMainWindow
->Close(TRUE
);