+ menuFile->Append(Except_ThrowInt, wxT("Throw an &int\tCtrl-I"));
+ menuFile->Append(Except_ThrowString, wxT("Throw a &string\tCtrl-S"));
+ menuFile->Append(Except_ThrowObject, wxT("Throw an &object\tCtrl-O"));
+ menuFile->Append(Except_ThrowUnhandled,
+ wxT("Throw &unhandled exception\tCtrl-U"));
+ menuFile->Append(Except_Crash, wxT("&Crash\tCtrl-C"));
+ menuFile->Append(Except_Trap, "&Trap\tCtrl-T",
+ "Break into the debugger (if one is running)");
+ menuFile->AppendSeparator();
+#if wxUSE_ON_FATAL_EXCEPTION
+ menuFile->AppendCheckItem(Except_HandleCrash, wxT("&Handle crashes\tCtrl-H"));
+ menuFile->AppendSeparator();
+#endif // wxUSE_ON_FATAL_EXCEPTION
+ menuFile->Append(Except_ShowAssert, wxT("Provoke &assert failure\tCtrl-A"));
+#if wxUSE_THREADS
+ menuFile->Append(Except_ShowAssertInThread,
+ wxT("Assert failure in &thread\tShift-Ctrl-A"));
+#endif // wxUSE_THREADS
+ menuFile->AppendSeparator();
+ menuFile->Append(Except_Quit, wxT("E&xit\tCtrl-Q"), wxT("Quit this program"));