diff options
author | Rüdiger Timm <rt@openoffice.org> | 2005-11-11 11:55:02 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2005-11-11 11:55:02 +0000 |
commit | b98a455451428c36e0bdfe425e17e2bbf0650208 (patch) | |
tree | 140cc14f329992f7555051bb7cd9f2289a9f08e1 /framework/inc | |
parent | c01ffffa75c336547bdd30d854903dbd19ff03be (diff) |
INTEGRATION: CWS c06 (1.21.40); FILE MERGED
2005/08/31 14:52:44 cd 1.21.40.2: #i53937# Added support to remove custom button at the end of a toolbar when customization is not allowed
2005/08/23 12:34:03 cd 1.21.40.1: #i53493# Make toolbar state globally custimizable
Diffstat (limited to 'framework/inc')
-rw-r--r-- | framework/inc/services/layoutmanager.hxx | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/framework/inc/services/layoutmanager.hxx b/framework/inc/services/layoutmanager.hxx index a6152bd31aee..cdffff7e366d 100644 --- a/framework/inc/services/layoutmanager.hxx +++ b/framework/inc/services/layoutmanager.hxx @@ -4,9 +4,9 @@ * * $RCSfile: layoutmanager.hxx,v $ * - * $Revision: 1.23 $ + * $Revision: 1.24 $ * - * last change: $Author: hr $ $Date: 2005-10-27 14:01:51 $ + * last change: $Author: rt $ $Date: 2005-11-11 12:55:02 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -204,6 +204,7 @@ class MenuBar; namespace framework { + class GlobalSettings; class LayoutManager : public css::lang::XTypeProvider , public css::lang::XServiceInfo , public ::com::sun::star::frame::XLayoutManager , @@ -563,6 +564,7 @@ namespace framework m_bParentWindowVisible : 1; sal_Bool m_bMustDoLayout : 1, m_bAutomaticToolbars : 1; + sal_Bool m_bGlobalSettings : 1; DockingOperation m_eDockOperation; UIElement m_aDockUIElement; css::awt::Rectangle m_aDockingArea; @@ -579,6 +581,7 @@ namespace framework css::uno::Reference< ::com::sun::star::frame::XStatusListener > m_xMenuBarCloseListener; css::uno::Reference< ::com::sun::star::container::XNameAccess > m_xPersistentWindowState; css::uno::Reference< ::com::sun::star::container::XNameAccess > m_xPersistentWindowStateSupplier; + GlobalSettings* m_pGlobalSettings; rtl::OUString m_aModuleIdentifier; rtl::OUString m_aCustomTbxPrefix; rtl::OUString m_aFullCustomTbxPrefix; @@ -594,6 +597,7 @@ namespace framework rtl::OUString m_aPropUIName; rtl::OUString m_aPropStyle; rtl::OUString m_aPropLocked; + rtl::OUString m_aCustomizeCmd; AddonsOptions* m_pAddonOptions; SvtMiscOptions* m_pMiscOptions; sal_Int16 m_eSymbolSet; |