2008-08-06 18:36:30 +00:00
|
|
|
// This file is part of BOINC.
|
2005-03-25 12:23:30 +00:00
|
|
|
// http://boinc.berkeley.edu
|
2008-08-06 18:36:30 +00:00
|
|
|
// Copyright (C) 2008 University of California
|
2005-03-25 12:23:30 +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.
|
2005-03-25 12:23:30 +00:00
|
|
|
//
|
2008-08-06 18:36:30 +00:00
|
|
|
// BOINC is distributed in the hope that it will be useful,
|
2005-03-25 12:23:30 +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.
|
|
|
|
//
|
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/>.
|
2005-03-25 12:23:30 +00:00
|
|
|
|
|
|
|
#ifndef _MACSYSMENU_H_
|
|
|
|
#define _MACSYSMENU_H_
|
|
|
|
|
|
|
|
#if defined(__GNUG__) && !defined(__APPLE__)
|
|
|
|
#pragma interface "MacSysMenu.cpp"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <Carbon/Carbon.h>
|
|
|
|
|
|
|
|
#include "BOINCTaskBar.h"
|
|
|
|
|
|
|
|
class CMacSystemMenu : public CTaskBarIcon
|
|
|
|
{
|
|
|
|
public:
|
2006-07-06 10:52:57 +00:00
|
|
|
CMacSystemMenu(wxString title, wxIcon* icon, wxIcon* iconDisconnected, wxIcon* iconSnooze);
|
2005-03-25 12:23:30 +00:00
|
|
|
~CMacSystemMenu();
|
|
|
|
|
2008-06-24 01:09:09 +00:00
|
|
|
bool SetIcon(const wxIcon& icon);
|
2005-03-25 12:23:30 +00:00
|
|
|
|
|
|
|
void LoadPrivateFrameworkBundle( CFStringRef framework, CFBundleRef *bundlePtr );
|
|
|
|
// Function pointer prototypes to the Mach-O Cocoa wrappers
|
2007-12-19 11:38:05 +00:00
|
|
|
typedef void (*SetUpSystemMenuProc)(MenuRef menuToCopy, CGImageRef theIcon);
|
|
|
|
typedef void (*SetSystemMenuIconProc)(CGImageRef theIcon);
|
2005-03-25 12:23:30 +00:00
|
|
|
|
|
|
|
SetUpSystemMenuProc SetUpSystemMenu;
|
|
|
|
SetSystemMenuIconProc SetSystemMenuIcon;
|
|
|
|
|
2005-07-06 05:16:53 +00:00
|
|
|
bool IsOpeningAboutDlg() { return m_OpeningAboutDlg; }
|
|
|
|
void SetOpeningAboutDlg(bool b) { m_OpeningAboutDlg = b; }
|
2006-10-30 15:12:12 +00:00
|
|
|
void BuildMenu(void);
|
2007-01-18 12:30:49 +00:00
|
|
|
#if wxCHECK_VERSION(2,8,0)
|
|
|
|
wxMenu *GetCurrentMenu();
|
|
|
|
#endif
|
|
|
|
|
2005-03-25 12:23:30 +00:00
|
|
|
private:
|
|
|
|
|
2005-07-06 05:16:53 +00:00
|
|
|
bool m_OpeningAboutDlg;
|
2005-03-25 12:23:30 +00:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|