preparation for X11 wxTaskBarIcon version:

1. moved events to common file from MSW specific
2. deprecated virtual functions in favour of event handlers
3. removed taskbar.cpp files from port that don't implement it


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@19979 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík
2003-04-04 22:47:58 +00:00
parent 6af507f77e
commit f5b1bb5e76
7 changed files with 0 additions and 202 deletions

View File

@@ -238,7 +238,6 @@ ALL_SOURCES = \
mac/statlmac.cpp \
mac/stattext.cpp \
mac/tabctrl.cpp \
mac/taskbar.cpp \
mac/textctrl.cpp \
mac/thread.cpp \
mac/timer.cpp \
@@ -584,7 +583,6 @@ ALL_HEADERS = \
mac/stattext.h \
mac/statusbr.h \
mac/tabctrl.h \
mac/taskbar.h \
mac/textctrl.h \
mac/timer.h \
mac/toolbar.h \
@@ -900,7 +898,6 @@ GUIOBJS = \
statlmac.o \
stattext.o \
tabctrl.o \
taskbar.o \
textctrl.o \
thread.o \
timer.o \

View File

@@ -1,70 +0,0 @@
/////////////////////////////////////////////////////////////////////////
// File: taskbar.cpp
// Purpose: Implements wxTaskBarIcon class for manipulating icons on
// the task bar. Optional.
// Author: Stefan Csomor
// Modified by:
// Created: 1998-01-01
// RCS-ID: $Id$
// Copyright: (c)
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////
#ifdef __GNUG__
#pragma implementation "taskbar.h"
#endif
#include "wx/taskbar.h"
wxTaskBarIcon::wxTaskBarIcon()
{
// TODO
}
wxTaskBarIcon::~wxTaskBarIcon()
{
// TODO
}
// Operations
bool wxTaskBarIcon::SetIcon(const wxIcon& icon, const wxString& tooltip)
{
// TODO
return FALSE;
}
bool wxTaskBarIcon::RemoveIcon()
{
// TODO
return FALSE;
}
// Overridables
void wxTaskBarIcon::OnMouseMove()
{
}
void wxTaskBarIcon::OnLButtonDown()
{
}
void wxTaskBarIcon::OnLButtonUp()
{
}
void wxTaskBarIcon::OnRButtonDown()
{
}
void wxTaskBarIcon::OnRButtonUp()
{
}
void wxTaskBarIcon::OnLButtonDClick()
{
}
void wxTaskBarIcon::OnRButtonDClick()
{
}

View File

@@ -238,7 +238,6 @@ ALL_SOURCES = \
mac/statlmac.cpp \
mac/stattext.cpp \
mac/tabctrl.cpp \
mac/taskbar.cpp \
mac/textctrl.cpp \
mac/thread.cpp \
mac/timer.cpp \
@@ -584,7 +583,6 @@ ALL_HEADERS = \
mac/stattext.h \
mac/statusbr.h \
mac/tabctrl.h \
mac/taskbar.h \
mac/textctrl.h \
mac/timer.h \
mac/toolbar.h \
@@ -900,7 +898,6 @@ GUIOBJS = \
statlmac.o \
stattext.o \
tabctrl.o \
taskbar.o \
textctrl.o \
thread.o \
timer.o \

View File

@@ -1,70 +0,0 @@
/////////////////////////////////////////////////////////////////////////
// File: taskbar.cpp
// Purpose: Implements wxTaskBarIcon class for manipulating icons on
// the task bar. Optional.
// Author: Stefan Csomor
// Modified by:
// Created: 1998-01-01
// RCS-ID: $Id$
// Copyright: (c)
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////
#ifdef __GNUG__
#pragma implementation "taskbar.h"
#endif
#include "wx/taskbar.h"
wxTaskBarIcon::wxTaskBarIcon()
{
// TODO
}
wxTaskBarIcon::~wxTaskBarIcon()
{
// TODO
}
// Operations
bool wxTaskBarIcon::SetIcon(const wxIcon& icon, const wxString& tooltip)
{
// TODO
return FALSE;
}
bool wxTaskBarIcon::RemoveIcon()
{
// TODO
return FALSE;
}
// Overridables
void wxTaskBarIcon::OnMouseMove()
{
}
void wxTaskBarIcon::OnLButtonDown()
{
}
void wxTaskBarIcon::OnLButtonUp()
{
}
void wxTaskBarIcon::OnRButtonDown()
{
}
void wxTaskBarIcon::OnRButtonUp()
{
}
void wxTaskBarIcon::OnLButtonDClick()
{
}
void wxTaskBarIcon::OnRButtonDClick()
{
}

View File

@@ -234,7 +234,6 @@ ALL_SOURCES = \
os2/statline.cpp \
os2/stattext.cpp \
os2/tabctrl.cpp \
os2/taskbar.cpp \
os2/textctrl.cpp \
os2/thread.cpp \
os2/timer.cpp \
@@ -567,7 +566,6 @@ ALL_HEADERS = \
os2/statline.h \
os2/stattext.h \
os2/tabctrl.h \
os2/taskbar.h \
os2/textctrl.h \
os2/timer.h \
os2/toolbar.h \
@@ -872,7 +870,6 @@ GUIOBJS = \
statline.o \
stattext.o \
tabctrl.o \
taskbar.o \
textctrl.o \
thread.o \
timer.o \