]> git.saurik.com Git - wxWidgets.git/blame - samples/taskbar/tbtest.cpp
Removed def files
[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
RD
55
56
bbf1f0e5
KB
57MyDialog::MyDialog(wxWindow* parent, const wxWindowID id, const wxString& title,
58 const wxPoint& pos, const wxSize& size, const long windowStyle):
59 wxDialog(parent, id, title, pos, size, windowStyle)
60{
61 Init();
62}
63
1e6d9c20
VS
64MyDialog::~MyDialog()
65{
66 delete m_taskBarIcon;
a5593369
DE
67#if defined(__WXCOCOA__)
68 delete m_dockIcon;
69#endif
1e6d9c20
VS
70}
71
256b8649 72void MyDialog::OnOK(wxCommandEvent& WXUNUSED(event))
bbf1f0e5 73{
27301f26 74 Show(false);
bbf1f0e5
KB
75}
76
256b8649 77void MyDialog::OnExit(wxCommandEvent& WXUNUSED(event))
bbf1f0e5 78{
27301f26 79 Close(true);
bbf1f0e5
KB
80}
81
256b8649 82void MyDialog::OnCloseWindow(wxCloseEvent& WXUNUSED(event))
bbf1f0e5
KB
83{
84 Destroy();
85}
86
87void MyDialog::Init(void)
88{
0063a4dc 89 (void)new wxStaticText(this, wxID_ANY, _T("Press 'Hide me' to hide me, Exit to quit."),
e0221ef7 90 wxPoint(10, 20));
bbf1f0e5 91
27301f26 92 (void)new wxStaticText(this, wxID_ANY, _T("Double-click on the taskbar icon to show me again."),
e0221ef7 93 wxPoint(10, 40));
69ecd30f 94
ab1ca7b3 95 (void)new wxButton(this, wxID_EXIT, _T("Exit"), wxPoint(185, 230), wxSize(80, 25));
0063a4dc 96 (new wxButton(this, wxID_OK, _T("Hide me"), wxPoint(100, 230), wxSize(80, 25)))->SetDefault();
e0221ef7 97 Centre(wxBOTH);
1e6d9c20 98
329fa151 99 m_taskBarIcon = new MyTaskBarIcon();
a5593369
DE
100#if defined(__WXCOCOA__)
101 m_dockIcon = new MyTaskBarIcon(wxTaskBarIcon::DOCK);
102#endif
329fa151 103 if (!m_taskBarIcon->SetIcon(wxICON(sample), wxT("wxTaskBarIcon Sample")))
1e6d9c20 104 wxMessageBox(wxT("Could not set icon."));
bbf1f0e5
KB
105}
106
69ecd30f
RD
107
108enum {
109 PU_RESTORE = 10001,
ab85e6cd 110 PU_NEW_ICON,
69ecd30f 111 PU_EXIT,
2afa9fa7 112 PU_CHECKMARK
69ecd30f
RD
113};
114
115
116BEGIN_EVENT_TABLE(MyTaskBarIcon, wxTaskBarIcon)
117 EVT_MENU(PU_RESTORE, MyTaskBarIcon::OnMenuRestore)
118 EVT_MENU(PU_EXIT, MyTaskBarIcon::OnMenuExit)
ab85e6cd 119 EVT_MENU(PU_NEW_ICON,MyTaskBarIcon::OnMenuSetNewIcon)
2afa9fa7
RR
120 EVT_MENU(PU_CHECKMARK,MyTaskBarIcon::OnMenuCheckmark)
121 EVT_UPDATE_UI(PU_CHECKMARK,MyTaskBarIcon::OnMenuUICheckmark)
329fa151 122 EVT_TASKBAR_LEFT_DCLICK (MyTaskBarIcon::OnLeftButtonDClick)
69ecd30f
RD
123END_EVENT_TABLE()
124
a42b93aa 125void MyTaskBarIcon::OnMenuRestore(wxCommandEvent& )
69ecd30f 126{
27301f26 127 dialog->Show(true);
69ecd30f
RD
128}
129
a42b93aa 130void MyTaskBarIcon::OnMenuExit(wxCommandEvent& )
69ecd30f 131{
27301f26 132 dialog->Close(true);
69ecd30f
RD
133}
134
2afa9fa7
RR
135static bool check = true;
136
137void MyTaskBarIcon::OnMenuCheckmark(wxCommandEvent& )
138{
139 check =!check;
140}
141void MyTaskBarIcon::OnMenuUICheckmark(wxUpdateUIEvent &event)
142{
143 event.Check( check );
144}
145
ab85e6cd
JS
146void MyTaskBarIcon::OnMenuSetNewIcon(wxCommandEvent&)
147{
0dc6da2d 148 wxIcon icon(smile_xpm);
ab85e6cd 149
0dc6da2d 150 if (!SetIcon(icon, wxT("wxTaskBarIcon Sample - a different icon")))
ab85e6cd 151 wxMessageBox(wxT("Could not set new icon."));
ab85e6cd 152}
69ecd30f 153
bbf1f0e5 154// Overridables
dae73d74 155wxMenu *MyTaskBarIcon::CreatePopupMenu()
bbf1f0e5 156{
dae73d74
VS
157 wxMenu *menu = new wxMenu;
158
159 menu->Append(PU_RESTORE, _T("&Restore TBTest"));
160 menu->Append(PU_NEW_ICON,_T("&Set New Icon"));
2afa9fa7 161 menu->Append(PU_CHECKMARK, _T("Checkmark"),wxT( "" ), wxITEM_CHECK );
dae73d74 162 menu->Append(PU_EXIT, _T("E&xit"));
329fa151 163
dae73d74 164 return menu;
bbf1f0e5
KB
165}
166
329fa151 167void MyTaskBarIcon::OnLeftButtonDClick(wxTaskBarIconEvent&)
bbf1f0e5 168{
27301f26 169 dialog->Show(true);
bbf1f0e5 170}