mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-10 16:19:28 +01:00
d14efe561b
long become wxWidgets 2.9.2, which in turn is expected to be the last 2.9 release before the 3.0 stable release. Since the full wxWidgets distribution is rather large, I have imported only the parts that we use, on a subdirectory basis: art include/wx/*.* include/wx/aui include/wx/cocoa include/wx/generic include/wx/gtk include/wx/meta include/wx/msw include/wx/osx include/wx/persist include/wx/private include/wx/protocol include/wx/unix src/aui src/common src/generic src/gtk src/msw src/osx src/unix git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@7380 8ced0084-cf51-0410-be5f-012b33b47a6e
101 lines
3.5 KiB
C++
101 lines
3.5 KiB
C++
///////////////////////////////////////////////////////////////////////////////
|
|
// Name: wx/cocoa/menuitem.h
|
|
// Purpose: wxMenuItem class
|
|
// Author: David Elliott
|
|
// Modified by:
|
|
// Created: 2002/12/13
|
|
// RCS-ID: $Id: menuitem.h 58227 2009-01-19 13:55:27Z VZ $
|
|
// Copyright: (c) 2002 David Elliott
|
|
// Licence: wxWindows licence
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef _WX_COCOA_MENUITEM_H_
|
|
#define _WX_COCOA_MENUITEM_H_
|
|
|
|
#include "wx/hashmap.h"
|
|
#include "wx/bitmap.h"
|
|
|
|
#include "wx/cocoa/ObjcRef.h"
|
|
|
|
// ========================================================================
|
|
// wxMenuItem
|
|
// ========================================================================
|
|
|
|
#define wxMenuItemCocoa wxMenuItem
|
|
class wxMenuItemCocoa;
|
|
WX_DECLARE_HASH_MAP(WX_NSMenuItem,wxMenuItem*,wxPointerHash,wxPointerEqual,wxMenuItemCocoaHash);
|
|
|
|
class WXDLLIMPEXP_CORE wxMenuItemCocoa : public wxMenuItemBase
|
|
{
|
|
public:
|
|
// ------------------------------------------------------------------------
|
|
// initialization
|
|
// ------------------------------------------------------------------------
|
|
wxMenuItemCocoa(wxMenu *parentMenu = NULL,
|
|
int id = wxID_SEPARATOR,
|
|
const wxString& name = wxEmptyString,
|
|
const wxString& help = wxEmptyString,
|
|
wxItemKind kind = wxITEM_NORMAL,
|
|
wxMenu *subMenu = NULL);
|
|
virtual ~wxMenuItemCocoa();
|
|
|
|
// ------------------------------------------------------------------------
|
|
// Cocoa specifics
|
|
// ------------------------------------------------------------------------
|
|
public:
|
|
inline WX_NSMenuItem GetNSMenuItem() { return m_cocoaNSMenuItem; }
|
|
static inline wxMenuItem* GetFromCocoa(WX_NSMenuItem cocoaNSMenuItem)
|
|
{
|
|
wxMenuItemCocoaHash::iterator iter=sm_cocoaHash.find(cocoaNSMenuItem);
|
|
if(iter!=sm_cocoaHash.end())
|
|
return iter->second;
|
|
return NULL;
|
|
}
|
|
void CocoaItemSelected();
|
|
bool Cocoa_validateMenuItem();
|
|
protected:
|
|
void CocoaSetKeyEquivalent();
|
|
WX_NSMenuItem m_cocoaNSMenuItem;
|
|
static wxMenuItemCocoaHash sm_cocoaHash;
|
|
static wxObjcAutoRefFromAlloc<struct objc_object *> sm_cocoaTarget;
|
|
// ------------------------------------------------------------------------
|
|
// Implementation
|
|
// ------------------------------------------------------------------------
|
|
public:
|
|
// override base class virtuals to update the item appearance on screen
|
|
virtual void SetItemLabel(const wxString& text);
|
|
virtual void SetCheckable(bool checkable);
|
|
|
|
virtual void Enable(bool enable = TRUE);
|
|
virtual void Check(bool check = TRUE);
|
|
|
|
// we add some extra functions which are also available under MSW from
|
|
// wxOwnerDrawn class - they will be moved to wxMenuItemBase later
|
|
// hopefully
|
|
void SetBitmaps(const wxBitmap& bmpChecked,
|
|
const wxBitmap& bmpUnchecked = wxNullBitmap);
|
|
void SetBitmap(const wxBitmap& bmp) { SetBitmaps(bmp); }
|
|
const wxBitmap& GetBitmap(bool checked = TRUE) const
|
|
{ return checked ? m_bmpChecked : m_bmpUnchecked; }
|
|
|
|
protected:
|
|
// notify the menu about the change in this item
|
|
inline void NotifyMenu();
|
|
|
|
// set the accel index and string from text
|
|
void UpdateAccelInfo();
|
|
|
|
// the bitmaps (may be invalid, then they're not used)
|
|
wxBitmap m_bmpChecked,
|
|
m_bmpUnchecked;
|
|
|
|
// the accel string (i.e. "Ctrl-Q" or "Alt-F1")
|
|
wxString m_strAccel;
|
|
|
|
private:
|
|
DECLARE_DYNAMIC_CLASS(wxMenuItem)
|
|
};
|
|
|
|
#endif // _WX_COCOA_MENUITEM_H_
|
|
|