]> git.saurik.com Git - wxWidgets.git/blame - src/motif/taskbar.cpp
Some additions to the 12-bit patch.
[wxWidgets.git] / src / motif / taskbar.cpp
CommitLineData
4bb6408c
JS
1/////////////////////////////////////////////////////////////////////////
2// File: taskbar.cpp
3// Purpose: Implements wxTaskBarIcon class for manipulating icons on
4// the task bar. Optional.
5// Author: Julian Smart
6// Modified by:
7// Created: 17/09/98
8// RCS-ID: $Id$
9// Copyright: (c)
10// Licence: wxWindows licence
11/////////////////////////////////////////////////////////////////////////
12
13#ifdef __GNUG__
14#pragma implementation "taskbar.h"
15#endif
16
3096bd2f 17#include "wx/taskbar.h"
4bb6408c
JS
18
19wxTaskBarIcon::wxTaskBarIcon()
20{
21 // TODO
22}
23
24wxTaskBarIcon::~wxTaskBarIcon()
25{
26 // TODO
27}
28
29// Operations
30bool wxTaskBarIcon::SetIcon(const wxIcon& icon, const wxString& tooltip)
31{
32 // TODO
33 return FALSE;
34}
35
36bool wxTaskBarIcon::RemoveIcon()
37{
38 // TODO
39 return FALSE;
40}
41
42// Overridables
43void wxTaskBarIcon::OnMouseMove()
44{
45}
46
47void wxTaskBarIcon::OnLButtonDown()
48{
49}
50
51void wxTaskBarIcon::OnLButtonUp()
52{
53}
54
55void wxTaskBarIcon::OnRButtonDown()
56{
57}
58
59void wxTaskBarIcon::OnRButtonUp()
60{
61}
62
63void wxTaskBarIcon::OnLButtonDClick()
64{
65}
66
67void wxTaskBarIcon::OnRButtonDClick()
68{
69}
70