]>
Commit | Line | Data |
---|---|---|
5526e819 | 1 | ///////////////////////////////////////////////////////////////////////////// |
59815218 | 2 | // Name: widget.cpp |
5526e819 | 3 | // Purpose: wxHtml testing example |
59815218 | 4 | // Demonstrates embedded controls |
5526e819 VS |
5 | ///////////////////////////////////////////////////////////////////////////// |
6 | ||
788233da | 7 | #if defined(__GNUG__) && !defined(__APPLE__) |
5526e819 VS |
8 | #pragma implementation "test.cpp" |
9 | #pragma interface "test.cpp" | |
10 | #endif | |
11 | ||
12 | // For compilers that support precompilation, includes "wx/wx.h". | |
92a19c2e | 13 | #include "wx/wxprec.h" |
5526e819 VS |
14 | |
15 | #ifdef __BORLANDC__ | |
16 | #pragma hdrstop | |
17 | #endif | |
18 | ||
19 | // for all others, include the necessary headers (this file is usually all you | |
be5a51fb | 20 | // need because it includes almost all "standard" wxWidgets headers |
5526e819 | 21 | #ifndef WX_PRECOMP |
67547666 | 22 | #include "wx/wx.h" |
5526e819 VS |
23 | #endif |
24 | ||
25 | ||
67547666 | 26 | #include "wx/html/htmlwin.h" |
5526e819 | 27 | |
59815218 JS |
28 | #include "../../sample.xpm" |
29 | ||
5526e819 | 30 | |
5526e819 VS |
31 | /* |
32 | ||
33 | ||
34 | TAG HANDER FOR 'MYBIND' TAG | |
35 | ||
36 | ||
37 | */ | |
38 | ||
67547666 | 39 | #include "wx/html/m_templ.h" |
5526e819 VS |
40 | |
41 | ||
42 | TAG_HANDLER_BEGIN(MYBIND, "MYBIND") | |
43 | ||
aec18ff7 MB |
44 | TAG_HANDLER_PROC(tag) |
45 | { | |
46 | wxWindow *wnd; | |
47 | int ax, ay; | |
48 | int fl = 0; | |
49 | ||
50 | tag.ScanParam(wxT("X"), wxT("%i"), &ax); | |
51 | tag.ScanParam(wxT("Y"), wxT("%i"), &ay); | |
52 | ||
53 | if (tag.HasParam(wxT("FLOAT"))) fl = ax; | |
5526e819 | 54 | |
52fa6f7d | 55 | wnd = new wxTextCtrl(m_WParser->GetWindow(), wxID_ANY, tag.GetParam(wxT("NAME")), |
aec18ff7 | 56 | wxPoint(0,0), wxSize(ax, ay), wxTE_MULTILINE); |
5526e819 | 57 | |
52fa6f7d | 58 | wnd->Show(true); |
5526e819 | 59 | |
aec18ff7 | 60 | m_WParser->GetContainer()->InsertCell(new wxHtmlWidgetCell(wnd, fl)); |
5526e819 | 61 | |
52fa6f7d | 62 | return false; |
aec18ff7 | 63 | } |
5526e819 VS |
64 | |
65 | TAG_HANDLER_END(MYBIND) | |
66 | ||
67 | ||
68 | ||
69 | TAGS_MODULE_BEGIN(MyBind) | |
70 | ||
71 | TAGS_MODULE_ADD(MYBIND) | |
72 | ||
73 | TAGS_MODULE_END(MyBind) | |
74 | ||
75 | ||
5526e819 VS |
76 | // ---------------------------------------------------------------------------- |
77 | // private classes | |
78 | // ---------------------------------------------------------------------------- | |
79 | ||
80 | // Define a new application type, each program should derive a class from wxApp | |
aec18ff7 MB |
81 | class MyApp : public wxApp |
82 | { | |
83 | public: | |
5526e819 VS |
84 | // override base class virtuals |
85 | // ---------------------------- | |
aec18ff7 | 86 | |
5526e819 VS |
87 | // this one is called on application startup and is a good place for the app |
88 | // initialization (doing it here and not in the ctor allows to have an error | |
89 | // return: if OnInit() returns false, the application terminates) | |
aec18ff7 MB |
90 | virtual bool OnInit(); |
91 | }; | |
5526e819 VS |
92 | |
93 | // Define a new frame type: this is going to be our main frame | |
aec18ff7 MB |
94 | class MyFrame : public wxFrame |
95 | { | |
96 | public: | |
5526e819 | 97 | // ctor(s) |
aec18ff7 MB |
98 | MyFrame(const wxString& title, const wxPoint& pos, const wxSize& size); |
99 | ||
5526e819 | 100 | // event handlers (these functions should _not_ be virtual) |
aec18ff7 MB |
101 | void OnQuit(wxCommandEvent& event); |
102 | void OnBack(wxCommandEvent& event); | |
103 | void OnForward(wxCommandEvent& event); | |
5526e819 | 104 | |
aec18ff7 | 105 | private: |
be5a51fb | 106 | // any class wishing to process wxWidgets events must use this macro |
5526e819 | 107 | DECLARE_EVENT_TABLE() |
aec18ff7 | 108 | }; |
5526e819 VS |
109 | |
110 | // ---------------------------------------------------------------------------- | |
111 | // constants | |
112 | // ---------------------------------------------------------------------------- | |
113 | ||
114 | // IDs for the controls and the menu commands | |
aec18ff7 MB |
115 | enum |
116 | { | |
5526e819 | 117 | // menu items |
aec18ff7 MB |
118 | Minimal_Quit = 1, |
119 | Minimal_Back, | |
120 | Minimal_Forward, | |
121 | ||
5526e819 | 122 | // controls start here (the numbers are, of course, arbitrary) |
aec18ff7 MB |
123 | Minimal_Text = 1000, |
124 | }; | |
5526e819 VS |
125 | |
126 | // ---------------------------------------------------------------------------- | |
be5a51fb | 127 | // event tables and other macros for wxWidgets |
5526e819 VS |
128 | // ---------------------------------------------------------------------------- |
129 | ||
be5a51fb | 130 | // the event tables connect the wxWidgets events with the functions (event |
5526e819 VS |
131 | // handlers) which process them. It can be also done at run-time, but for the |
132 | // simple menu events like this the static method is much simpler. | |
aec18ff7 MB |
133 | BEGIN_EVENT_TABLE(MyFrame, wxFrame) |
134 | EVT_MENU(Minimal_Quit, MyFrame::OnQuit) | |
135 | EVT_MENU(Minimal_Back, MyFrame::OnBack) | |
136 | EVT_MENU(Minimal_Forward, MyFrame::OnForward) | |
137 | END_EVENT_TABLE() | |
138 | ||
be5a51fb | 139 | // Create a new application object: this macro will allow wxWidgets to create |
aec18ff7 MB |
140 | // the application object during program execution (it's better than using a |
141 | // static object for many reasons) and also declares the accessor function | |
142 | // wxGetApp() which will return the reference of the right type (i.e. MyApp and | |
143 | // not wxApp) | |
144 | IMPLEMENT_APP(MyApp) | |
145 | ||
146 | // ============================================================================ | |
147 | // implementation | |
148 | // ============================================================================ | |
149 | ||
150 | // ---------------------------------------------------------------------------- | |
151 | // the application class | |
152 | // ---------------------------------------------------------------------------- | |
153 | ||
154 | // `Main program' equivalent: the program execution "starts" here | |
155 | bool MyApp::OnInit() | |
156 | { | |
5526e819 | 157 | // Create the main application window |
2b5f62a0 | 158 | MyFrame *frame = new MyFrame( _("wxHtmlWindow testing application"), |
16f26dad | 159 | wxDefaultPosition, wxSize(640, 480) ); |
aec18ff7 | 160 | |
5526e819 VS |
161 | // Show it and tell the application that it's our main window |
162 | // @@@ what does it do exactly, in fact? is it necessary here? | |
52fa6f7d | 163 | frame->Show(true); |
aec18ff7 | 164 | SetTopWindow(frame); |
5526e819 VS |
165 | |
166 | // success: wxApp::OnRun() will be called which will enter the main message | |
52fa6f7d | 167 | // loop and the application will run. If we returned false here, the |
5526e819 | 168 | // application would exit immediately. |
52fa6f7d | 169 | return true; |
aec18ff7 | 170 | } |
5526e819 VS |
171 | |
172 | // ---------------------------------------------------------------------------- | |
173 | // main frame | |
174 | // ---------------------------------------------------------------------------- | |
175 | ||
176 | wxHtmlWindow *html; | |
177 | ||
178 | // frame constructor | |
aec18ff7 | 179 | MyFrame::MyFrame(const wxString& title, const wxPoint& pos, const wxSize& size) |
52fa6f7d | 180 | : wxFrame((wxFrame *)NULL, wxID_ANY, title, pos, size) |
aec18ff7 | 181 | { |
5526e819 | 182 | // create a menu bar |
aec18ff7 MB |
183 | wxMenu *menuFile = new wxMenu; |
184 | wxMenu *menuNav = new wxMenu; | |
5526e819 | 185 | |
2b5f62a0 VZ |
186 | menuFile->Append(Minimal_Quit, _("E&xit")); |
187 | menuNav->Append(Minimal_Back, _("Go &BACK")); | |
188 | menuNav->Append(Minimal_Forward, _("Go &FORWARD")); | |
5526e819 VS |
189 | |
190 | // now append the freshly created menu to the menu bar... | |
aec18ff7 | 191 | wxMenuBar *menuBar = new wxMenuBar; |
2b5f62a0 VZ |
192 | menuBar->Append(menuFile, _("&File")); |
193 | menuBar->Append(menuNav, _("&Navigate")); | |
5526e819 VS |
194 | |
195 | // ... and attach this menu bar to the frame | |
aec18ff7 | 196 | SetMenuBar(menuBar); |
5526e819 | 197 | |
59815218 JS |
198 | SetIcon(wxIcon(sample_xpm)); |
199 | ||
8520f137 | 200 | #if wxUSE_STATUSBAR |
aec18ff7 | 201 | CreateStatusBar(2); |
8520f137 | 202 | #endif // wxUSE_STATUSBAR |
aec18ff7 MB |
203 | |
204 | html = new wxHtmlWindow(this); | |
59815218 | 205 | html -> SetRelatedFrame(this, _("wxHTML Demo: '%s'")); |
8520f137 | 206 | #if wxUSE_STATUSBAR |
aec18ff7 | 207 | html -> SetRelatedStatusBar(1); |
8520f137 | 208 | #endif // wxUSE_STATUSBAR |
2b5f62a0 | 209 | html -> LoadPage(wxT("start.htm")); |
59815218 | 210 | |
aec18ff7 | 211 | } |
5526e819 VS |
212 | |
213 | ||
214 | // event handlers | |
215 | ||
aec18ff7 MB |
216 | void MyFrame::OnQuit(wxCommandEvent& WXUNUSED(event)) |
217 | { | |
52fa6f7d WS |
218 | // true is to force the frame to close |
219 | Close(true); | |
aec18ff7 | 220 | } |
5526e819 | 221 | |
aec18ff7 MB |
222 | void MyFrame::OnBack(wxCommandEvent& WXUNUSED(event)) |
223 | { | |
2b5f62a0 | 224 | if (!html -> HistoryBack()) wxMessageBox(_("You reached prehistory era!")); |
aec18ff7 | 225 | } |
5526e819 VS |
226 | |
227 | ||
aec18ff7 MB |
228 | void MyFrame::OnForward(wxCommandEvent& WXUNUSED(event)) |
229 | { | |
2b5f62a0 | 230 | if (!html -> HistoryForward()) wxMessageBox(_("No more items in history!")); |
aec18ff7 | 231 | } |