]>
git.saurik.com Git - wxWidgets.git/blob - samples/except/except.cpp
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: Except wxWindows sample
4 // Author: Julian Smart
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 // For compilers that support precompilation, includes "wx/wx.h".
21 #include "wx/wxprec.h"
27 // for all others, include the necessary headers (this file is usually all you
28 // need because it includes almost all "standard" wxWindows headers)
32 #include "wx/dialog.h"
34 #include "wx/button.h"
37 #include "wx/utils.h" // for wxMessageBox
40 // ----------------------------------------------------------------------------
42 // ----------------------------------------------------------------------------
44 // the application icon (under Windows and OS/2 it is in resources)
45 #if defined(__WXGTK__) || defined(__WXMOTIF__) || defined(__WXMAC__) || defined(__WXMGL__) || defined(__WXX11__)
46 #include "../sample.xpm"
49 // ----------------------------------------------------------------------------
51 // ----------------------------------------------------------------------------
53 // Define a new application type, each program should derive a class from wxApp
54 class MyApp
: public wxApp
57 // override base class virtuals
58 // ----------------------------
61 virtual bool OnInit();
63 // 2nd-level exception handling: we get all the exceptions occuring in any
65 virtual void HandleEvent(wxEvtHandler
*handler
,
67 wxEvent
& event
) const;
69 // 3rd, and final, level exception handling: whenever an unhandled
70 // exception is caught, this function is called
71 virtual void OnUnhandledException();
74 // Define a new frame type: this is going to be our main frame
75 class MyFrame
: public wxFrame
79 MyFrame(const wxString
& title
, const wxPoint
& pos
, const wxSize
& size
,
80 long style
= wxDEFAULT_FRAME_STYLE
);
82 // event handlers (these functions should _not_ be virtual)
83 void OnQuit(wxCommandEvent
& event
);
84 void OnAbout(wxCommandEvent
& event
);
85 void OnDialog(wxCommandEvent
& event
);
86 void OnThrowString(wxCommandEvent
& event
);
88 // 1st-level exception handling: we overload ProcessEvent() to be able to
89 // catch exceptions which occur in MyFrame methods here
90 virtual bool ProcessEvent(wxEvent
& event
);
93 // any class wishing to process wxWindows events must use this macro
97 // A simple dialog which has only some buttons to throw exceptions
98 class MyDialog
: public wxDialog
101 MyDialog(wxFrame
*parent
);
104 void OnThrowInt(wxCommandEvent
& event
);
105 void OnThrowObject(wxCommandEvent
& event
);
108 DECLARE_EVENT_TABLE()
111 // A trivial exception class
115 MyException(const wxString
& msg
) : m_msg(msg
) { }
117 const wxChar
*what() const { return m_msg
.c_str(); }
123 // ----------------------------------------------------------------------------
125 // ----------------------------------------------------------------------------
127 // IDs for the controls and the menu commands
131 Except_ThrowInt
= 100,
135 Except_ThrowString
= 200,
138 Except_Quit
= wxID_EXIT
,
139 Except_About
= wxID_ABOUT
142 // ----------------------------------------------------------------------------
143 // event tables and other macros for wxWindows
144 // ----------------------------------------------------------------------------
146 // the event tables connect the wxWindows events with the functions (event
147 // handlers) which process them. It can be also done at run-time, but for the
148 // simple menu events like this the static method is much simpler.
149 BEGIN_EVENT_TABLE(MyFrame
, wxFrame
)
150 EVT_MENU(Except_Quit
, MyFrame::OnQuit
)
151 EVT_MENU(Except_About
, MyFrame::OnAbout
)
152 EVT_MENU(Except_Dialog
, MyFrame::OnDialog
)
153 EVT_MENU(Except_ThrowString
, MyFrame::OnThrowString
)
156 BEGIN_EVENT_TABLE(MyDialog
, wxDialog
)
157 EVT_BUTTON(Except_ThrowInt
, MyDialog::OnThrowInt
)
158 EVT_BUTTON(Except_ThrowObject
, MyDialog::OnThrowObject
)
161 // Create a new application object: this macro will allow wxWindows to create
162 // the application object during program execution (it's better than using a
163 // static object for many reasons) and also implements the accessor function
164 // wxGetApp() which will return the reference of the right type (i.e. MyApp and
168 // ============================================================================
169 // MyApp implementation
170 // ============================================================================
172 // 'Main program' equivalent: the program execution "starts" here
175 // create the main application window
176 MyFrame
*frame
= new MyFrame(_T("Except wxWindows App"),
177 wxPoint(50, 50), wxSize(450, 340));
179 // and show it (the frames, unlike simple controls, are not shown when
180 // created initially)
183 // success: wxApp::OnRun() will be called which will enter the main message
184 // loop and the application will run. If we returned false here, the
185 // application would exit immediately.
190 MyApp::HandleEvent(wxEvtHandler
*handler
,
191 wxEventFunction func
,
192 wxEvent
& event
) const
196 wxApp::HandleEvent(handler
, func
, event
);
200 wxLogError(_T("Caught an int %d in MyApp."), i
);
204 void MyApp::OnUnhandledException()
206 wxMessageBox(_T("Unhandled exception caught, program will terminate."),
207 _T("wxExcept Sample"), wxOK
| wxICON_ERROR
);
210 // ============================================================================
211 // MyFrame implementation
212 // ============================================================================
215 MyFrame::MyFrame(const wxString
& title
, const wxPoint
& pos
, const wxSize
& size
, long style
)
216 : wxFrame(NULL
, -1, title
, pos
, size
, style
)
218 // set the frame icon
219 SetIcon(wxICON(mondrian
));
223 wxMenu
*menuFile
= new wxMenu
;
224 menuFile
->Append(Except_Dialog
, _T("Show &dialog\tCtrl-D"));
225 menuFile
->Append(Except_ThrowString
, _T("Throw a &string\tCtrl-S"));
226 menuFile
->AppendSeparator();
227 menuFile
->Append(Except_Quit
, _T("E&xit\tCtrl-Q"), _T("Quit this program"));
229 wxMenu
*helpMenu
= new wxMenu
;
230 helpMenu
->Append(Except_About
, _T("&About...\tF1"), _T("Show about dialog"));
232 // now append the freshly created menu to the menu bar...
233 wxMenuBar
*menuBar
= new wxMenuBar();
234 menuBar
->Append(menuFile
, _T("&File"));
235 menuBar
->Append(helpMenu
, _T("&Help"));
237 // ... and attach this menu bar to the frame
239 #endif // wxUSE_MENUS
241 #if wxUSE_STATUSBAR && !defined(__WXWINCE__)
242 // create a status bar just for fun (by default with 1 pane only)
244 SetStatusText(_T("Welcome to wxWindows!"));
245 #endif // wxUSE_STATUSBAR
248 bool MyFrame::ProcessEvent(wxEvent
& event
)
252 return wxFrame::ProcessEvent(event
);
254 catch ( const wxChar
*msg
)
256 wxLogMessage(_T("Caught a string \"%s\" in MyFrame"), msg
);
262 void MyFrame::OnQuit(wxCommandEvent
& WXUNUSED(event
))
264 // true is to force the frame to close
268 void MyFrame::OnDialog(wxCommandEvent
& WXUNUSED(event
))
275 void MyFrame::OnThrowString(wxCommandEvent
& WXUNUSED(event
))
277 throw _T("some string");
280 void MyFrame::OnAbout(wxCommandEvent
& WXUNUSED(event
))
283 msg
.Printf( _T("This is the About dialog of the except sample.\n")
284 _T("Welcome to %s"), wxVERSION_STRING
);
286 wxMessageBox(msg
, _T("About Except"), wxOK
| wxICON_INFORMATION
, this);
289 // ============================================================================
290 // MyDialog implementation
291 // ============================================================================
293 MyDialog::MyDialog(wxFrame
*parent
)
294 : wxDialog(parent
, -1, wxString(_T("Throw exception dialog")))
296 wxSizer
*sizerTop
= new wxBoxSizer(wxVERTICAL
);
298 sizerTop
->Add(new wxButton(this, Except_ThrowInt
, _T("Throw &int")),
299 0, wxCENTRE
| wxALL
, 5);
300 sizerTop
->Add(new wxButton(this, Except_ThrowObject
, _T("Throw &object")),
301 0, wxCENTRE
| wxALL
, 5);
302 sizerTop
->Add(new wxButton(this, wxID_CANCEL
, _T("&Cancel")),
303 0, wxCENTRE
| wxALL
, 5);
309 void MyDialog::OnThrowInt(wxCommandEvent
& WXUNUSED(event
))
314 void MyDialog::OnThrowObject(wxCommandEvent
& WXUNUSED(event
))
316 throw MyException(_T("Exception thrown from the dialog"));