2005-01-20 23:22:22 +00:00
|
|
|
// Berkeley Open Infrastructure for Network Computing
|
|
|
|
// http://boinc.berkeley.edu
|
|
|
|
// Copyright (C) 2005 University of California
|
2004-10-23 07:13:18 +00:00
|
|
|
//
|
2005-01-20 23:22:22 +00:00
|
|
|
// This 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 2.1 of the License, or (at your option) any later version.
|
2004-10-23 07:13:18 +00:00
|
|
|
//
|
2005-01-20 23:22:22 +00:00
|
|
|
// This software is distributed in the hope that it will be useful,
|
|
|
|
// 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
|
|
|
//
|
2005-01-20 23:22:22 +00:00
|
|
|
// To view the GNU Lesser General Public License visit
|
|
|
|
// http://www.gnu.org/copyleft/lesser.html
|
|
|
|
// or write to the Free Software Foundation, Inc.,
|
|
|
|
// 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
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
|
|
|
#ifdef __APPLE__
|
|
|
|
#include <Carbon/Carbon.h>
|
|
|
|
#endif
|
|
|
|
|
2004-11-02 10:14:41 +00:00
|
|
|
#ifdef __WXMSW__
|
|
|
|
#include "msw/taskbarex.h"
|
|
|
|
#else
|
|
|
|
#define wxTaskBarIconEx wxTaskBarIcon
|
|
|
|
#endif
|
2004-10-23 07:13:18 +00:00
|
|
|
|
2004-11-02 10:14:41 +00:00
|
|
|
|
2005-04-10 19:01:23 +00:00
|
|
|
class CTaskBarIcon : public wxTaskBarIconEx {
|
2004-10-23 07:13:18 +00:00
|
|
|
DECLARE_DYNAMIC_CLASS(CTaskBarIcon)
|
|
|
|
|
|
|
|
public:
|
|
|
|
CTaskBarIcon();
|
|
|
|
~CTaskBarIcon();
|
|
|
|
|
2005-04-10 19:01:23 +00:00
|
|
|
void OnOpen(wxCommandEvent& event);
|
|
|
|
void OnActivitySelection(wxCommandEvent& event);
|
|
|
|
void OnNetworkSelection(wxCommandEvent& event);
|
|
|
|
void OnAbout(wxCommandEvent& event);
|
|
|
|
void OnExit(wxCommandEvent& event);
|
2005-02-09 01:14:14 +00:00
|
|
|
#ifdef __WXMSW__
|
2005-04-10 19:01:23 +00:00
|
|
|
void OnShutdown(wxTaskBarIconExEvent& event);
|
2005-02-09 01:14:14 +00:00
|
|
|
#endif
|
2004-10-24 07:38:38 +00:00
|
|
|
|
2005-04-10 19:01:23 +00:00
|
|
|
void OnIdle(wxIdleEvent& event);
|
|
|
|
void OnClose(wxCloseEvent& event);
|
2004-10-23 23:40:11 +00:00
|
|
|
|
2005-03-25 12:23:30 +00:00
|
|
|
#ifdef __WXMSW__
|
2005-04-10 19:01:23 +00:00
|
|
|
void OnMouseMove(wxTaskBarIconEvent& event);
|
2005-03-25 12:23:30 +00:00
|
|
|
#endif
|
2005-04-10 19:01:23 +00:00
|
|
|
void OnLButtonDClick(wxTaskBarIconEvent& event);
|
2004-10-23 07:13:18 +00:00
|
|
|
|
2004-11-03 21:06:12 +00:00
|
|
|
#ifdef __WXMSW__
|
2005-04-10 19:01:23 +00:00
|
|
|
void OnContextMenu(wxTaskBarIconExEvent& event);
|
2005-03-25 12:23:30 +00:00
|
|
|
#else
|
2005-04-10 19:01:23 +00:00
|
|
|
void OnContextMenu(wxTaskBarIconEvent& event);
|
2004-11-03 21:06:12 +00:00
|
|
|
#endif
|
|
|
|
|
2005-04-10 19:01:23 +00:00
|
|
|
void OnRButtonDown(wxTaskBarIconEvent& event);
|
|
|
|
void OnRButtonUp(wxTaskBarIconEvent& event);
|
2004-11-23 07:45:11 +00:00
|
|
|
|
2005-03-25 12:23:30 +00:00
|
|
|
wxMenu *BuildContextMenu();
|
|
|
|
void AdjustMenuItems(wxMenu* menu);
|
|
|
|
|
|
|
|
#ifdef __APPLE__
|
|
|
|
wxMenu *CreatePopupMenu();
|
|
|
|
|
|
|
|
inline bool CTaskBarIcon::IsBalloonsSupported() {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2004-11-04 05:34:51 +00:00
|
|
|
wxIcon m_iconTaskBarIcon;
|
2005-06-24 10:49:42 +00:00
|
|
|
|
|
|
|
private:
|
2004-11-04 05:34:51 +00:00
|
|
|
wxDateTime m_dtLastHoverDetected;
|
|
|
|
wxDateTime m_dtLastBalloonDisplayed;
|
2004-10-23 23:40:11 +00:00
|
|
|
|
2004-11-23 07:45:11 +00:00
|
|
|
bool m_bButtonPressed;
|
|
|
|
|
2004-10-25 00:56:16 +00:00
|
|
|
void ResetTaskBar();
|
2004-11-03 21:06:12 +00:00
|
|
|
void CreateContextMenu();
|
2005-03-25 12:23:30 +00:00
|
|
|
|
2004-10-23 07:13:18 +00:00
|
|
|
DECLARE_EVENT_TABLE()
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|