]> git.saurik.com Git - wxWidgets.git/blame - samples/taskbar/tbtest.cpp
add accessors using wxFileName to wxFile/DirPickerCtrl (patch 1622534)
[wxWidgets.git] / samples / taskbar / tbtest.cpp
CommitLineData
bbf1f0e5
KB
1/////////////////////////////////////////////////////////////////////////////
2// Name: tbtest.cpp
3// Purpose: wxTaskBarIcon demo
4// Author: Julian Smart
329fa151 5// Modified by:
bbf1f0e5
KB
6// Created: 01/02/97
7// RCS-ID: $Id$
8// Copyright: (c)
2f6c54eb 9// Licence: wxWindows licence
bbf1f0e5
KB
10/////////////////////////////////////////////////////////////////////////////
11
12// For compilers that support precompilation, includes "wx.h".
13#include "wx/wxprec.h"
14
15#ifdef __BORLANDC__
16#pragma hdrstop
17#endif
18
19#ifndef WX_PRECOMP
788233da 20#include "wx/wx.h"
bbf1f0e5
KB
21#endif
22
4bc64712
VS
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__)
1e6d9c20 25 #include "../sample.xpm"
4bc64712
VS
26#endif
27
0dc6da2d
VS
28#include "smile.xpm"
29
e015d1f7 30#include "wx/taskbar.h"
bbf1f0e5
KB
31#include "tbtest.h"
32
329fa151 33// Declare two frames
bbf1f0e5
KB
34MyDialog *dialog = NULL;
35
36IMPLEMENT_APP(MyApp)
37
38bool MyApp::OnInit(void)
39{
bbf1f0e5 40 // Create the main frame window
2a21ac15 41 dialog = new MyDialog(NULL, wxID_ANY, wxT("wxTaskBarIcon Test Dialog"), wxDefaultPosition, wxSize(365, 290));
bbf1f0e5 42
27301f26 43 dialog->Show(true);
bbf1f0e5 44
27301f26 45 return true;
bbf1f0e5
KB
46}
47
69ecd30f 48
bbf1f0e5
KB
49BEGIN_EVENT_TABLE(MyDialog, wxDialog)
50 EVT_BUTTON(wxID_OK, MyDialog::OnOK)
51 EVT_BUTTON(wxID_EXIT, MyDialog::OnExit)
d66d9d5b 52 EVT_CLOSE(MyDialog::OnCloseWindow)
bbf1f0e5
KB
53END_EVENT_TABLE()
54
69ecd30f 55
bbf1f0e5
KB
56MyDialog::MyDialog(wxWindow* parent, const wxWindowID id, const wxString& title,
57 const wxPoint& pos, const wxSize& size, const long windowStyle):
58 wxDialog(parent, id, title, pos, size, windowStyle)
59{
60 Init();
61}
62
1e6d9c20
VS
63MyDialog::~MyDialog()
64{
65 delete m_taskBarIcon;
a5593369
DE
66#if defined(__WXCOCOA__)
67 delete m_dockIcon;
68#endif
1e6d9c20
VS
69}
70
256b8649 71void MyDialog::OnOK(wxCommandEvent& WXUNUSED(event))
bbf1f0e5 72{
27301f26 73 Show(false);
bbf1f0e5
KB
74}
75
256b8649 76void MyDialog::OnExit(wxCommandEvent& WXUNUSED(event))
bbf1f0e5 77{
27301f26 78 Close(true);
bbf1f0e5
KB
79}
80
256b8649 81void MyDialog::OnCloseWindow(wxCloseEvent& WXUNUSED(event))
bbf1f0e5
KB
82{
83 Destroy();
84}
85
86void MyDialog::Init(void)
87{
0063a4dc 88 (void)new wxStaticText(this, wxID_ANY, _T("Press 'Hide me' to hide me, Exit to quit."),
e0221ef7 89 wxPoint(10, 20));
bbf1f0e5 90
27301f26 91 (void)new wxStaticText(this, wxID_ANY, _T("Double-click on the taskbar icon to show me again."),
e0221ef7 92 wxPoint(10, 40));
69ecd30f 93
ab1ca7b3 94 (void)new wxButton(this, wxID_EXIT, _T("Exit"), wxPoint(185, 230), wxSize(80, 25));
0063a4dc 95 (new wxButton(this, wxID_OK, _T("Hide me"), wxPoint(100, 230), wxSize(80, 25)))->SetDefault();
e0221ef7 96 Centre(wxBOTH);
1e6d9c20 97
329fa151 98 m_taskBarIcon = new MyTaskBarIcon();
a5593369
DE
99#if defined(__WXCOCOA__)
100 m_dockIcon = new MyTaskBarIcon(wxTaskBarIcon::DOCK);
101#endif
329fa151 102 if (!m_taskBarIcon->SetIcon(wxICON(sample), wxT("wxTaskBarIcon Sample")))
1e6d9c20 103 wxMessageBox(wxT("Could not set icon."));
bbf1f0e5
KB
104}
105
69ecd30f
RD
106
107enum {
108 PU_RESTORE = 10001,
ab85e6cd 109 PU_NEW_ICON,
d806d30a 110 PU_OLD_ICON,
69ecd30f 111 PU_EXIT,
d806d30a
DS
112 PU_CHECKMARK,
113 PU_SUB1,
114 PU_SUB2,
115 PU_SUBMAIN
69ecd30f
RD
116};
117
118
119BEGIN_EVENT_TABLE(MyTaskBarIcon, wxTaskBarIcon)
120 EVT_MENU(PU_RESTORE, MyTaskBarIcon::OnMenuRestore)
121 EVT_MENU(PU_EXIT, MyTaskBarIcon::OnMenuExit)
ab85e6cd 122 EVT_MENU(PU_NEW_ICON,MyTaskBarIcon::OnMenuSetNewIcon)
d806d30a 123 EVT_MENU(PU_OLD_ICON,MyTaskBarIcon::OnMenuSetOldIcon)
2afa9fa7
RR
124 EVT_MENU(PU_CHECKMARK,MyTaskBarIcon::OnMenuCheckmark)
125 EVT_UPDATE_UI(PU_CHECKMARK,MyTaskBarIcon::OnMenuUICheckmark)
329fa151 126 EVT_TASKBAR_LEFT_DCLICK (MyTaskBarIcon::OnLeftButtonDClick)
d806d30a
DS
127 EVT_MENU(PU_SUB1, MyTaskBarIcon::OnMenuSub)
128 EVT_MENU(PU_SUB2, MyTaskBarIcon::OnMenuSub)
69ecd30f
RD
129END_EVENT_TABLE()
130
a42b93aa 131void MyTaskBarIcon::OnMenuRestore(wxCommandEvent& )
69ecd30f 132{
27301f26 133 dialog->Show(true);
69ecd30f
RD
134}
135
a42b93aa 136void MyTaskBarIcon::OnMenuExit(wxCommandEvent& )
69ecd30f 137{
27301f26 138 dialog->Close(true);
69ecd30f
RD
139}
140
2afa9fa7
RR
141static bool check = true;
142
143void MyTaskBarIcon::OnMenuCheckmark(wxCommandEvent& )
144{
145 check =!check;
146}
d806d30a 147
2afa9fa7
RR
148void MyTaskBarIcon::OnMenuUICheckmark(wxUpdateUIEvent &event)
149{
150 event.Check( check );
151}
152
ab85e6cd
JS
153void MyTaskBarIcon::OnMenuSetNewIcon(wxCommandEvent&)
154{
0dc6da2d 155 wxIcon icon(smile_xpm);
ab85e6cd 156
0dc6da2d 157 if (!SetIcon(icon, wxT("wxTaskBarIcon Sample - a different icon")))
ab85e6cd 158 wxMessageBox(wxT("Could not set new icon."));
ab85e6cd 159}
69ecd30f 160
d806d30a
DS
161void MyTaskBarIcon::OnMenuSetOldIcon(wxCommandEvent&)
162{
163 if (IsIconInstalled())
164 {
165 RemoveIcon();
166 }
167 else
168 {
169 wxMessageBox(wxT("wxTaskBarIcon Sample - icon already is the old version"));
170 }
171}
172
173void MyTaskBarIcon::OnMenuSub(wxCommandEvent&)
174{
175 wxMessageBox(wxT("You clicked on a submenu!"));
176}
177
bbf1f0e5 178// Overridables
dae73d74 179wxMenu *MyTaskBarIcon::CreatePopupMenu()
bbf1f0e5 180{
d806d30a
DS
181 // Try creating menus different ways
182 // TODO: Probably try calling SetBitmap with some XPMs here
dae73d74 183 wxMenu *menu = new wxMenu;
dae73d74 184 menu->Append(PU_RESTORE, _T("&Restore TBTest"));
d806d30a
DS
185 menu->AppendSeparator();
186 menu->Append(PU_OLD_ICON, _T("&Restore Old Icon"));
187 menu->Append(PU_NEW_ICON, _T("&Set New Icon"));
188 menu->AppendSeparator();
189 menu->Append(PU_CHECKMARK, _T("Checkmark"),wxT(""), wxITEM_CHECK);
190 menu->AppendSeparator();
191 wxMenu *submenu = new wxMenu;
192 submenu->Append(PU_SUB1, _T("One submenu"));
193 submenu->AppendSeparator();
194 submenu->Append(PU_SUB2, _T("Another submenu"));
195 menu->Append(PU_SUBMAIN, _T("Submenu"), submenu);
196#ifndef __WXMAC_OSX__ /*Mac has built-in quit menu*/
197 menu->AppendSeparator();
dae73d74 198 menu->Append(PU_EXIT, _T("E&xit"));
d806d30a 199#endif
dae73d74 200 return menu;
bbf1f0e5
KB
201}
202
329fa151 203void MyTaskBarIcon::OnLeftButtonDClick(wxTaskBarIconEvent&)
bbf1f0e5 204{
27301f26 205 dialog->Show(true);
bbf1f0e5 206}