/************************************************************************* * * $RCSfile: bmkmenu.cxx,v $ * * $Revision: 1.7 $ * * last change: $Author: cd $ $Date: 2001-08-16 07:54:09 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses * * - GNU Lesser General Public License Version 2.1 * - Sun Industry Standards Source License Version 1.1 * * Sun Microsystems Inc., October, 2000 * * GNU Lesser General Public License Version 2.1 * ============================================= * Copyright 2000 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 * * * Sun Industry Standards Source License Version 1.1 * ================================================= * The contents of this file are subject to the Sun Industry Standards * Source License Version 1.1 (the "License"); You may not use this file * except in compliance with the License. You may obtain a copy of the * License at http://www.openoffice.org/license.html. * * Software provided under this License is provided on an "AS IS" basis, * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS, * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING. * See the License for the specific provisions governing your rights and * obligations concerning the Software. * * The Initial Developer of the Original Code is: Sun Microsystems, Inc. * * Copyright: 2000 by Sun Microsystems, Inc. * * All Rights Reserved. * * Contributor(s): _______________________________________ * * ************************************************************************/ //_________________________________________________________________________________________________________________ // 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 //_________________________________________________________________________________________________________________ #include #include //_________________________________________________________________________________________________________________ // 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_xFrame( xFrame ), m_nType( nType ) { _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 ( int 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() { 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 ); ::rtl::OUString aTitle; ::rtl::OUString aURL; ::rtl::OUString aTargetFrame; ::rtl::OUString aImageId; 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 ( aImageId.getLength() > 0 ) { Image aImage = GetImageFromURL( m_xFrame, aImageId, FALSE ); if ( !!aImage ) { bImageSet = sal_True; InsertItem( nId, aTitle, aImage ); } } if ( !bImageSet ) { Image aImage = GetImageFromURL( m_xFrame, aURL, FALSE ); if ( !aImage ) InsertItem( nId, aTitle ); else InsertItem( nId, aTitle, aImage ); } MenuConfiguration::Attributes* pUserAttributes = new MenuConfiguration::Attributes; pUserAttributes->aTargetFrame = aTargetFrame; 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; } } }