Files
wxWidgets/src/qt/taskbar.cpp
Dimitri Schoolwerth 8f8d58d193 Use wx-prefixed macros throughout the repository.
Change {DECLARE,IMPLEMENT}_*CLASS and {DECLARE,BEGIN,END}_EVENT_TABLE
occurrences to use the wx-prefixed version of the macros.
2015-04-23 22:00:35 +04:00

44 lines
1.0 KiB
C++

/////////////////////////////////////////////////////////////////////////////
// Name: src/qt/taskbar.cpp
// Author: Peter Most
// Copyright: (c) Peter Most
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
// For compilers that support precompilation, includes "wx.h".
#include "wx/wxprec.h"
#include "wx/taskbar.h"
//=============================================================================
bool wxTaskBarIconBase::IsAvailable()
{
return QSystemTrayIcon::isSystemTrayAvailable();
}
//=============================================================================
wxIMPLEMENT_DYNAMIC_CLASS(wxTaskBarIcon, wxTaskBarIconBase);
wxTaskBarIcon::wxTaskBarIcon(wxTaskBarIconType WXUNUSED(iconType))
{
}
bool wxTaskBarIcon::SetIcon(const wxIcon& WXUNUSED(icon),
const wxString& WXUNUSED(tooltip))
{
return false;
}
bool wxTaskBarIcon::RemoveIcon()
{
return false;
}
bool wxTaskBarIcon::PopupMenu(wxMenu *WXUNUSED(menu))
{
return false;
}