]>
Commit | Line | Data |
---|---|---|
457814b5 JS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: dialogs.h | |
3 | // Purpose: Common dialogs demo | |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 04/01/98 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Julian Smart and Markus Holzem | |
c49245f8 | 9 | // Licence: wxWindows license |
457814b5 JS |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | #ifndef __DIALOGSH__ | |
13 | #define __DIALOGSH__ | |
14 | ||
15 | // Define a new application type | |
16 | class MyApp: public wxApp | |
c49245f8 VZ |
17 | { |
18 | public: | |
19 | bool OnInit(); | |
457814b5 JS |
20 | |
21 | wxFont m_canvasFont; | |
22 | wxColour m_canvasTextColour; | |
23 | }; | |
24 | ||
f6bcfd97 | 25 | // A custom modeless dialog |
4c45f240 VZ |
26 | class MyModelessDialog : public wxDialog |
27 | { | |
28 | public: | |
29 | MyModelessDialog(wxWindow *parent); | |
abceee76 VZ |
30 | |
31 | void OnClose(wxCloseEvent& event); | |
32 | ||
33 | private: | |
34 | DECLARE_EVENT_TABLE() | |
4c45f240 VZ |
35 | }; |
36 | ||
f6bcfd97 BP |
37 | // A custom modal dialog |
38 | class MyModalDialog : public wxDialog | |
39 | { | |
40 | public: | |
41 | MyModalDialog(wxWindow *parent); | |
42 | ||
43 | void OnButton(wxCommandEvent& event); | |
44 | ||
45 | private: | |
46 | wxButton *m_btnFocused; | |
47 | wxButton *m_btnDelete; | |
48 | ||
49 | DECLARE_EVENT_TABLE() | |
50 | }; | |
51 | ||
457814b5 JS |
52 | // Define a new frame type |
53 | class MyFrame: public wxFrame | |
c49245f8 VZ |
54 | { |
55 | public: | |
56 | MyFrame(wxWindow *parent, const wxString& title, | |
57 | const wxPoint& pos, const wxSize& size); | |
457814b5 | 58 | |
329e86bf RR |
59 | void ChooseColour(wxCommandEvent& event); |
60 | void ChooseFont(wxCommandEvent& event); | |
d93c719a | 61 | void LogDialog(wxCommandEvent& event); |
457814b5 JS |
62 | void MessageBox(wxCommandEvent& event); |
63 | void SingleChoice(wxCommandEvent& event); | |
64 | void TextEntry(wxCommandEvent& event); | |
a294c6d5 | 65 | void PasswordEntry(wxCommandEvent& event); |
c49245f8 | 66 | void NumericEntry(wxCommandEvent& event); |
457814b5 | 67 | void FileOpen(wxCommandEvent& event); |
35b45b33 | 68 | void FileOpen2(wxCommandEvent& event); |
c61f4f6d | 69 | void FilesOpen(wxCommandEvent& event); |
457814b5 JS |
70 | void FileSave(wxCommandEvent& event); |
71 | void DirChoose(wxCommandEvent& event); | |
51a58d8b | 72 | void GenericDirChoose(wxCommandEvent& event); |
c50f1fb9 | 73 | void ShowTip(wxCommandEvent& event); |
f6bcfd97 | 74 | void ModalDlg(wxCommandEvent& event); |
4c45f240 | 75 | void ModelessDlg(wxCommandEvent& event); |
abceee76 | 76 | void ShowProgress(wxCommandEvent& event); |
457814b5 | 77 | |
dfad0599 | 78 | #if !defined(__WXMSW__) || wxTEST_GENERIC_DIALOGS_IN_MSW |
329e86bf RR |
79 | void ChooseColourGeneric(wxCommandEvent& event); |
80 | void ChooseFontGeneric(wxCommandEvent& event); | |
457814b5 | 81 | #endif |
c49245f8 | 82 | |
329e86bf | 83 | void OnExit(wxCommandEvent& event); |
c49245f8 | 84 | |
4c45f240 VZ |
85 | void OnButton(wxCommandEvent& event); |
86 | ||
87 | private: | |
88 | MyModelessDialog *m_dialog; | |
89 | ||
90 | DECLARE_EVENT_TABLE() | |
457814b5 JS |
91 | }; |
92 | ||
93 | class MyCanvas: public wxScrolledWindow | |
94 | { | |
c49245f8 VZ |
95 | public: |
96 | MyCanvas(wxWindow *parent) : wxScrolledWindow(parent) { } | |
97 | ||
98 | void OnPaint(wxPaintEvent& event); | |
99 | ||
100 | DECLARE_EVENT_TABLE() | |
457814b5 JS |
101 | }; |
102 | ||
103 | ||
104 | // Menu IDs | |
a294c6d5 VZ |
105 | enum |
106 | { | |
107 | DIALOGS_CHOOSE_COLOUR = 1, | |
108 | DIALOGS_CHOOSE_COLOUR_GENERIC, | |
109 | DIALOGS_CHOOSE_FONT, | |
110 | DIALOGS_CHOOSE_FONT_GENERIC, | |
111 | DIALOGS_MESSAGE_BOX, | |
112 | DIALOGS_SINGLE_CHOICE, | |
113 | DIALOGS_TEXT_ENTRY, | |
114 | DIALOGS_PASSWORD_ENTRY, | |
115 | DIALOGS_FILE_OPEN, | |
35b45b33 | 116 | DIALOGS_FILE_OPEN2, |
a294c6d5 VZ |
117 | DIALOGS_FILES_OPEN, |
118 | DIALOGS_FILE_SAVE, | |
119 | DIALOGS_DIR_CHOOSE, | |
51a58d8b | 120 | DIALOGS_GENERIC_DIR_CHOOSE, |
a294c6d5 VZ |
121 | DIALOGS_TIP, |
122 | DIALOGS_NUM_ENTRY, | |
4c45f240 | 123 | DIALOGS_LOG_DIALOG, |
f6bcfd97 | 124 | DIALOGS_MODAL, |
4c45f240 | 125 | DIALOGS_MODELESS, |
abceee76 VZ |
126 | DIALOGS_MODELESS_BTN, |
127 | DIALOGS_PROGRESS | |
a294c6d5 | 128 | }; |
457814b5 JS |
129 | |
130 | #endif | |
131 |