2008-08-06 18:36:30 +00:00
|
|
|
// This file is part of BOINC.
|
2005-01-20 23:22:22 +00:00
|
|
|
// http://boinc.berkeley.edu
|
2008-08-06 18:36:30 +00:00
|
|
|
// Copyright (C) 2008 University of California
|
2004-10-23 07:13:18 +00:00
|
|
|
//
|
2008-08-06 18:36:30 +00:00
|
|
|
// BOINC is free software; you can redistribute it and/or modify it
|
|
|
|
// under the terms of the GNU Lesser General Public License
|
|
|
|
// as published by the Free Software Foundation,
|
|
|
|
// either version 3 of the License, or (at your option) any later version.
|
2004-10-23 07:13:18 +00:00
|
|
|
//
|
2008-08-06 18:36:30 +00:00
|
|
|
// BOINC is distributed in the hope that it will be useful,
|
2005-01-20 23:22:22 +00:00
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
// See the GNU Lesser General Public License for more details.
|
2004-10-23 07:13:18 +00:00
|
|
|
//
|
2008-08-06 18:36:30 +00:00
|
|
|
// You should have received a copy of the GNU Lesser General Public License
|
|
|
|
// along with BOINC. If not, see <http://www.gnu.org/licenses/>.
|
2004-10-23 07:13:18 +00:00
|
|
|
|
2004-11-02 04:44:24 +00:00
|
|
|
#ifndef _BOINCTASKBAR_H_
|
|
|
|
#define _BOINCTASKBAR_H_
|
2004-10-23 07:13:18 +00:00
|
|
|
|
|
|
|
#if defined(__GNUG__) && !defined(__APPLE__)
|
2004-11-02 04:44:24 +00:00
|
|
|
#pragma interface "BOINCTaskBar.cpp"
|
2004-10-23 07:13:18 +00:00
|
|
|
#endif
|
|
|
|
|
2005-03-25 12:23:30 +00:00
|
|
|
|
2004-11-02 10:14:41 +00:00
|
|
|
#ifdef __WXMSW__
|
|
|
|
#include "msw/taskbarex.h"
|
|
|
|
#else
|
2006-11-22 09:51:59 +00:00
|
|
|
#define wxTaskBarIconEx wxTaskBarIcon
|
|
|
|
#define wxTaskBarIconExEvent wxTaskBarIconEvent
|
2004-11-02 10:14:41 +00:00
|
|
|
#endif
|
2004-10-23 07:13:18 +00:00
|
|
|
|
2006-10-30 03:41:32 +00:00
|
|
|
class CTaskbarEvent;
|
|
|
|
|
2005-04-10 19:01:23 +00:00
|
|
|
class CTaskBarIcon : public wxTaskBarIconEx {
|
2004-10-23 07:13:18 +00:00
|
|
|
public:
|
2006-07-05 21:35:59 +00:00
|
|
|
CTaskBarIcon(wxString title, wxIcon* icon, wxIcon* iconDisconnected, wxIcon* iconSnooze);
|
2004-10-23 07:13:18 +00:00
|
|
|
~CTaskBarIcon();
|
|
|
|
|
2006-02-02 19:53:16 +00:00
|
|
|
void OnOpenWebsite(wxCommandEvent& event);
|
2005-04-10 19:01:23 +00:00
|
|
|
void OnOpen(wxCommandEvent& event);
|
2006-11-22 09:51:59 +00:00
|
|
|
void OnSuspendResume(wxCommandEvent& event);
|
2005-04-10 19:01:23 +00:00
|
|
|
void OnAbout(wxCommandEvent& event);
|
|
|
|
void OnExit(wxCommandEvent& event);
|
|
|
|
void OnShutdown(wxTaskBarIconExEvent& event);
|
2004-10-24 07:38:38 +00:00
|
|
|
|
2005-04-10 19:01:23 +00:00
|
|
|
void OnIdle(wxIdleEvent& event);
|
|
|
|
void OnClose(wxCloseEvent& event);
|
2008-10-14 03:28:34 +00:00
|
|
|
void OnRefresh(CTaskbarEvent& event);
|
2006-11-22 09:51:59 +00:00
|
|
|
void OnReloadSkin(CTaskbarEvent& event);
|
2004-10-23 23:40:11 +00:00
|
|
|
|
2005-04-10 19:01:23 +00:00
|
|
|
void OnMouseMove(wxTaskBarIconEvent& event);
|
|
|
|
void OnLButtonDClick(wxTaskBarIconEvent& event);
|
|
|
|
void OnContextMenu(wxTaskBarIconExEvent& event);
|
|
|
|
void OnRButtonDown(wxTaskBarIconEvent& event);
|
|
|
|
void OnRButtonUp(wxTaskBarIconEvent& event);
|
2004-11-23 07:45:11 +00:00
|
|
|
|
2006-10-30 03:41:32 +00:00
|
|
|
void FireReloadSkin();
|
|
|
|
|
2005-03-25 12:23:30 +00:00
|
|
|
wxMenu *BuildContextMenu();
|
|
|
|
void AdjustMenuItems(wxMenu* menu);
|
|
|
|
|
|
|
|
#ifdef __APPLE__
|
|
|
|
wxMenu *CreatePopupMenu();
|
2008-06-24 01:09:09 +00:00
|
|
|
bool SetIcon(const wxIcon& icon);
|
2005-08-02 22:15:46 +00:00
|
|
|
#endif
|
2005-03-25 12:23:30 +00:00
|
|
|
|
2005-08-02 22:15:46 +00:00
|
|
|
#ifndef __WXMSW__
|
2006-03-23 20:23:22 +00:00
|
|
|
inline bool IsBalloonsSupported() {
|
2005-03-25 12:23:30 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2006-07-05 21:35:59 +00:00
|
|
|
wxIcon m_iconTaskBarNormal;
|
|
|
|
wxIcon m_iconTaskBarDisconnected;
|
|
|
|
wxIcon m_iconTaskBarSnooze;
|
|
|
|
wxString m_strDefaultTitle;
|
2007-05-10 15:41:10 +00:00
|
|
|
bool m_bTaskbarInitiatedShutdown;
|
2005-06-24 10:49:42 +00:00
|
|
|
|
|
|
|
private:
|
2004-11-04 05:34:51 +00:00
|
|
|
wxDateTime m_dtLastHoverDetected;
|
2004-10-23 23:40:11 +00:00
|
|
|
|
2006-07-05 21:35:59 +00:00
|
|
|
bool m_bMouseButtonPressed;
|
2004-11-23 07:45:11 +00:00
|
|
|
|
2004-10-25 00:56:16 +00:00
|
|
|
void ResetTaskBar();
|
2006-02-21 21:38:55 +00:00
|
|
|
|
2006-11-22 09:51:59 +00:00
|
|
|
void DisplayContextMenu();
|
2005-03-25 12:23:30 +00:00
|
|
|
|
2004-10-23 07:13:18 +00:00
|
|
|
DECLARE_EVENT_TABLE()
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2006-10-30 03:41:32 +00:00
|
|
|
class CTaskbarEvent : public wxEvent
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CTaskbarEvent(wxEventType evtType, CTaskBarIcon *taskbar)
|
|
|
|
: wxEvent(-1, evtType)
|
|
|
|
{
|
|
|
|
SetEventObject(taskbar);
|
|
|
|
}
|
|
|
|
|
|
|
|
CTaskbarEvent(wxEventType evtType, CTaskBarIcon *taskbar, wxString message)
|
|
|
|
: wxEvent(-1, evtType), m_message(message)
|
|
|
|
{
|
|
|
|
SetEventObject(taskbar);
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual wxEvent *Clone() const { return new CTaskbarEvent(*this); }
|
|
|
|
|
|
|
|
wxString m_message;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
BEGIN_DECLARE_EVENT_TYPES()
|
|
|
|
DECLARE_EVENT_TYPE( wxEVT_TASKBAR_RELOADSKIN, 10100 )
|
2008-10-14 03:28:34 +00:00
|
|
|
DECLARE_EVENT_TYPE( wxEVT_TASKBAR_REFRESH, 10101 )
|
2006-10-30 03:41:32 +00:00
|
|
|
END_DECLARE_EVENT_TYPES()
|
|
|
|
|
|
|
|
#define EVT_TASKBAR_RELOADSKIN(fn) DECLARE_EVENT_TABLE_ENTRY(wxEVT_TASKBAR_RELOADSKIN, -1, -1, (wxObjectEventFunction) (wxEventFunction) &fn, NULL),
|
2008-10-14 03:28:34 +00:00
|
|
|
#define EVT_TASKBAR_REFRESH(fn) DECLARE_EVENT_TABLE_ENTRY(wxEVT_TASKBAR_REFRESH, -1, -1, (wxObjectEventFunction) (wxEventFunction) &fn, NULL),
|
2006-10-30 03:41:32 +00:00
|
|
|
|
|
|
|
|
2004-10-23 07:13:18 +00:00
|
|
|
#endif
|
|
|
|
|