INTEGRATION: CWS changefileheader (1.50.80); FILE MERGED
2008/04/01 15:18:49 thb 1.50.80.3: #i85898# Stripping all external header guards 2008/04/01 10:58:15 thb 1.50.80.2: #i85898# Stripping all external header guards 2008/03/28 15:35:35 rt 1.50.80.1: #i87441# Change license header to LPGL v3.
This commit is contained in:
parent
9f32cd3271
commit
4b9764b17b
1 changed files with 18 additions and 112 deletions
|
@ -1,35 +1,30 @@
|
|||
/*************************************************************************
|
||||
*
|
||||
* OpenOffice.org - a multi-platform office productivity suite
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* $RCSfile: menubarmanager.cxx,v $
|
||||
* Copyright 2008 by Sun Microsystems, Inc.
|
||||
*
|
||||
* $Revision: 1.50 $
|
||||
* OpenOffice.org - a multi-platform office productivity suite
|
||||
*
|
||||
* last change: $Author: ihi $ $Date: 2007-11-23 16:48:13 $
|
||||
* $RCSfile: menubarmanager.cxx,v $
|
||||
* $Revision: 1.51 $
|
||||
*
|
||||
* The Contents of this file are made available subject to
|
||||
* the terms of GNU Lesser General Public License Version 2.1.
|
||||
* This file is part of OpenOffice.org.
|
||||
*
|
||||
* OpenOffice.org is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Lesser General Public License version 3
|
||||
* only, as published by the Free Software Foundation.
|
||||
*
|
||||
* GNU Lesser General Public License Version 2.1
|
||||
* =============================================
|
||||
* Copyright 2005 by Sun Microsystems, Inc.
|
||||
* 901 San Antonio Road, Palo Alto, CA 94303, USA
|
||||
* OpenOffice.org 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 version 3 for more details
|
||||
* (a copy is included in the LICENSE file that accompanied this code).
|
||||
*
|
||||
* 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
|
||||
* You should have received a copy of the GNU Lesser General Public License
|
||||
* version 3 along with OpenOffice.org. If not, see
|
||||
* <http://www.openoffice.org/license.html>
|
||||
* for a copy of the LGPLv3 License.
|
||||
*
|
||||
************************************************************************/
|
||||
|
||||
|
@ -40,157 +35,68 @@
|
|||
//_________________________________________________________________________________________________________________
|
||||
// my own includes
|
||||
//_________________________________________________________________________________________________________________
|
||||
|
||||
#ifndef __FRAMEWORK_UIELEMENT_MENUBARMANAGER_HXX_
|
||||
#include <uielement/menubarmanager.hxx>
|
||||
#endif
|
||||
#ifndef __FRAMEWORK_CLASSES_MENUCONFIGURATION_HXX_
|
||||
#include <classes/menuconfiguration.hxx>
|
||||
#endif
|
||||
#ifndef __FRAMEWORK_CLASSES_BMKMENU_HXX
|
||||
#include <classes/bmkmenu.hxx>
|
||||
#endif
|
||||
#ifndef __FRAMEWORK_CLASSES_ADDONMENU_HXX_
|
||||
#include <classes/addonmenu.hxx>
|
||||
#endif
|
||||
#ifndef __FRAMEWORK_HELPER_IMAGEPRODUCER_HXX_
|
||||
#include <helper/imageproducer.hxx>
|
||||
#endif
|
||||
#ifndef __FRAMEWORK_THREADHELP_RESETABLEGUARD_HXX_
|
||||
#include <threadhelp/resetableguard.hxx>
|
||||
#endif
|
||||
#ifndef __FRAMEWORK_CLASSES_ADDONSOPTIONS_HXX_
|
||||
#include "classes/addonsoptions.hxx"
|
||||
#endif
|
||||
#ifndef __FRAMEWORK_CLASSES_FWKRESID_HXX_
|
||||
#include <classes/fwkresid.hxx>
|
||||
#endif
|
||||
#ifndef __FRAMEWORK_HELPER_ACCELERATORINFO_HXX_
|
||||
#include <helper/acceleratorinfo.hxx>
|
||||
#endif
|
||||
#ifndef __FRAMEWORK_CLASSES_MENUEXTENSIONSUPPLIER_HXX_
|
||||
#include <classes/menuextensionsupplier.hxx>
|
||||
#endif
|
||||
#include <classes/resource.hrc>
|
||||
#ifndef __FRAMEWORK_SERVICES_H_
|
||||
#include <services.h>
|
||||
#endif
|
||||
|
||||
//_________________________________________________________________________________________________________________
|
||||
// interface includes
|
||||
//_________________________________________________________________________________________________________________
|
||||
|
||||
#ifndef _COM_SUN_STAR_FRAME_XDISPATCH_HPP_
|
||||
#include <com/sun/star/frame/XDispatch.hpp>
|
||||
#endif
|
||||
#ifndef _COM_SUN_STAR_LANG_XMULTISERVICEFACTORY_HPP_
|
||||
#include <com/sun/star/lang/XMultiServiceFactory.hpp>
|
||||
#endif
|
||||
#ifndef _COM_SUN_STAR_BEANS_XPROPERTYSET_HPP_
|
||||
#include <com/sun/star/beans/XPropertySet.hpp>
|
||||
#endif
|
||||
#ifndef _COM_SUN_STAR_FRAME_XFRAMESSUPPLIER_HPP_
|
||||
#include <com/sun/star/frame/XFramesSupplier.hpp>
|
||||
#endif
|
||||
#ifndef _COM_SUN_STAR_FRAME_XDESKTOP_HPP_
|
||||
#include <com/sun/star/frame/XDesktop.hpp>
|
||||
#endif
|
||||
#ifndef _COM_SUN_STAR_CONTAINER_XENUMERATION_HPP_
|
||||
#include <com/sun/star/container/XEnumeration.hpp>
|
||||
#endif
|
||||
#ifndef _COM_SUN_STAR_UTIL_XSTRINGWIDTH_HPP_
|
||||
#include <com/sun/star/util/XStringWidth.hpp>
|
||||
#endif
|
||||
#ifndef _COM_SUN_STAR_UNO_XCOMPONENTCONTEXT_HPP_
|
||||
#include <com/sun/star/uno/XComponentContext.hpp>
|
||||
#endif
|
||||
#ifndef _COM_SUN_STAR_LANG_XMULTICOMPONENTFACTORY_HPP_
|
||||
#include <com/sun/star/lang/XMultiComponentFactory.hpp>
|
||||
#endif
|
||||
#ifndef _COM_SUN_STAR_FRAME_XPOPUPMENUCONTROLLER_HPP_
|
||||
#include <com/sun/star/frame/XPopupMenuController.hpp>
|
||||
#endif
|
||||
#ifndef _COM_SUN_STAR_FRAME_XUICONTROLLERREGISTRATION_HPP_
|
||||
#include <com/sun/star/frame/XUIControllerRegistration.hpp>
|
||||
#endif
|
||||
#ifndef _COM_SUN_STAR_LANG_XSYSTEMDEPENDENT_HPP_
|
||||
#include <com/sun/star/lang/SystemDependent.hpp>
|
||||
#endif
|
||||
#ifndef _COM_SUN_STAR_UI_ITEMTYPE_HPP_
|
||||
#include <com/sun/star/ui/ItemType.hpp>
|
||||
#endif
|
||||
#ifndef _COM_SUN_STAR_UI_IMAGETYPE_HPP_
|
||||
#include <com/sun/star/ui/ImageType.hpp>
|
||||
#endif
|
||||
#ifndef _COM_SUN_STAR_LANG_XSINGLECOMPONENTFACTORY_HPP_
|
||||
#include <com/sun/star/lang/XSingleComponentFactory.hpp>
|
||||
#endif
|
||||
#ifndef _COM_SUN_STAR_CONTAINER_XNAMEACCESS_HPP_
|
||||
#include <com/sun/star/container/XNameAccess.hpp>
|
||||
#endif
|
||||
#ifndef _COM_SUN_STAR_FRAME_XMODULEMANAGER_HPP_
|
||||
#include <com/sun/star/frame/XModuleManager.hpp>
|
||||
#endif
|
||||
#ifndef _COM_SUN_STAR_UI_XMODULEUICONFIGURATIONMANAGERSUPPLIER_HPP_
|
||||
#include <com/sun/star/ui/XModuleUIConfigurationManagerSupplier.hpp>
|
||||
#endif
|
||||
#ifndef _COM_SUN_STAR_UI_XUICONFIGURATIONMANAGERSUPPLIER_HPP_
|
||||
#include <com/sun/star/ui/XUIConfigurationManagerSupplier.hpp>
|
||||
#endif
|
||||
#ifndef _COM_SUN_STAR_FRAME_STATUS_VISIBILITY_HPP_
|
||||
#include <com/sun/star/frame/status/Visibility.hpp>
|
||||
#endif
|
||||
|
||||
//_________________________________________________________________________________________________________________
|
||||
// includes of other projects
|
||||
//_________________________________________________________________________________________________________________
|
||||
|
||||
#ifndef _COMPHELPER_PROCESSFACTORY_HXX_
|
||||
#include <comphelper/processfactory.hxx>
|
||||
#endif
|
||||
#include <comphelper/extract.hxx>
|
||||
#ifndef INCLUDED_SVTOOLS_MENUOPTIONS_HXX
|
||||
#include <svtools/menuoptions.hxx>
|
||||
#endif
|
||||
#ifndef INCLUDED_SVTOOLS_HISTORYOPTIONS_HXX
|
||||
#include <svtools/historyoptions.hxx>
|
||||
#endif
|
||||
#ifndef INCLUDED_SVTOOLS_PATHOPTIONS_HXX
|
||||
#include <svtools/pathoptions.hxx>
|
||||
#endif
|
||||
#ifndef INCLUDED_SVTOOLS_CMDOPTIONS_HXX
|
||||
#include <svtools/cmdoptions.hxx>
|
||||
#endif
|
||||
#ifndef _UNOTOOLS_LOCALFILEHELPER_HXX
|
||||
#include <unotools/localfilehelper.hxx>
|
||||
#endif
|
||||
#ifndef _TOOLKIT_HELPER_VCLUNOHELPER_HXX_
|
||||
#include <toolkit/unohlp.hxx>
|
||||
#endif
|
||||
#ifndef _URLOBJ_HXX
|
||||
#include <tools/urlobj.hxx>
|
||||
#endif
|
||||
#include <vcl/svapp.hxx>
|
||||
#include <vcl/window.hxx>
|
||||
#include <vos/mutex.hxx>
|
||||
#ifndef _SV_SVAPP_HXX
|
||||
#include <vcl/svapp.hxx>
|
||||
#endif
|
||||
#ifndef _OSL_FILE_HXX_
|
||||
#include <osl/file.hxx>
|
||||
#endif
|
||||
#ifndef _CPPUHELPER_IMPLBASE1_HXX_
|
||||
#include <cppuhelper/implbase1.hxx>
|
||||
#endif
|
||||
#ifndef INCLUDED_SVTOOLS_ACCELERATOREXECUTE_HXX
|
||||
#include <svtools/acceleratorexecute.hxx>
|
||||
#endif
|
||||
#ifndef _RTL_LOGFILE_HXX_
|
||||
#include <rtl/logfile.hxx>
|
||||
#endif
|
||||
#ifndef INCLUDED_SVTOOLS_MISCOPT_HXX
|
||||
#include "svtools/miscopt.hxx"
|
||||
#endif
|
||||
#include <classes/addonmenu.hxx>
|
||||
#include <uielement/menubarmerger.hxx>
|
||||
|
||||
|
|
Loading…
Reference in a new issue