1*cdf0e10cSrcweir /************************************************************************* 2*cdf0e10cSrcweir * 3*cdf0e10cSrcweir * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4*cdf0e10cSrcweir * 5*cdf0e10cSrcweir * Copyright 2000, 2010 Oracle and/or its affiliates. 6*cdf0e10cSrcweir * 7*cdf0e10cSrcweir * OpenOffice.org - a multi-platform office productivity suite 8*cdf0e10cSrcweir * 9*cdf0e10cSrcweir * This file is part of OpenOffice.org. 10*cdf0e10cSrcweir * 11*cdf0e10cSrcweir * OpenOffice.org is free software: you can redistribute it and/or modify 12*cdf0e10cSrcweir * it under the terms of the GNU Lesser General Public License version 3 13*cdf0e10cSrcweir * only, as published by the Free Software Foundation. 14*cdf0e10cSrcweir * 15*cdf0e10cSrcweir * OpenOffice.org is distributed in the hope that it will be useful, 16*cdf0e10cSrcweir * but WITHOUT ANY WARRANTY; without even the implied warranty of 17*cdf0e10cSrcweir * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18*cdf0e10cSrcweir * GNU Lesser General Public License version 3 for more details 19*cdf0e10cSrcweir * (a copy is included in the LICENSE file that accompanied this code). 20*cdf0e10cSrcweir * 21*cdf0e10cSrcweir * You should have received a copy of the GNU Lesser General Public License 22*cdf0e10cSrcweir * version 3 along with OpenOffice.org. If not, see 23*cdf0e10cSrcweir * <http://www.openoffice.org/license.html> 24*cdf0e10cSrcweir * for a copy of the LGPLv3 License. 25*cdf0e10cSrcweir * 26*cdf0e10cSrcweir ************************************************************************/ 27*cdf0e10cSrcweir 28*cdf0e10cSrcweir #ifndef _SV_SALMENU_H 29*cdf0e10cSrcweir #define _SV_SALMENU_H 30*cdf0e10cSrcweir 31*cdf0e10cSrcweir #include "premac.h" 32*cdf0e10cSrcweir #include <Cocoa/Cocoa.h> 33*cdf0e10cSrcweir #include "postmac.h" 34*cdf0e10cSrcweir 35*cdf0e10cSrcweir #include "salmenu.hxx" 36*cdf0e10cSrcweir 37*cdf0e10cSrcweir #include <vector> 38*cdf0e10cSrcweir 39*cdf0e10cSrcweir class AquaSalFrame; 40*cdf0e10cSrcweir class AquaSalMenuItem; 41*cdf0e10cSrcweir 42*cdf0e10cSrcweir class AquaSalMenu : public SalMenu 43*cdf0e10cSrcweir { 44*cdf0e10cSrcweir std::vector< AquaSalMenuItem* > maItems; 45*cdf0e10cSrcweir 46*cdf0e10cSrcweir public: // for OOStatusView 47*cdf0e10cSrcweir struct MenuBarButtonEntry 48*cdf0e10cSrcweir { 49*cdf0e10cSrcweir SalMenuButtonItem maButton; 50*cdf0e10cSrcweir NSImage* mpNSImage; // cached image 51*cdf0e10cSrcweir NSString* mpToolTipString; 52*cdf0e10cSrcweir 53*cdf0e10cSrcweir MenuBarButtonEntry() : mpNSImage( nil ), mpToolTipString( nil ) {} 54*cdf0e10cSrcweir MenuBarButtonEntry( const SalMenuButtonItem& i_rItem ) 55*cdf0e10cSrcweir : maButton( i_rItem), mpNSImage( nil ), mpToolTipString( nil ) {} 56*cdf0e10cSrcweir }; 57*cdf0e10cSrcweir private: 58*cdf0e10cSrcweir std::vector< MenuBarButtonEntry > maButtons; 59*cdf0e10cSrcweir 60*cdf0e10cSrcweir MenuBarButtonEntry* findButtonItem( sal_uInt16 i_nItemId ); 61*cdf0e10cSrcweir void releaseButtonEntry( MenuBarButtonEntry& i_rEntry ); 62*cdf0e10cSrcweir static void statusLayout(); 63*cdf0e10cSrcweir public: 64*cdf0e10cSrcweir AquaSalMenu( bool bMenuBar ); 65*cdf0e10cSrcweir virtual ~AquaSalMenu(); 66*cdf0e10cSrcweir 67*cdf0e10cSrcweir virtual sal_Bool VisibleMenuBar(); // must return TRUE to actually DISPLAY native menu bars 68*cdf0e10cSrcweir // otherwise only menu messages are processed (eg, OLE on Windows) 69*cdf0e10cSrcweir 70*cdf0e10cSrcweir virtual void InsertItem( SalMenuItem* pSalMenuItem, unsigned nPos ); 71*cdf0e10cSrcweir virtual void RemoveItem( unsigned nPos ); 72*cdf0e10cSrcweir virtual void SetSubMenu( SalMenuItem* pSalMenuItem, SalMenu* pSubMenu, unsigned nPos ); 73*cdf0e10cSrcweir virtual void SetFrame( const SalFrame* pFrame ); 74*cdf0e10cSrcweir virtual void CheckItem( unsigned nPos, sal_Bool bCheck ); 75*cdf0e10cSrcweir virtual void EnableItem( unsigned nPos, sal_Bool bEnable ); 76*cdf0e10cSrcweir virtual void SetItemText( unsigned nPos, SalMenuItem* pSalMenuItem, const XubString& rText ); 77*cdf0e10cSrcweir virtual void SetItemImage( unsigned nPos, SalMenuItem* pSalMenuItem, const Image& rImage); 78*cdf0e10cSrcweir virtual void SetAccelerator( unsigned nPos, SalMenuItem* pSalMenuItem, const KeyCode& rKeyCode, const XubString& rKeyName ); 79*cdf0e10cSrcweir virtual void GetSystemMenuData( SystemMenuData* pData ); 80*cdf0e10cSrcweir virtual bool ShowNativePopupMenu(FloatingWindow * pWin, const Rectangle& rRect, sal_uLong nFlags); 81*cdf0e10cSrcweir virtual bool AddMenuBarButton( const SalMenuButtonItem& ); 82*cdf0e10cSrcweir virtual void RemoveMenuBarButton( sal_uInt16 nId ); 83*cdf0e10cSrcweir virtual Rectangle GetMenuBarButtonRectPixel( sal_uInt16 i_nItemId, SalFrame* i_pReferenceFrame ); 84*cdf0e10cSrcweir 85*cdf0e10cSrcweir int getItemIndexByPos( sal_uInt16 nPos ) const; 86*cdf0e10cSrcweir const AquaSalFrame* getFrame() const; 87*cdf0e10cSrcweir 88*cdf0e10cSrcweir void setMainMenu(); 89*cdf0e10cSrcweir static void unsetMainMenu(); 90*cdf0e10cSrcweir static void setDefaultMenu(); 91*cdf0e10cSrcweir static void enableMainMenu( bool bEnable ); 92*cdf0e10cSrcweir static void addFallbackMenuItem( NSMenuItem* NewItem ); 93*cdf0e10cSrcweir static void removeFallbackMenuItem( NSMenuItem* pOldItem ); 94*cdf0e10cSrcweir 95*cdf0e10cSrcweir const std::vector< MenuBarButtonEntry >& getButtons() const { return maButtons; } 96*cdf0e10cSrcweir 97*cdf0e10cSrcweir bool mbMenuBar; // true - Menubar, false - Menu 98*cdf0e10cSrcweir NSMenu* mpMenu; // The Carbon reference to this menu 99*cdf0e10cSrcweir Menu* mpVCLMenu; // the corresponding vcl Menu object 100*cdf0e10cSrcweir const AquaSalFrame* mpFrame; // the frame to dispatch the menu events to 101*cdf0e10cSrcweir AquaSalMenu* mpParentSalMenu; // the parent menu that contains us (and perhaps has a frame) 102*cdf0e10cSrcweir 103*cdf0e10cSrcweir static const AquaSalMenu* pCurrentMenuBar; 104*cdf0e10cSrcweir 105*cdf0e10cSrcweir }; 106*cdf0e10cSrcweir 107*cdf0e10cSrcweir class AquaSalMenuItem : public SalMenuItem 108*cdf0e10cSrcweir { 109*cdf0e10cSrcweir public: 110*cdf0e10cSrcweir AquaSalMenuItem( const SalItemParams* ); 111*cdf0e10cSrcweir virtual ~AquaSalMenuItem(); 112*cdf0e10cSrcweir 113*cdf0e10cSrcweir sal_uInt16 mnId; // Item ID 114*cdf0e10cSrcweir Menu* mpVCLMenu; // VCL Menu into which this MenuItem is inserted 115*cdf0e10cSrcweir AquaSalMenu* mpParentMenu; // The menu in which this menu item is inserted 116*cdf0e10cSrcweir AquaSalMenu* mpSubMenu; // Sub menu of this item (if defined) 117*cdf0e10cSrcweir NSMenuItem* mpMenuItem; // The NSMenuItem 118*cdf0e10cSrcweir }; 119*cdf0e10cSrcweir 120*cdf0e10cSrcweir #endif // _SV_SALMENU_H 121