+
+enum {
+ PU_RESTORE = 10001,
+ PU_EXIT,
+};
+
+
+BEGIN_EVENT_TABLE(MyTaskBarIcon, wxTaskBarIcon)
+ EVT_MENU(PU_RESTORE, MyTaskBarIcon::OnMenuRestore)
+ EVT_MENU(PU_EXIT, MyTaskBarIcon::OnMenuExit)
+END_EVENT_TABLE()
+
+void MyTaskBarIcon::OnMenuRestore(wxCommandEvent& )
+{
+ dialog->Show(TRUE);
+}
+
+void MyTaskBarIcon::OnMenuExit(wxCommandEvent& )
+{
+ dialog->Close(TRUE);
+
+ // Nudge wxWindows into destroying the dialog, since
+ // with a hidden window no messages will get sent to put
+ // it into idle processing.
+ wxGetApp().ProcessIdle();
+}
+
+