/************************************************************************* * * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: bmkmenu.cxx,v $ * * $Revision: 1.16 $ * * last change: $Author: obo $ $Date: 2006-10-12 10:39:42 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. * * * GNU Lesser General Public License Version 2.1 * ============================================= * Copyright 2005 by Sun Microsystems, Inc. * 901 San Antonio Road, Palo Alto, CA 94303, USA * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License version 2.1, as published by the Free Software Foundation. * * This library 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. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, * MA 02111-1307 USA * ************************************************************************/ // MARKER(update_precomp.py): autogen include statement, do not remove #include "precompiled_framework.hxx" //_________________________________________________________________________________________________________________ // my own includes //_________________________________________________________________________________________________________________ #include #include "classes/bmkmenu.hxx" #ifndef __FRAMEWORK_GENERAL_H_ #include #endif #ifndef __FRAMEWORK_MACROS_DEBUG_ASSERTION_HXX_ #include #endif #ifndef __FRAMEWORK_HELPER_IMAGEPRODUCER_HXX_ #include #endif #ifndef __FRAMEWORK_CLASSES_MENUCONFIGURATION_HXX_ #include #endif //_________________________________________________________________________________________________________________ // interface includes //_________________________________________________________________________________________________________________ #ifndef _COM_SUN_STAR_UNO_REFERENCE_H_ #include #endif #ifndef _COM_SUN_STAR_UTIL_URL_HPP_ #include #endif #ifndef _COM_SUN_STAR_BEANS_PROPERTYVALUE_HPP_ #include #endif #ifndef _UNOTOOLS_PROCESSFACTORY_HXX #include #endif #ifndef _COM_SUN_STAR_UTIL_XURLTRANSFORMER_HPP_ #include #endif #ifndef _COM_SUN_STAR_LANG_XMULTISERVICEFACTORY_HPP_ #include #endif #ifndef _COM_SUN_STAR_UTIL_DATETIME_HPP_ #include #endif //_________________________________________________________________________________________________________________ // includes of other projects //_________________________________________________________________________________________________________________ #ifndef _CONFIG_HXX #include #endif #include #include #ifndef INCLUDED_SVTOOLS_MENUOPTIONS_HXX #include #endif #ifndef _RTL_LOGFILE_HXX_ #include #endif //_________________________________________________________________________________________________________________ // namespace //_________________________________________________________________________________________________________________ using namespace ::rtl; using namespace ::comphelper; using namespace ::com::sun::star::uno; using namespace ::com::sun::star::lang; using namespace ::com::sun::star::util; using namespace ::com::sun::star::frame; using namespace ::com::sun::star::beans; namespace framework { void GetMenuEntry( Sequence< PropertyValue >& aDynamicMenuEntry, ::rtl::OUString& rTitle, ::rtl::OUString& rURL, ::rtl::OUString& rFrame, ::rtl::OUString& rImageId ); class BmkMenu_Impl { private: static USHORT m_nMID; public: BmkMenu* m_pRoot; BOOL m_bInitialized; BmkMenu_Impl( BmkMenu* pRoot ); BmkMenu_Impl(); ~BmkMenu_Impl(); static USHORT GetMID(); }; USHORT BmkMenu_Impl::m_nMID = BMKMENU_ITEMID_START; BmkMenu_Impl::BmkMenu_Impl( BmkMenu* pRoot ) : m_pRoot(pRoot), m_bInitialized(FALSE) { } BmkMenu_Impl::BmkMenu_Impl() : m_pRoot(0), m_bInitialized(FALSE) { } BmkMenu_Impl::~BmkMenu_Impl() { } USHORT BmkMenu_Impl::GetMID() { m_nMID++; if( !m_nMID ) m_nMID = BMKMENU_ITEMID_START; return m_nMID; } // ------------------------------------------------------------------------ BmkMenu::BmkMenu( Reference< XFrame >& xFrame, BmkMenu::BmkMenuType nType, BmkMenu* pRoot ) : m_nType( nType ), m_xFrame( xFrame ) { _pImp = new BmkMenu_Impl( pRoot ); Initialize(); } BmkMenu::BmkMenu( Reference< XFrame >& xFrame, BmkMenu::BmkMenuType nType ) : m_nType( nType ), m_xFrame( xFrame ) { _pImp = new BmkMenu_Impl(); Initialize(); } BmkMenu::~BmkMenu() { delete _pImp; for ( USHORT i = 0; i < GetItemCount(); i++ ) { if ( GetItemType( i ) != MENUITEM_SEPARATOR ) { // delete user attributes created with new! USHORT nId = GetItemId( i ); MenuConfiguration::Attributes* pUserAttributes = (MenuConfiguration::Attributes*)GetUserValue( nId ); delete pUserAttributes; } } } void BmkMenu::Initialize() { RTL_LOGFILE_CONTEXT( aLog, "framework (cd100003) ::BmkMenu::Initialize" ); if( _pImp->m_bInitialized ) return; _pImp->m_bInitialized = TRUE; Sequence< Sequence< PropertyValue > > aDynamicMenuEntries; if ( m_nType == BmkMenu::BMK_NEWMENU ) aDynamicMenuEntries = SvtDynamicMenuOptions().GetMenu( E_NEWMENU ); else if ( m_nType == BmkMenu::BMK_WIZARDMENU ) aDynamicMenuEntries = SvtDynamicMenuOptions().GetMenu( E_WIZARDMENU ); BOOL bShowMenuImages = SvtMenuOptions().IsMenuIconsEnabled(); ::rtl::OUString aTitle; ::rtl::OUString aURL; ::rtl::OUString aTargetFrame; ::rtl::OUString aImageId; const StyleSettings& rSettings = Application::GetSettings().GetStyleSettings(); BOOL bIsHiContrastMode = rSettings.GetMenuColor().IsDark(); UINT32 i, nCount = aDynamicMenuEntries.getLength(); for ( i = 0; i < nCount; ++i ) { GetMenuEntry( aDynamicMenuEntries[i], aTitle, aURL, aTargetFrame, aImageId ); if ( !aTitle.getLength() && !aURL.getLength() ) continue; if ( aURL == ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "private:separator" ))) InsertSeparator(); else { sal_Bool bImageSet = sal_False; USHORT nId = CreateMenuId(); if ( bShowMenuImages ) { if ( aImageId.getLength() > 0 ) { Image aImage = GetImageFromURL( m_xFrame, aImageId, FALSE, bIsHiContrastMode ); if ( !!aImage ) { bImageSet = sal_True; InsertItem( nId, aTitle, aImage ); } } if ( !bImageSet ) { Image aImage = GetImageFromURL( m_xFrame, aURL, FALSE, bIsHiContrastMode ); if ( !aImage ) InsertItem( nId, aTitle ); else InsertItem( nId, aTitle, aImage ); } } else InsertItem( nId, aTitle ); // Store values from configuration to the New and Wizard menu entries to enable // sfx2 based code to support high contrast mode correctly! MenuConfiguration::Attributes* pUserAttributes = new MenuConfiguration::Attributes( aTargetFrame, aImageId ); SetUserValue( nId, (ULONG)pUserAttributes ); SetItemCommand( nId, aURL ); } } } USHORT BmkMenu::CreateMenuId() { return BmkMenu_Impl::GetMID(); } void GetMenuEntry ( Sequence< PropertyValue >& aDynamicMenuEntry, ::rtl::OUString& rTitle, ::rtl::OUString& rURL, ::rtl::OUString& rFrame, ::rtl::OUString& rImageId ) { for ( int i = 0; i < aDynamicMenuEntry.getLength(); i++ ) { if ( aDynamicMenuEntry[i].Name == DYNAMICMENU_PROPERTYNAME_URL ) aDynamicMenuEntry[i].Value >>= rURL; else if ( aDynamicMenuEntry[i].Name == DYNAMICMENU_PROPERTYNAME_TITLE ) aDynamicMenuEntry[i].Value >>= rTitle; else if ( aDynamicMenuEntry[i].Name == DYNAMICMENU_PROPERTYNAME_IMAGEIDENTIFIER ) aDynamicMenuEntry[i].Value >>= rImageId; else if ( aDynamicMenuEntry[i].Name == DYNAMICMENU_PROPERTYNAME_TARGETNAME ) aDynamicMenuEntry[i].Value >>= rFrame; } } }