mirror of https://github.com/BOINC/boinc.git
710 lines
22 KiB
C++
710 lines
22 KiB
C++
// Berkeley Open Infrastructure for Network Computing
|
|
// http://boinc.berkeley.edu
|
|
// Copyright (C) 2005 University of California
|
|
//
|
|
// 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.
|
|
//
|
|
// 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.
|
|
//
|
|
// 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
|
|
|
|
#if defined(__GNUG__) && !defined(__APPLE__)
|
|
#pragma implementation "BOINCTaskBar.h"
|
|
#endif
|
|
|
|
#include "stdwx.h"
|
|
#include "diagnostics.h"
|
|
#include "util.h"
|
|
#include "mfile.h"
|
|
#include "miofile.h"
|
|
#include "parse.h"
|
|
#include "BOINCGUIApp.h"
|
|
#include "SkinManager.h"
|
|
#include "MainDocument.h"
|
|
#include "BOINCTaskBar.h"
|
|
#include "BOINCBaseFrame.h"
|
|
#include "DlgAbout.h"
|
|
#include "Events.h"
|
|
|
|
#ifdef __WXMAC__
|
|
#include "res/macsnoozebadge.xpm"
|
|
#include "res/macdisconnectbadge.xpm"
|
|
#include "res/macbadgemask.xpm"
|
|
#endif
|
|
|
|
|
|
DEFINE_EVENT_TYPE(wxEVT_TASKBAR_RELOADSKIN)
|
|
|
|
|
|
BEGIN_EVENT_TABLE(CTaskBarIcon, wxTaskBarIconEx)
|
|
EVT_IDLE(CTaskBarIcon::OnIdle)
|
|
EVT_CLOSE(CTaskBarIcon::OnClose)
|
|
EVT_TIMER(ID_TB_TIMER, CTaskBarIcon::OnRefresh)
|
|
EVT_TASKBAR_RELOADSKIN(CTaskBarIcon::OnReloadSkin)
|
|
EVT_TASKBAR_LEFT_DCLICK(CTaskBarIcon::OnLButtonDClick)
|
|
EVT_MENU(wxID_OPEN, CTaskBarIcon::OnOpen)
|
|
EVT_MENU(ID_OPENWEBSITE, CTaskBarIcon::OnOpenWebsite)
|
|
EVT_MENU(ID_TB_SUSPEND, CTaskBarIcon::OnSuspendResume)
|
|
EVT_MENU(wxID_ABOUT, CTaskBarIcon::OnAbout)
|
|
EVT_MENU(wxID_EXIT, CTaskBarIcon::OnExit)
|
|
|
|
#ifdef __WXMSW__
|
|
EVT_TASKBAR_SHUTDOWN(CTaskBarIcon::OnShutdown)
|
|
EVT_TASKBAR_MOVE(CTaskBarIcon::OnMouseMove)
|
|
EVT_TASKBAR_CONTEXT_MENU(CTaskBarIcon::OnContextMenu)
|
|
EVT_TASKBAR_RIGHT_DOWN(CTaskBarIcon::OnRButtonDown)
|
|
EVT_TASKBAR_RIGHT_UP(CTaskBarIcon::OnRButtonUp)
|
|
#endif
|
|
#ifdef __WXMAC__
|
|
// wxMac-2.6.3 "helpfully" converts wxID_ABOUT to kHICommandAbout, wxID_EXIT to kHICommandQuit,
|
|
// wxID_PREFERENCES to kHICommandPreferences
|
|
EVT_MENU(kHICommandAbout, CTaskBarIcon::OnAbout)
|
|
#endif
|
|
END_EVENT_TABLE()
|
|
|
|
|
|
CTaskBarIcon::CTaskBarIcon(wxString title, wxIcon* icon, wxIcon* iconDisconnected, wxIcon* iconSnooze) :
|
|
#if defined(__WXMAC__)
|
|
wxTaskBarIcon(DOCK)
|
|
#elif defined(__WXMSW__)
|
|
wxTaskBarIconEx(wxT("BOINCManagerSystray"))
|
|
#else
|
|
wxTaskBarIcon()
|
|
#endif
|
|
{
|
|
m_iconTaskBarNormal = *icon;
|
|
m_iconTaskBarDisconnected = *iconDisconnected;
|
|
m_iconTaskBarSnooze = *iconSnooze;
|
|
m_strDefaultTitle = title;
|
|
m_bTaskbarInitiatedShutdown = false;
|
|
|
|
m_dtLastHoverDetected = wxDateTime((time_t)0);
|
|
m_dtLastBalloonDisplayed = wxDateTime((time_t)0);
|
|
|
|
m_bMouseButtonPressed = false;
|
|
|
|
m_pRefreshTimer = new wxTimer(this, ID_TB_TIMER);
|
|
m_pRefreshTimer->Start(1000); // Send event every second
|
|
}
|
|
|
|
|
|
CTaskBarIcon::~CTaskBarIcon() {
|
|
RemoveIcon();
|
|
|
|
if (m_pRefreshTimer) {
|
|
m_pRefreshTimer->Stop();
|
|
delete m_pRefreshTimer;
|
|
}
|
|
}
|
|
|
|
|
|
void CTaskBarIcon::OnIdle(wxIdleEvent& event) {
|
|
wxGetApp().UpdateSystemIdleDetection();
|
|
event.Skip();
|
|
}
|
|
|
|
|
|
void CTaskBarIcon::OnClose(wxCloseEvent& event) {
|
|
wxLogTrace(wxT("Function Start/End"), wxT("CTaskBarIcon::OnClose - Function Begin"));
|
|
|
|
RemoveIcon();
|
|
m_bTaskbarInitiatedShutdown = true;
|
|
|
|
CBOINCBaseFrame* pFrame = wxGetApp().GetFrame();
|
|
if (pFrame) {
|
|
wxASSERT(wxDynamicCast(pFrame, CBOINCBaseFrame));
|
|
pFrame->Close(true);
|
|
}
|
|
|
|
event.Skip();
|
|
|
|
wxLogTrace(wxT("Function Start/End"), wxT("CTaskBarIcon::OnClose - Function End"));
|
|
}
|
|
|
|
|
|
void CTaskBarIcon::OnRefresh(wxTimerEvent& WXUNUSED(event)) {
|
|
wxLogTrace(wxT("Function Start/End"), wxT("CTaskBarIcon::OnRefresh - Function Begin"));
|
|
|
|
CMainDocument* pDoc = wxGetApp().GetDocument();
|
|
CC_STATUS status;
|
|
|
|
wxASSERT(pDoc);
|
|
wxASSERT(wxDynamicCast(pDoc, CMainDocument));
|
|
|
|
// What is the current status of the client?
|
|
pDoc->GetCoreClientStatus(status);
|
|
|
|
// Which icon should be displayed?
|
|
if (!pDoc->IsConnected()) {
|
|
if (IsBalloonsSupported()) {
|
|
SetIcon(m_iconTaskBarDisconnected, wxEmptyString);
|
|
} else {
|
|
SetIcon(m_iconTaskBarDisconnected, m_strDefaultTitle);
|
|
}
|
|
} else {
|
|
if (RUN_MODE_NEVER == status.task_mode) {
|
|
if (IsBalloonsSupported()) {
|
|
SetIcon(m_iconTaskBarSnooze, wxEmptyString);
|
|
} else {
|
|
SetIcon(m_iconTaskBarSnooze, m_strDefaultTitle);
|
|
}
|
|
} else {
|
|
if (IsBalloonsSupported()) {
|
|
SetIcon(m_iconTaskBarNormal, wxEmptyString);
|
|
} else {
|
|
SetIcon(m_iconTaskBarNormal, m_strDefaultTitle);
|
|
}
|
|
}
|
|
}
|
|
|
|
wxLogTrace(wxT("Function Start/End"), wxT("CTaskBarIcon::OnRefresh - Function End"));
|
|
}
|
|
|
|
|
|
void CTaskBarIcon::OnLButtonDClick(wxTaskBarIconEvent& event) {
|
|
wxLogTrace(wxT("Function Start/End"), wxT("CTaskBarIcon::OnLButtonDClick - Function Begin"));
|
|
|
|
wxCommandEvent eventCommand;
|
|
OnOpen(eventCommand);
|
|
if (eventCommand.GetSkipped()) event.Skip();
|
|
|
|
wxLogTrace(wxT("Function Start/End"), wxT("CTaskBarIcon::OnLButtonDClick - Function End"));
|
|
}
|
|
|
|
|
|
void CTaskBarIcon::OnOpen(wxCommandEvent& WXUNUSED(event)) {
|
|
ResetTaskBar();
|
|
|
|
CBOINCBaseFrame* pFrame = wxGetApp().GetFrame();
|
|
wxASSERT(pFrame);
|
|
wxASSERT(wxDynamicCast(pFrame, CBOINCBaseFrame));
|
|
|
|
if (pFrame) {
|
|
pFrame->Show();
|
|
|
|
#ifndef __WXMAC__
|
|
if (pFrame->IsMaximized()) {
|
|
pFrame->Maximize(true);
|
|
} else {
|
|
pFrame->Maximize(false);
|
|
}
|
|
#endif
|
|
pFrame->SendSizeEvent();
|
|
|
|
#ifdef __WXMSW__
|
|
::SetForegroundWindow((HWND)pFrame->GetHandle());
|
|
#endif
|
|
}
|
|
}
|
|
|
|
|
|
void CTaskBarIcon::OnOpenWebsite(wxCommandEvent& WXUNUSED(event)) {
|
|
wxLogTrace(wxT("Function Start/End"), wxT("CTaskBarIcon::OnOpenWebsite - Function Begin"));
|
|
|
|
CMainDocument* pDoc = wxGetApp().GetDocument();
|
|
CBOINCBaseFrame* pFrame = wxGetApp().GetFrame();
|
|
ACCT_MGR_INFO ami;
|
|
wxString url;
|
|
|
|
wxASSERT(pDoc);
|
|
wxASSERT(wxDynamicCast(pDoc, CMainDocument));
|
|
wxASSERT(pFrame);
|
|
wxASSERT(wxDynamicCast(pFrame, CBOINCBaseFrame));
|
|
|
|
ResetTaskBar();
|
|
|
|
pDoc->rpc.acct_mgr_info(ami);
|
|
url = wxString(ami.acct_mgr_url.c_str(), wxConvUTF8);
|
|
pFrame->ExecuteBrowserLink(url);
|
|
|
|
wxLogTrace(wxT("Function Start/End"), wxT("CTaskBarIcon::OnOpenWebsite - Function End"));
|
|
}
|
|
|
|
|
|
void CTaskBarIcon::OnSuspendResume(wxCommandEvent& WXUNUSED(event)) {
|
|
wxLogTrace(wxT("Function Start/End"), wxT("CTaskBarIcon::OnSuspendResume - Function Begin"));
|
|
|
|
CMainDocument* pDoc = wxGetApp().GetDocument();
|
|
CC_STATUS status;
|
|
|
|
wxASSERT(pDoc);
|
|
wxASSERT(wxDynamicCast(pDoc, CMainDocument));
|
|
|
|
ResetTaskBar();
|
|
|
|
pDoc->GetCoreClientStatus(status);
|
|
if (status.task_mode_perm != status.task_mode) {
|
|
pDoc->SetActivityRunMode(RUN_MODE_RESTORE, 0);
|
|
} else {
|
|
pDoc->SetActivityRunMode(RUN_MODE_NEVER, 3600);
|
|
}
|
|
|
|
wxLogTrace(wxT("Function Start/End"), wxT("CTaskBarIcon::OnSuspendResume - Function End"));
|
|
}
|
|
|
|
|
|
void CTaskBarIcon::OnAbout(wxCommandEvent& WXUNUSED(event)) {
|
|
#ifdef __WXMAC__
|
|
ProcessSerialNumber psn;
|
|
|
|
GetCurrentProcess(&psn);
|
|
bool wasVisible = IsProcessVisible(&psn);
|
|
SetFrontProcess(&psn); // Shows process if hidden
|
|
#endif
|
|
|
|
ResetTaskBar();
|
|
|
|
CDlgAbout dlg(NULL);
|
|
dlg.ShowModal();
|
|
|
|
#ifdef __WXMAC__
|
|
if (!wasVisible) {
|
|
ShowHideProcess(&psn, false);
|
|
}
|
|
#endif
|
|
}
|
|
|
|
|
|
void CTaskBarIcon::OnExit(wxCommandEvent& event) {
|
|
wxLogTrace(wxT("Function Start/End"), wxT("CTaskBarIcon::OnExit - Function Begin"));
|
|
|
|
if (wxGetApp().ConfirmExit()) {
|
|
wxCloseEvent eventClose;
|
|
OnClose(eventClose);
|
|
if (eventClose.GetSkipped()) event.Skip();
|
|
}
|
|
|
|
wxLogTrace(wxT("Function Start/End"), wxT("CTaskBarIcon::OnExit - Function End"));
|
|
}
|
|
|
|
|
|
#ifdef __WXMSW__
|
|
void CTaskBarIcon::OnShutdown(wxTaskBarIconExEvent& event) {
|
|
wxLogTrace(wxT("Function Start/End"), wxT("CTaskBarIcon::OnShutdown - Function Begin"));
|
|
|
|
wxCloseEvent eventClose;
|
|
OnClose(eventClose);
|
|
if (eventClose.GetSkipped()) event.Skip();
|
|
|
|
wxLogTrace(wxT("Function Start/End"), wxT("CTaskBarIcon::OnShutdown - Function End"));
|
|
}
|
|
|
|
|
|
void CTaskBarIcon::OnMouseMove(wxTaskBarIconEvent& WXUNUSED(event)) {
|
|
wxTimeSpan ts(wxDateTime::Now() - m_dtLastHoverDetected);
|
|
if (ts.GetSeconds() >= 10) {
|
|
m_dtLastHoverDetected = wxDateTime::Now();
|
|
}
|
|
|
|
wxTimeSpan tsLastHover(wxDateTime::Now() - m_dtLastHoverDetected);
|
|
wxTimeSpan tsLastBalloon(wxDateTime::Now() - m_dtLastBalloonDisplayed);
|
|
if ((tsLastHover.GetSeconds() >= 2) && (tsLastBalloon.GetSeconds() >= 10)) {
|
|
m_dtLastBalloonDisplayed = wxDateTime::Now();
|
|
|
|
CMainDocument* pDoc = wxGetApp().GetDocument();
|
|
CSkinAdvanced* pSkinAdvanced = wxGetApp().GetSkinManager()->GetAdvanced();
|
|
wxString strTitle = wxEmptyString;
|
|
wxString strMachineName = wxEmptyString;
|
|
wxString strMessage = wxEmptyString;
|
|
wxString strBuffer = wxEmptyString;
|
|
wxString strProjectName = wxEmptyString;
|
|
float fProgress = 0;
|
|
bool bIsActive = false;
|
|
bool bIsExecuting = false;
|
|
bool bIsDownloaded = false;
|
|
wxInt32 iResultCount = 0;
|
|
wxInt32 iIndex = 0;
|
|
wxIcon iconIcon = wxNullIcon;
|
|
CC_STATUS status;
|
|
|
|
wxASSERT(pDoc);
|
|
wxASSERT(pSkinAdvanced);
|
|
wxASSERT(wxDynamicCast(pDoc, CMainDocument));
|
|
wxASSERT(wxDynamicCast(pSkinAdvanced, CSkinAdvanced));
|
|
|
|
|
|
// What should the title of the balloon be?
|
|
strTitle = pSkinAdvanced->GetApplicationName();
|
|
|
|
if (pDoc->IsConnected()) {
|
|
pDoc->GetConnectedComputerName(strMachineName);
|
|
if (pDoc->IsComputerNameLocal(strMachineName)) {
|
|
strMachineName = wxT("localhost");
|
|
}
|
|
strTitle = strTitle + wxT(" - (") + strMachineName + wxT(")");
|
|
|
|
pDoc->GetCoreClientStatus(status);
|
|
if (status.task_suspend_reason && !(status.task_suspend_reason & SUSPEND_REASON_CPU_USAGE_LIMIT)) {
|
|
// 1st %s is the previous instance of the message
|
|
// 2nd %s is the project name
|
|
// i.e. 'BOINC', 'GridRepublic'
|
|
strBuffer.Printf(
|
|
_("%s is currently suspended...\n"),
|
|
pSkinAdvanced->GetProjectName().c_str()
|
|
);
|
|
iconIcon = m_iconTaskBarSnooze;
|
|
strMessage += strBuffer;
|
|
}
|
|
|
|
if (status.network_suspend_reason && !(status.network_suspend_reason & SUSPEND_REASON_CPU_USAGE_LIMIT)) {
|
|
// 1st %s is the previous instance of the message
|
|
// 2nd %s is the project name
|
|
// i.e. 'BOINC', 'GridRepublic'
|
|
strBuffer.Printf(
|
|
_("%s networking is currently suspended...\n"),
|
|
pSkinAdvanced->GetProjectName().c_str()
|
|
);
|
|
strMessage += strBuffer;
|
|
}
|
|
|
|
if (strMessage.Length() > 0) {
|
|
strMessage += wxT("\n");
|
|
}
|
|
|
|
iResultCount = pDoc->GetWorkCount();
|
|
for (iIndex = 0; iIndex < iResultCount; iIndex++) {
|
|
RESULT* result = pDoc->result(iIndex);
|
|
RESULT* state_result = NULL;
|
|
std::string project_name;
|
|
|
|
bIsDownloaded = (result->state == RESULT_FILES_DOWNLOADED);
|
|
bIsActive = result->active_task;
|
|
bIsExecuting = (result->scheduler_state == CPU_SCHED_SCHEDULED);
|
|
if (!(bIsActive) || !(bIsDownloaded) || !(bIsExecuting)) continue;
|
|
|
|
if (result) {
|
|
state_result = pDoc->state.lookup_result(result->project_url, result->name);
|
|
if (state_result) {
|
|
state_result->project->get_name(project_name);
|
|
strProjectName = wxString(project_name.c_str());
|
|
}
|
|
fProgress = floor(result->fraction_done*10000)/100;
|
|
}
|
|
|
|
strBuffer.Printf(wxT("%s: %.2f%%\n"), strProjectName.c_str(), fProgress );
|
|
strMessage += strBuffer;
|
|
}
|
|
} else if (pDoc->IsReconnecting()) {
|
|
// 1st %s is the previous instance of the message
|
|
// 2nd %s is the application name
|
|
// i.e. 'BOINC Manager', 'GridRepublic Manager'
|
|
// 3rd %s is the project name
|
|
// i.e. 'BOINC', 'GridRepublic'
|
|
strBuffer.Printf(
|
|
_("%s is currently reconnecting to a %s client...\n"),
|
|
pSkinAdvanced->GetApplicationName().c_str(),
|
|
pSkinAdvanced->GetProjectName().c_str()
|
|
);
|
|
strMessage += strBuffer;
|
|
} else {
|
|
// 1st %s is the previous instance of the message
|
|
// 2nd %s is the application name
|
|
// i.e. 'BOINC Manager', 'GridRepublic Manager'
|
|
// 3rd %s is the project name
|
|
// i.e. 'BOINC', 'GridRepublic'
|
|
strBuffer.Printf(
|
|
_("%s is not currently connected to a %s client...\n"),
|
|
pSkinAdvanced->GetApplicationName().c_str(),
|
|
pSkinAdvanced->GetProjectName().c_str()
|
|
);
|
|
iconIcon = m_iconTaskBarDisconnected;
|
|
strMessage += strBuffer;
|
|
}
|
|
|
|
SetBalloon(iconIcon, strTitle, strMessage);
|
|
}
|
|
}
|
|
|
|
|
|
void CTaskBarIcon::OnContextMenu(wxTaskBarIconExEvent& WXUNUSED(event)) {
|
|
DisplayContextMenu();
|
|
}
|
|
|
|
|
|
void CTaskBarIcon::OnRButtonDown(wxTaskBarIconEvent& WXUNUSED(event)) {
|
|
if (!IsBalloonsSupported()) {
|
|
m_bMouseButtonPressed = true;
|
|
}
|
|
}
|
|
|
|
|
|
void CTaskBarIcon::OnRButtonUp(wxTaskBarIconEvent& WXUNUSED(event)) {
|
|
if (!IsBalloonsSupported()) {
|
|
if (m_bMouseButtonPressed) {
|
|
DisplayContextMenu();
|
|
m_bMouseButtonPressed = false;
|
|
}
|
|
}
|
|
}
|
|
#endif
|
|
|
|
|
|
void CTaskBarIcon::OnReloadSkin(CTaskbarEvent& WXUNUSED(event)) {
|
|
CSkinAdvanced* pSkinAdvanced = wxGetApp().GetSkinManager()->GetAdvanced();
|
|
|
|
wxASSERT(pSkinAdvanced);
|
|
wxASSERT(wxDynamicCast(pSkinAdvanced, CSkinAdvanced));
|
|
|
|
m_iconTaskBarNormal = *pSkinAdvanced->GetApplicationIcon();
|
|
m_iconTaskBarDisconnected = *pSkinAdvanced->GetApplicationDisconnectedIcon();
|
|
m_iconTaskBarSnooze = *pSkinAdvanced->GetApplicationSnoozeIcon();
|
|
|
|
#ifdef __WXMAC__
|
|
wxGetApp().GetMacSystemMenu()->BuildMenu();
|
|
#endif
|
|
}
|
|
|
|
|
|
void CTaskBarIcon::FireReloadSkin() {
|
|
CTaskbarEvent event(wxEVT_TASKBAR_RELOADSKIN, this);
|
|
AddPendingEvent(event);
|
|
}
|
|
|
|
|
|
void CTaskBarIcon::ResetTaskBar() {
|
|
#ifdef __WXMSW___
|
|
SetBalloon(m_iconTaskBarNormal, wxT(""), wxT(""));
|
|
#else
|
|
SetIcon(m_iconTaskBarNormal, wxT(""));
|
|
#endif
|
|
|
|
m_dtLastBalloonDisplayed = wxDateTime::Now();
|
|
}
|
|
|
|
|
|
#ifdef __WXMAC__
|
|
|
|
// The mac version of WxWidgets will delete this menu when
|
|
// done with it; we must not delete it. See the comments
|
|
// in wxTaskBarIcon::PopupMenu() and DoCreatePopupMenu()
|
|
// in WxMac/src/mac/carbon/taskbar.cpp for details
|
|
|
|
// Overridables
|
|
wxMenu *CTaskBarIcon::CreatePopupMenu() {
|
|
wxMenu *menu = BuildContextMenu();
|
|
return menu;
|
|
}
|
|
|
|
|
|
// Override the standard wxTaskBarIcon::SetIcon() because we are only providing a
|
|
// 16x16 icon for the menubar, while the Dock needs a 128x128 icon.
|
|
// Rather than using an entire separate icon, overlay the Dock icon with a badge
|
|
// so we don't need additional Snooze and Disconnected icons for branding.
|
|
bool CTaskBarIcon::SetIcon(const wxIcon& icon, const wxString& tooltip) {
|
|
wxIcon macIcon;
|
|
bool result;
|
|
OSStatus err = noErr ;
|
|
static const wxIcon* currentIcon = NULL;
|
|
int w, h, x, y;
|
|
|
|
if (&icon == currentIcon)
|
|
return true;
|
|
|
|
currentIcon = &icon;
|
|
|
|
result = wxGetApp().GetMacSystemMenu()->SetIcon(icon, tooltip);
|
|
|
|
RestoreApplicationDockTileImage(); // Remove any previous badge
|
|
|
|
#if wxCHECK_VERSION(2,8,0)
|
|
if (m_iconTaskBarDisconnected.IsSameAs(icon))
|
|
macIcon = macdisconnectbadge;
|
|
else if (m_iconTaskBarSnooze.IsSameAs(icon))
|
|
macIcon = macsnoozebadge;
|
|
else
|
|
return result;
|
|
#else
|
|
if (icon == m_iconTaskBarDisconnected)
|
|
macIcon = macdisconnectbadge;
|
|
else if (icon == m_iconTaskBarSnooze)
|
|
macIcon = macsnoozebadge;
|
|
else
|
|
return result;
|
|
|
|
#endif
|
|
|
|
// Convert the wxIcon into a wxBitmap so we can perform some
|
|
// wxBitmap operations with it
|
|
wxBitmap bmp( macIcon ) ;
|
|
|
|
// wxMac's XMP image format always uses 32-bit pixels but allows only
|
|
// 1-bit masks, so we use a separate XMP file for the 8-bit mask to
|
|
// allow us to do proper anti-aliasing of the badges. This code assumes
|
|
// that all badges are the same size circle and at the same position so
|
|
// that they can share a single mask.
|
|
wxBitmap mask_bmp( macbadgemask ) ;
|
|
h = bmp.GetHeight();
|
|
w = bmp.GetWidth();
|
|
|
|
wxASSERT(h == mask_bmp.GetHeight());
|
|
wxASSERT(w == mask_bmp.GetWidth());
|
|
|
|
unsigned char * iconBuffer = (unsigned char *)bmp.GetRawAccess();
|
|
unsigned char * maskBuffer = (unsigned char *)mask_bmp.GetRawAccess() + 1;
|
|
|
|
for (y=0; y<h; y++) {
|
|
for (x=0; x<w; x++) {
|
|
*iconBuffer = 255 - *maskBuffer;
|
|
iconBuffer += 4;
|
|
maskBuffer += 4;
|
|
}
|
|
}
|
|
|
|
CGImageRef pImage = (CGImageRef) bmp.CGImageCreate();
|
|
|
|
// Actually set the dock image
|
|
err = OverlayApplicationDockTileImage(pImage);
|
|
|
|
wxASSERT(err == 0);
|
|
|
|
// Free the CGImage
|
|
if (pImage != NULL)
|
|
CGImageRelease(pImage);
|
|
|
|
return result;
|
|
}
|
|
|
|
#endif // ! __WXMAC__
|
|
|
|
|
|
void CTaskBarIcon::DisplayContextMenu() {
|
|
ResetTaskBar();
|
|
|
|
wxMenu* pMenu = BuildContextMenu();
|
|
PopupMenu(pMenu);
|
|
delete pMenu;
|
|
}
|
|
|
|
|
|
wxMenu *CTaskBarIcon::BuildContextMenu() {
|
|
CMainDocument* pDoc = wxGetApp().GetDocument();
|
|
CSkinAdvanced* pSkinAdvanced = wxGetApp().GetSkinManager()->GetAdvanced();
|
|
wxMenu* pMenu = new wxMenu;
|
|
wxString menuName = wxEmptyString;
|
|
ACCT_MGR_INFO ami;
|
|
bool is_acct_mgr_detected = false;
|
|
|
|
wxASSERT(pMenu);
|
|
wxASSERT(pDoc);
|
|
wxASSERT(pSkinAdvanced);
|
|
wxASSERT(wxDynamicCast(pDoc, CMainDocument));
|
|
wxASSERT(wxDynamicCast(pSkinAdvanced, CSkinAdvanced));
|
|
|
|
// Account managers have a different menu arrangement
|
|
pDoc->rpc.acct_mgr_info(ami);
|
|
is_acct_mgr_detected = ami.acct_mgr_url.size() ? true : false;
|
|
|
|
if (is_acct_mgr_detected) {
|
|
menuName.Printf(
|
|
_("Open %s Web..."),
|
|
pSkinAdvanced->GetProjectName().c_str()
|
|
);
|
|
pMenu->Append(ID_OPENWEBSITE, menuName, wxEmptyString);
|
|
}
|
|
|
|
menuName.Printf(
|
|
_("Open %s..."),
|
|
pSkinAdvanced->GetApplicationName().c_str()
|
|
);
|
|
pMenu->Append(wxID_OPEN, menuName, wxEmptyString);
|
|
|
|
pMenu->AppendSeparator();
|
|
|
|
pMenu->AppendCheckItem(ID_TB_SUSPEND, _("Snooze"), wxEmptyString);
|
|
|
|
pMenu->AppendSeparator();
|
|
|
|
menuName.Printf(
|
|
_("&About %s..."),
|
|
pSkinAdvanced->GetApplicationName().c_str()
|
|
);
|
|
|
|
pMenu->Append(wxID_ABOUT, menuName, wxEmptyString);
|
|
|
|
#ifndef __WXMAC__
|
|
// These should be in Windows Task Bar Menu but not in Mac's Dock menu
|
|
pMenu->AppendSeparator();
|
|
|
|
pMenu->Append(wxID_EXIT, _("E&xit"), wxEmptyString);
|
|
#endif
|
|
|
|
AdjustMenuItems(pMenu);
|
|
|
|
return pMenu;
|
|
}
|
|
|
|
|
|
void CTaskBarIcon::AdjustMenuItems(wxMenu* pMenu) {
|
|
CC_STATUS status;
|
|
CMainDocument* pDoc = wxGetApp().GetDocument();
|
|
wxMenuItem* pMenuItem = NULL;
|
|
wxFont font = wxNullFont;
|
|
size_t loc = 0;
|
|
bool is_dialog_detected = false;
|
|
|
|
wxASSERT(pDoc);
|
|
wxASSERT(wxDynamicCast(pDoc, CMainDocument));
|
|
|
|
// BOINC Manager crashes if user selects "Exit" from taskbar menu while
|
|
// a dialog is open, so we must disable the "Exit" menu item if a dialog
|
|
// is open. So lets search for the dialog by ID since all of BOINC
|
|
// Manager's dialog IDs are 10000.
|
|
// On the Mac, the user can open multiple instances of the About dialog
|
|
// by repeatedly selecting "About" menu item from the taskbar, so we
|
|
// must also disable that item. For consistency with the Mac standard,
|
|
// we disable the entire taskbar menu when a modal dialog is open.
|
|
if (wxDynamicCast(wxWindow::FindWindowById(ID_ANYDIALOG), wxDialog)) {
|
|
is_dialog_detected = true;
|
|
}
|
|
|
|
for (loc = 0; loc < pMenu->GetMenuItemCount(); loc++) {
|
|
pMenuItem = pMenu->FindItemByPosition(loc);
|
|
if (is_dialog_detected) {
|
|
pMenuItem->Enable(false);
|
|
} else {
|
|
pMenuItem->Enable(!(pMenuItem->IsSeparator()));
|
|
}
|
|
}
|
|
|
|
#ifdef __WXMSW__
|
|
// Wierd things happen with menus and wxWidgets on Windows when you try
|
|
// to change the font and use the system default as the baseline, so
|
|
// instead of fighting the system get the original font and tweak it
|
|
// a bit. It shouldn't hurt other platforms.
|
|
for (loc = 0; loc < pMenu->GetMenuItemCount(); loc++) {
|
|
pMenuItem = pMenu->FindItemByPosition(loc);
|
|
if (!pMenuItem->IsSeparator() && pMenuItem->IsEnabled()) {
|
|
pMenu->Remove(pMenuItem);
|
|
|
|
font = pMenuItem->GetFont();
|
|
if (pMenuItem->GetId() != wxID_OPEN) {
|
|
font.SetWeight(wxFONTWEIGHT_NORMAL);
|
|
} else {
|
|
font.SetWeight(wxFONTWEIGHT_BOLD);
|
|
}
|
|
pMenuItem->SetFont(font);
|
|
|
|
pMenu->Insert(loc, pMenuItem);
|
|
}
|
|
}
|
|
#endif
|
|
|
|
pDoc->GetCoreClientStatus(status);
|
|
if (RUN_MODE_NEVER == status.task_mode) {
|
|
pMenu->Check(ID_TB_SUSPEND, true);
|
|
} else {
|
|
pMenu->Check(ID_TB_SUSPEND, false);
|
|
}
|
|
}
|
|
|
|
const char *BOINC_RCSID_531575eeaa = "$Id$";
|