]>
git.saurik.com Git - wxWidgets.git/blob - samples/taskbar/tbtest.cpp
1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxTaskBarIcon demo
4 // Author: Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // For compilers that support precompilation, includes "wx.h".
13 #include "wx/wxprec.h"
23 // the application icon (under Windows and OS/2 it is in resources)
24 #if defined(__WXGTK__) || defined(__WXMOTIF__) || defined(__WXMAC__) || defined(__WXMGL__) || defined(__WXX11__)
25 #include "../sample.xpm"
30 #include "wx/taskbar.h"
34 MyDialog
*dialog
= NULL
;
38 bool MyApp::OnInit(void)
40 if ( !wxApp::OnInit() )
43 // Create the main frame window
44 dialog
= new MyDialog(NULL
, wxID_ANY
, wxT("wxTaskBarIcon Test Dialog"), wxDefaultPosition
, wxSize(365, 290));
52 BEGIN_EVENT_TABLE(MyDialog
, wxDialog
)
53 EVT_BUTTON(wxID_OK
, MyDialog::OnOK
)
54 EVT_BUTTON(wxID_EXIT
, MyDialog::OnExit
)
55 EVT_CLOSE(MyDialog::OnCloseWindow
)
59 MyDialog::MyDialog(wxWindow
* parent
, const wxWindowID id
, const wxString
& title
,
60 const wxPoint
& pos
, const wxSize
& size
, const long windowStyle
):
61 wxDialog(parent
, id
, title
, pos
, size
, windowStyle
)
69 #if defined(__WXCOCOA__)
74 void MyDialog::OnOK(wxCommandEvent
& WXUNUSED(event
))
79 void MyDialog::OnExit(wxCommandEvent
& WXUNUSED(event
))
84 void MyDialog::OnCloseWindow(wxCloseEvent
& WXUNUSED(event
))
89 void MyDialog::Init(void)
91 (void)new wxStaticText(this, wxID_ANY
, _T("Press 'Hide me' to hide me, Exit to quit."),
94 (void)new wxStaticText(this, wxID_ANY
, _T("Double-click on the taskbar icon to show me again."),
97 (void)new wxButton(this, wxID_EXIT
, _T("Exit"), wxPoint(185, 230), wxSize(80, 25));
98 (new wxButton(this, wxID_OK
, _T("Hide me"), wxPoint(100, 230), wxSize(80, 25)))->SetDefault();
101 m_taskBarIcon
= new MyTaskBarIcon();
102 #if defined(__WXCOCOA__)
103 m_dockIcon
= new MyTaskBarIcon(wxTaskBarIcon::DOCK
);
105 if (!m_taskBarIcon
->SetIcon(wxICON(sample
), wxT("wxTaskBarIcon Sample")))
106 wxMessageBox(wxT("Could not set icon."));
122 BEGIN_EVENT_TABLE(MyTaskBarIcon
, wxTaskBarIcon
)
123 EVT_MENU(PU_RESTORE
, MyTaskBarIcon::OnMenuRestore
)
124 EVT_MENU(PU_EXIT
, MyTaskBarIcon::OnMenuExit
)
125 EVT_MENU(PU_NEW_ICON
,MyTaskBarIcon::OnMenuSetNewIcon
)
126 EVT_MENU(PU_OLD_ICON
,MyTaskBarIcon::OnMenuSetOldIcon
)
127 EVT_MENU(PU_CHECKMARK
,MyTaskBarIcon::OnMenuCheckmark
)
128 EVT_UPDATE_UI(PU_CHECKMARK
,MyTaskBarIcon::OnMenuUICheckmark
)
129 EVT_TASKBAR_LEFT_DCLICK (MyTaskBarIcon::OnLeftButtonDClick
)
130 EVT_MENU(PU_SUB1
, MyTaskBarIcon::OnMenuSub
)
131 EVT_MENU(PU_SUB2
, MyTaskBarIcon::OnMenuSub
)
134 void MyTaskBarIcon::OnMenuRestore(wxCommandEvent
& )
139 void MyTaskBarIcon::OnMenuExit(wxCommandEvent
& )
144 static bool check
= true;
146 void MyTaskBarIcon::OnMenuCheckmark(wxCommandEvent
& )
151 void MyTaskBarIcon::OnMenuUICheckmark(wxUpdateUIEvent
&event
)
153 event
.Check( check
);
156 void MyTaskBarIcon::OnMenuSetNewIcon(wxCommandEvent
&)
158 wxIcon
icon(smile_xpm
);
160 if (!SetIcon(icon
, wxT("wxTaskBarIcon Sample - a different icon")))
161 wxMessageBox(wxT("Could not set new icon."));
164 void MyTaskBarIcon::OnMenuSetOldIcon(wxCommandEvent
&)
166 if (IsIconInstalled())
172 wxMessageBox(wxT("wxTaskBarIcon Sample - icon already is the old version"));
176 void MyTaskBarIcon::OnMenuSub(wxCommandEvent
&)
178 wxMessageBox(wxT("You clicked on a submenu!"));
182 wxMenu
*MyTaskBarIcon::CreatePopupMenu()
184 // Try creating menus different ways
185 // TODO: Probably try calling SetBitmap with some XPMs here
186 wxMenu
*menu
= new wxMenu
;
187 menu
->Append(PU_RESTORE
, _T("&Restore TBTest"));
188 menu
->AppendSeparator();
189 menu
->Append(PU_OLD_ICON
, _T("&Restore Old Icon"));
190 menu
->Append(PU_NEW_ICON
, _T("&Set New Icon"));
191 menu
->AppendSeparator();
192 menu
->Append(PU_CHECKMARK
, _T("Checkmark"),wxT(""), wxITEM_CHECK
);
193 menu
->AppendSeparator();
194 wxMenu
*submenu
= new wxMenu
;
195 submenu
->Append(PU_SUB1
, _T("One submenu"));
196 submenu
->AppendSeparator();
197 submenu
->Append(PU_SUB2
, _T("Another submenu"));
198 menu
->Append(PU_SUBMAIN
, _T("Submenu"), submenu
);
199 #ifndef __WXMAC_OSX__ /*Mac has built-in quit menu*/
200 menu
->AppendSeparator();
201 menu
->Append(PU_EXIT
, _T("E&xit"));
206 void MyTaskBarIcon::OnLeftButtonDClick(wxTaskBarIconEvent
&)