]> git.saurik.com Git - wxWidgets.git/blame - include/wx/msw/taskbar.h
Oops, don't cut and paste between ports, and do test compile both states
[wxWidgets.git] / include / wx / msw / taskbar.h
CommitLineData
2bda0e17 1/////////////////////////////////////////////////////////////////////////
fa1c12bd
VZ
2// File: wx/msw/taskbar.h
3// Purpose: Defines wxTaskBarIcon class for manipulating icons on the
2bda0e17
KB
4// Windows task bar.
5// Author: Julian Smart
6// Modified by:
7// Created: 24/3/98
8// RCS-ID: $Id$
fa1c12bd
VZ
9// Copyright: (c) Julian Smart
10// Licence: wxWindows licence
2bda0e17
KB
11/////////////////////////////////////////////////////////////////////////
12
13#ifndef _TASKBAR_H_
14#define _TASKBAR_H_
15
16#ifdef __GNUG__
17#pragma interface "taskbar.h"
18#endif
19
56194595 20#include <wx/event.h>
2bda0e17
KB
21#include <wx/list.h>
22#include <wx/icon.h>
23
937cf827 24class WXDLLEXPORT wxTaskBarIcon: public wxEvtHandler {
56194595 25 DECLARE_DYNAMIC_CLASS(wxTaskBarIcon)
2bda0e17 26public:
56194595
RD
27 wxTaskBarIcon(void);
28 virtual ~wxTaskBarIcon(void);
2bda0e17
KB
29
30// Accessors
31 inline WXHWND GetHWND() const { return m_hWnd; }
32 inline bool IsOK() const { return (m_hWnd != 0) ; }
33 inline bool IsIconInstalled() const { return m_iconAdded; }
34
35// Operations
2b5f62a0 36 bool SetIcon(const wxIcon& icon, const wxString& tooltip = wxEmptyString);
2bda0e17 37 bool RemoveIcon(void);
69ecd30f 38 bool PopupMenu(wxMenu *menu); //, int x, int y);
2bda0e17
KB
39
40// Overridables
56194595
RD
41 virtual void OnMouseMove(wxEvent&);
42 virtual void OnLButtonDown(wxEvent&);
43 virtual void OnLButtonUp(wxEvent&);
44 virtual void OnRButtonDown(wxEvent&);
45 virtual void OnRButtonUp(wxEvent&);
46 virtual void OnLButtonDClick(wxEvent&);
47 virtual void OnRButtonDClick(wxEvent&);
2bda0e17
KB
48
49// Implementation
50 static wxTaskBarIcon* FindObjectForHWND(WXHWND hWnd);
51 static void AddObject(wxTaskBarIcon* obj);
52 static void RemoveObject(wxTaskBarIcon* obj);
53 static bool RegisterWindowClass();
54 static WXHWND CreateTaskBarWindow();
55 long WindowProc( WXHWND hWnd, unsigned int msg, unsigned int wParam, long lParam );
56
57// Data members
58protected:
59 WXHWND m_hWnd;
60 bool m_iconAdded;
61 static wxList sm_taskBarIcons;
62 static bool sm_registeredClass;
63 static unsigned int sm_taskbarMsg;
56194595 64
69ecd30f
RD
65 // non-virtual default event handlers to forward events to the virtuals
66 void _OnMouseMove(wxEvent&);
67 void _OnLButtonDown(wxEvent&);
68 void _OnLButtonUp(wxEvent&);
69 void _OnRButtonDown(wxEvent&);
70 void _OnRButtonUp(wxEvent&);
71 void _OnLButtonDClick(wxEvent&);
72 void _OnRButtonDClick(wxEvent&);
73
74
6164d85e 75 DECLARE_EVENT_TABLE()
2bda0e17
KB
76};
77
56194595 78
fa1c12bd
VZ
79// ----------------------------------------------------------------------------
80// wxTaskBarIcon events
81// ----------------------------------------------------------------------------
82
83class WXDLLEXPORT wxTaskBarIconEvent : public wxEvent
84{
85public:
86 wxTaskBarIconEvent(wxEventType evtType, wxTaskBarIcon *tbIcon)
87 : wxEvent(-1, evtType)
88 {
89 SetEventObject(tbIcon);
90 }
91
92 virtual wxEvent *Clone() const { return new wxTaskBarIconEvent(*this); }
93};
56194595 94
459e74ba
MB
95BEGIN_DECLARE_EVENT_TYPES()
96DECLARE_EVENT_TYPE( wxEVT_TASKBAR_MOVE, 1550 )
97DECLARE_EVENT_TYPE( wxEVT_TASKBAR_LEFT_DOWN, 1551 )
98DECLARE_EVENT_TYPE( wxEVT_TASKBAR_LEFT_UP, 1552 )
99DECLARE_EVENT_TYPE( wxEVT_TASKBAR_RIGHT_DOWN, 1553 )
100DECLARE_EVENT_TYPE( wxEVT_TASKBAR_RIGHT_UP, 1554 )
101DECLARE_EVENT_TYPE( wxEVT_TASKBAR_LEFT_DCLICK, 1555 )
102DECLARE_EVENT_TYPE( wxEVT_TASKBAR_RIGHT_DCLICK, 1556 )
103END_DECLARE_EVENT_TYPES()
56194595 104
2e4df4bf
VZ
105#define EVT_TASKBAR_MOVE(fn) DECLARE_EVENT_TABLE_ENTRY(wxEVT_TASKBAR_MOVE, -1, -1, (wxObjectEventFunction) (wxEventFunction) &fn, NULL),
106#define EVT_TASKBAR_LEFT_DOWN(fn) DECLARE_EVENT_TABLE_ENTRY(wxEVT_TASKBAR_LEFT_DOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) &fn, NULL),
107#define EVT_TASKBAR_LEFT_UP(fn) DECLARE_EVENT_TABLE_ENTRY(wxEVT_TASKBAR_LEFT_UP, -1, -1, (wxObjectEventFunction) (wxEventFunction) &fn, NULL),
108#define EVT_TASKBAR_RIGHT_DOWN(fn) DECLARE_EVENT_TABLE_ENTRY(wxEVT_TASKBAR_RIGHT_DOWN, -1, -1, (wxObjectEventFunction) (wxEventFunction) &fn, NULL),
109#define EVT_TASKBAR_RIGHT_UP(fn) DECLARE_EVENT_TABLE_ENTRY(wxEVT_TASKBAR_RIGHT_UP, -1, -1, (wxObjectEventFunction) (wxEventFunction) &fn, NULL),
110#define EVT_TASKBAR_LEFT_DCLICK(fn) DECLARE_EVENT_TABLE_ENTRY(wxEVT_TASKBAR_LEFT_DCLICK, -1, -1, (wxObjectEventFunction) (wxEventFunction) &fn, NULL),
111#define EVT_TASKBAR_RIGHT_DCLICK(fn) DECLARE_EVENT_TABLE_ENTRY(wxEVT_TASKBAR_RIGHT_DCLICK, -1, -1, (wxObjectEventFunction) (wxEventFunction) &fn, NULL),
56194595 112
69ecd30f 113
2bda0e17
KB
114#endif
115 // _TASKBAR_H_
116
56194595
RD
117
118
119
120