]> git.saurik.com Git - wxWidgets.git/blame - samples/taskbar/tbtest.h
added format parameter to File/DirName()
[wxWidgets.git] / samples / taskbar / tbtest.h
CommitLineData
bbf1f0e5
KB
1/////////////////////////////////////////////////////////////////////////////
2// Name: tbtest.h
3// Purpose: wxTaskBarIcon sample
4// Author: Julian Smart
5// Modified by:
6// Created: 01/02/97
7// RCS-ID: $Id$
8// Copyright: (c)
2f6c54eb 9// Licence: wxWindows licence
bbf1f0e5
KB
10/////////////////////////////////////////////////////////////////////////////
11
12class MyTaskBarIcon: public wxTaskBarIcon
13{
14public:
2f6c54eb 15 MyTaskBarIcon() {};
bbf1f0e5 16
4bc64712
VS
17 void OnRButtonUp(wxEvent&);
18 void OnLButtonDClick(wxEvent&);
a42b93aa
JS
19 void OnMenuRestore(wxCommandEvent&);
20 void OnMenuExit(wxCommandEvent&);
ab85e6cd 21 void OnMenuSetNewIcon(wxCommandEvent&);
69ecd30f
RD
22
23DECLARE_EVENT_TABLE()
bbf1f0e5
KB
24};
25
26
27// Define a new application
28class MyApp: public wxApp
29{
30public:
31 bool OnInit(void);
32protected:
33 MyTaskBarIcon m_taskBarIcon;
34};
35
36class MyDialog: public wxDialog
37{
38public:
39 MyDialog(wxWindow* parent, const wxWindowID id, const wxString& title,
40 const wxPoint& pos, const wxSize& size, const long windowStyle = wxDEFAULT_DIALOG_STYLE);
41
42 void OnOK(wxCommandEvent& event);
43 void OnExit(wxCommandEvent& event);
44 void OnCloseWindow(wxCloseEvent& event);
45 void Init(void);
46
47DECLARE_EVENT_TABLE()
48};
49
50