summaryrefslogtreecommitdiff
path: root/include/framework/addonsoptions.hxx
diff options
context:
space:
mode:
authorAlexander Wilms <f.alexander.wilms@gmail.com>2014-02-25 19:06:16 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-03-01 09:51:32 -0600
commit8792ec7b2129650777b7b4bfacaa7c13d923279b (patch)
treef181e37b61533b460397cc68625fd21f46bb6393 /include/framework/addonsoptions.hxx
parentdff29fadfe418421f2af9fd4f1dccc8a9b4cd545 (diff)
Remove visual noise from include
Conflicts: include/framework/preventduplicateinteraction.hxx include/sfx2/sfxbasecontroller.hxx include/sfx2/sfxbasemodel.hxx include/toolkit/awt/vclxtabpagemodel.hxx include/vcl/field.hxx include/vcl/settings.hxx Change-Id: Ibccf9f88c68267a3d7e656012b51eaf644c418c2 Reviewed-on: https://gerrit.libreoffice.org/8272 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'include/framework/addonsoptions.hxx')
-rw-r--r--include/framework/addonsoptions.hxx62
1 files changed, 31 insertions, 31 deletions
diff --git a/include/framework/addonsoptions.hxx b/include/framework/addonsoptions.hxx
index 49c1cfff2e57..6f0a0d43ff9a 100644
--- a/include/framework/addonsoptions.hxx
+++ b/include/framework/addonsoptions.hxx
@@ -27,11 +27,11 @@
#include <com/sun/star/uno/Sequence.h>
#include <com/sun/star/beans/PropertyValue.hpp>
#include <framework/fwedllapi.h>
-//_________________________________________________________________________________________________________________
+
// types, enums, ...
-//_________________________________________________________________________________________________________________
-/*-************************************************************************************************************//**
+
+/*-************************************************************************************************************
@descr The method GetAddonsMenu() returns a list of property values.
Use follow defines to separate values by names.
*//*-*************************************************************************************************************/
@@ -113,11 +113,11 @@ struct FWE_DLLPUBLIC MergeStatusbarInstruction
typedef ::std::vector< MergeStatusbarInstruction > MergeStatusbarInstructionContainer;
-//_________________________________________________________________________________________________________________
+
// forward declarations
-//_________________________________________________________________________________________________________________
-/*-************************************************************************************************************//**
+
+/*-************************************************************************************************************
@short forward declaration to our private date container implementation
@descr We use these class as internal member to support small memory requirements.
You can create the container if it is necessary. The class which use these mechanism
@@ -126,7 +126,7 @@ typedef ::std::vector< MergeStatusbarInstruction > MergeStatusbarInstructionCont
class AddonsOptions_Impl;
-/*-************************************************************************************************************//**
+/*-************************************************************************************************************
@short collect information about menu features
@descr -
@@ -138,16 +138,16 @@ class AddonsOptions_Impl;
class FWE_DLLPUBLIC AddonsOptions
{
- //-------------------------------------------------------------------------------------------------------------
+
// public methods
- //-------------------------------------------------------------------------------------------------------------
+
public:
- //---------------------------------------------------------------------------------------------------------
+
// constructor / destructor
- //---------------------------------------------------------------------------------------------------------
- /*-****************************************************************************************************//**
+
+ /*-****************************************************************************************************
@short standard constructor and destructor
@descr This will initialize an instance with default values.
We implement these class with a refcount mechanism! Every instance of this class increase it
@@ -166,11 +166,11 @@ class FWE_DLLPUBLIC AddonsOptions
AddonsOptions();
~AddonsOptions();
- //---------------------------------------------------------------------------------------------------------
+
// interface
- //---------------------------------------------------------------------------------------------------------
- /*-****************************************************************************************************//**
+
+ /*-****************************************************************************************************
@short clears completely the addons menu
@descr Call this methods to clear the addons menu
To fill it again use AppendItem().
@@ -185,7 +185,7 @@ class FWE_DLLPUBLIC AddonsOptions
void Clear();
- /*-****************************************************************************************************//**
+ /*-****************************************************************************************************
@short returns if an addons menu is available
@descr Call to retrieve if a addons menu is available
@@ -195,7 +195,7 @@ class FWE_DLLPUBLIC AddonsOptions
sal_Bool HasAddonsMenu() const;
- /*-****************************************************************************************************//**
+ /*-****************************************************************************************************
@short returns number of addons toolbars
@descr Call to retrieve the number of addons toolbars
@@ -204,7 +204,7 @@ class FWE_DLLPUBLIC AddonsOptions
*//*-*****************************************************************************************************/
sal_Int32 GetAddonsToolBarCount() const ;
- /*-****************************************************************************************************//**
+ /*-****************************************************************************************************
@short returns the complete addons menu
@descr Call it to get all entries of the addon menu.
We return a list of all nodes with his names and properties.
@@ -218,7 +218,7 @@ class FWE_DLLPUBLIC AddonsOptions
const ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue > >& GetAddonsMenu() const;
- /*-****************************************************************************************************//**
+ /*-****************************************************************************************************
@short Gets the menu bar part of all addon components registered
@descr -
@@ -231,7 +231,7 @@ class FWE_DLLPUBLIC AddonsOptions
const ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue > >& GetAddonsMenuBarPart() const;
- /*-****************************************************************************************************//**
+ /*-****************************************************************************************************
@short Gets a toolbar part of an single addon
@descr -
@@ -244,7 +244,7 @@ class FWE_DLLPUBLIC AddonsOptions
const ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue > >& GetAddonsToolBarPart( sal_uInt32 nIndex ) const;
- /*-****************************************************************************************************//**
+ /*-****************************************************************************************************
@short Gets a unique toolbar resource name of an single addon
@descr -
@@ -257,7 +257,7 @@ class FWE_DLLPUBLIC AddonsOptions
const OUString GetAddonsToolbarResourceName( sal_uInt32 nIndex ) const;
- /*-****************************************************************************************************//**
+ /*-****************************************************************************************************
@short Retrieves all available merge instructions for the Office menu bar
@descr -
@@ -270,7 +270,7 @@ class FWE_DLLPUBLIC AddonsOptions
const MergeMenuInstructionContainer& GetMergeMenuInstructions() const;
- /*-****************************************************************************************************//**
+ /*-****************************************************************************************************
@short Retrieves all available merge instructions for a single toolbar
@descr -
@@ -282,7 +282,7 @@ class FWE_DLLPUBLIC AddonsOptions
*//*-*****************************************************************************************************/
bool GetMergeToolbarInstructions( const OUString& rToolbarName, MergeToolbarInstructionContainer& rToolbar ) const;
- /*-****************************************************************************************************//**
+ /*-****************************************************************************************************
@short Gets the Add-On help menu part of all addon components registered
@descr -
@@ -296,7 +296,7 @@ class FWE_DLLPUBLIC AddonsOptions
const MergeStatusbarInstructionContainer& GetMergeStatusbarInstructions() const;
- /*-****************************************************************************************************//**
+ /*-****************************************************************************************************
@short Retrieve an image for a command URL which is defined inside the addon menu configuration
@descr Call it to retrieve an image for a command URL which is defined inside the addon menu configuration
@@ -311,11 +311,11 @@ class FWE_DLLPUBLIC AddonsOptions
Image GetImageFromURL( const OUString& aURL, sal_Bool bBig, sal_Bool bNoScale ) const;
Image GetImageFromURL( const OUString& aURL, sal_Bool bBig ) const;
- //-------------------------------------------------------------------------------------------------------------
+
// private methods
- //-------------------------------------------------------------------------------------------------------------
- /*-****************************************************************************************************//**
+
+ /*-****************************************************************************************************
@short return a reference to a static mutex
@descr These class is partially threadsafe (for de-/initialization only).
All access methods are'nt safe!
@@ -331,7 +331,7 @@ class FWE_DLLPUBLIC AddonsOptions
static ::osl::Mutex& GetOwnStaticMutex();
- /*-****************************************************************************************************//**
+ /*-****************************************************************************************************
@short return a reference to a static mutex
@descr These class is partially threadsafe (for de-/initialization only).
All access methods are'nt safe!
@@ -346,9 +346,9 @@ class FWE_DLLPUBLIC AddonsOptions
*//*-*****************************************************************************************************/
DECL_STATIC_LINK( AddonsOptions, Notify, void* );
- //-------------------------------------------------------------------------------------------------------------
+
// private member
- //-------------------------------------------------------------------------------------------------------------
+
private: