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
|
|
|
|
|
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
|
|
|
|
|
|
|
class CTaskBarIcon : public wxTaskBarIconEx
|
2004-10-23 07:13:18 +00:00
|
|
|
{
|
|
|
|
DECLARE_DYNAMIC_CLASS(CTaskBarIcon)
|
|
|
|
|
|
|
|
public:
|
|
|
|
CTaskBarIcon();
|
|
|
|
~CTaskBarIcon();
|
|
|
|
|
2004-10-24 05:40:12 +00:00
|
|
|
void OnOpen( wxCommandEvent& event );
|
|
|
|
void OnActivitySelection( wxCommandEvent& event );
|
|
|
|
void OnNetworkSelection( wxCommandEvent& event );
|
|
|
|
void OnAbout( wxCommandEvent& event );
|
2004-10-23 23:40:11 +00:00
|
|
|
void OnExit( wxCommandEvent& event );
|
2005-02-09 01:14:14 +00:00
|
|
|
#ifdef __WXMSW__
|
|
|
|
void OnShutdown( wxTaskBarIconExEvent& event );
|
|
|
|
#endif
|
2004-10-24 07:38:38 +00:00
|
|
|
|
2005-01-07 07:32:23 +00:00
|
|
|
void OnIdle( wxIdleEvent& event );
|
2004-10-23 23:40:11 +00:00
|
|
|
void OnClose( wxCloseEvent& event );
|
|
|
|
|
2004-10-25 10:20:43 +00:00
|
|
|
void OnMouseMove( wxTaskBarIconEvent& event );
|
|
|
|
void OnLButtonDClick( wxTaskBarIconEvent& event );
|
2004-10-23 07:13:18 +00:00
|
|
|
|
2004-11-03 21:06:12 +00:00
|
|
|
#ifdef __WXMSW__
|
|
|
|
void OnContextMenu( wxTaskBarIconExEvent& event );
|
|
|
|
#endif
|
|
|
|
|
2004-11-23 07:45:11 +00:00
|
|
|
void OnRButtonDown( wxTaskBarIconEvent& event );
|
|
|
|
void OnRButtonUp( wxTaskBarIconEvent& event );
|
|
|
|
|
2004-10-23 07:13:18 +00:00
|
|
|
private:
|
2004-10-23 23:40:11 +00:00
|
|
|
|
2004-11-04 05:34:51 +00:00
|
|
|
wxIcon m_iconTaskBarIcon;
|
|
|
|
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();
|
2004-10-25 00:56:16 +00:00
|
|
|
|
2004-10-23 07:13:18 +00:00
|
|
|
DECLARE_EVENT_TABLE()
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|