Added wxTaskBarIcon::PopupMenu()

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1169 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
1998-12-11 05:56:40 +00:00
parent 5de5db0eb1
commit 69ecd30f31
4 changed files with 113 additions and 34 deletions

View File

@@ -43,11 +43,14 @@ bool MyApp::OnInit(void)
return TRUE;
}
BEGIN_EVENT_TABLE(MyDialog, wxDialog)
EVT_BUTTON(wxID_OK, MyDialog::OnOK)
EVT_BUTTON(wxID_EXIT, MyDialog::OnExit)
END_EVENT_TABLE()
MyDialog::MyDialog(wxWindow* parent, const wxWindowID id, const wxString& title,
const wxPoint& pos, const wxSize& size, const long windowStyle):
wxDialog(parent, id, title, pos, size, windowStyle)
@@ -77,7 +80,7 @@ void MyDialog::Init(void)
wxStaticText* stat = new wxStaticText(this, -1, "Press OK to hide me, Exit to quit.",
wxPoint(10, 20));
wxStaticText* stat2 = new wxStaticText(this, -1, "Double-click on the taskbar icon to show me again.",
wxPoint(10, 40));
@@ -87,34 +90,65 @@ void MyDialog::Init(void)
this->Centre(wxBOTH);
}
// Overridables
void MyTaskBarIcon::OnMouseMove(void)
{
}
void MyTaskBarIcon::OnLButtonDown(void)
{
}
enum {
PU_RESTORE = 10001,
PU_EXIT,
};
void MyTaskBarIcon::OnLButtonUp(void)
{
}
void MyTaskBarIcon::OnRButtonDown(void)
{
}
BEGIN_EVENT_TABLE(MyTaskBarIcon, wxTaskBarIcon)
EVT_MENU(PU_RESTORE, MyTaskBarIcon::OnMenuRestore)
EVT_MENU(PU_EXIT, MyTaskBarIcon::OnMenuExit)
END_EVENT_TABLE()
void MyTaskBarIcon::OnRButtonUp(void)
{
}
void MyTaskBarIcon::OnLButtonDClick(void)
void MyTaskBarIcon::OnMenuRestore(wxEvent& )
{
dialog->Show(TRUE);
}
void MyTaskBarIcon::OnRButtonDClick(void)
void MyTaskBarIcon::OnMenuExit(wxEvent& )
{
dialog->Close(TRUE);
}
// Overridables
void MyTaskBarIcon::OnMouseMove(wxEvent&)
{
}
void MyTaskBarIcon::OnLButtonDown(wxEvent&)
{
}
void MyTaskBarIcon::OnLButtonUp(wxEvent&)
{
}
void MyTaskBarIcon::OnRButtonDown(wxEvent&)
{
}
void MyTaskBarIcon::OnRButtonUp(wxEvent&)
{
wxMenu menu;
menu.Append(PU_RESTORE, "&Restore TBTest");
menu.Append(PU_EXIT, "E&xit");
PopupMenu(&menu);
}
void MyTaskBarIcon::OnLButtonDClick(wxEvent&)
{
dialog->Show(TRUE);
}
void MyTaskBarIcon::OnRButtonDClick(wxEvent&)
{
}