]>
Commit | Line | Data |
---|---|---|
457814b5 JS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: validate.h | |
be5a51fb | 3 | // Purpose: wxWidgets validation sample |
457814b5 JS |
4 | // Author: Julian Smart |
5 | // Modified by: | |
6 | // Created: 04/01/98 | |
7 | // RCS-ID: $Id$ | |
6aa89a22 | 8 | // Copyright: (c) Julian Smart |
a994f81b | 9 | // Licence: wxWindows license |
457814b5 JS |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
2b61c41b VZ |
12 | #include "wx/app.h" |
13 | #include "wx/combobox.h" | |
14 | #include "wx/dialog.h" | |
15 | #include "wx/dynarray.h" | |
16 | #include "wx/frame.h" | |
17 | #include "wx/listbox.h" | |
18 | #include "wx/string.h" | |
19 | ||
457814b5 | 20 | // Define a new application type |
a994f81b VZ |
21 | class MyApp : public wxApp |
22 | { | |
23 | public: | |
24 | bool OnInit(); | |
457814b5 JS |
25 | }; |
26 | ||
27 | // Define a new frame type | |
a994f81b VZ |
28 | class MyFrame : public wxFrame |
29 | { | |
30 | public: | |
7df07b10 | 31 | MyFrame(wxFrame *frame, const wxString&title, int x, int y, int w, int h); |
a994f81b | 32 | |
457814b5 JS |
33 | void OnQuit(wxCommandEvent& event); |
34 | void OnTestDialog(wxCommandEvent& event); | |
2b61c41b VZ |
35 | void OnToggleBell(wxCommandEvent& event); |
36 | ||
37 | private: | |
38 | wxListBox *m_listbox; | |
39 | bool m_silent; | |
457814b5 | 40 | |
a994f81b | 41 | DECLARE_EVENT_TABLE() |
457814b5 JS |
42 | }; |
43 | ||
a994f81b | 44 | class MyDialog : public wxDialog |
457814b5 JS |
45 | { |
46 | public: | |
2b61c41b VZ |
47 | MyDialog(wxWindow *parent, const wxString& title, |
48 | const wxPoint& pos = wxDefaultPosition, | |
49 | const wxSize& size = wxDefaultSize, | |
a994f81b | 50 | const long style = wxDEFAULT_DIALOG_STYLE); |
2e7a6b03 | 51 | |
2b61c41b | 52 | bool TransferDataToWindow(); |
2e7a6b03 FM |
53 | wxTextCtrl *m_text; |
54 | wxComboBox *m_combobox; | |
457814b5 JS |
55 | }; |
56 | ||
57 | class MyData | |
58 | { | |
a994f81b | 59 | public: |
2b61c41b | 60 | MyData(); |
2e7a6b03 | 61 | |
2b61c41b VZ |
62 | // These data members are designed for transfer to and from |
63 | // controls, via validators. For instance, a text control's | |
64 | // transferred value is a string: | |
fcd209b6 | 65 | wxString m_string, m_string2; |
2e7a6b03 | 66 | |
2b61c41b VZ |
67 | // Listboxes may permit multiple selections, so their state |
68 | // is transferred to an integer-array class. | |
69 | wxArrayInt m_listbox_choices; | |
2e7a6b03 | 70 | |
2b61c41b VZ |
71 | // Comboboxes differ from listboxes--validators transfer |
72 | // the string entered in the combobox's text-edit field. | |
73 | wxString m_combobox_choice; | |
2e7a6b03 FM |
74 | |
75 | bool m_checkbox_state; | |
2b61c41b | 76 | int m_radiobox_choice; |
457814b5 JS |
77 | }; |
78 | ||
2e7a6b03 FM |
79 | class MyComboBoxValidator : public wxValidator |
80 | { | |
81 | public: | |
82 | MyComboBoxValidator(const MyComboBoxValidator& tocopy) { m_var=tocopy.m_var; } | |
83 | MyComboBoxValidator(wxString* var) { m_var=var; } | |
84 | ||
85 | virtual bool Validate(wxWindow* parent); | |
86 | virtual wxObject* Clone() const { return new MyComboBoxValidator(*this); } | |
87 | ||
88 | // Called to transfer data to the window | |
89 | virtual bool TransferToWindow(); | |
90 | ||
91 | // Called to transfer data from the window | |
92 | virtual bool TransferFromWindow(); | |
93 | ||
94 | protected: | |
95 | wxString* m_var; | |
96 | }; | |
97 | ||
98 | enum | |
99 | { | |
0bcd4039 | 100 | VALIDATE_DIALOG_ID = wxID_HIGHEST, |
457814b5 | 101 | |
0bcd4039 WS |
102 | VALIDATE_TEST_DIALOG, |
103 | VALIDATE_TOGGLE_BELL, | |
457814b5 | 104 | |
0bcd4039 | 105 | VALIDATE_TEXT, |
fcd209b6 | 106 | VALIDATE_TEXT2, |
0bcd4039 WS |
107 | VALIDATE_LIST, |
108 | VALIDATE_CHECK, | |
109 | VALIDATE_COMBO, | |
110 | VALIDATE_RADIO | |
111 | }; |