diff options
author | Caolán McNamara <caolanm@redhat.com> | 2012-04-01 21:25:49 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2012-04-02 14:53:48 +0100 |
commit | 09bdea8900c5ce79df3e8f2b7fbeeed06a5b4111 (patch) | |
tree | bf8ccafec8f39df52a0b1c595e7c8a355630ac04 /framework/inc | |
parent | 15f14ec79477142cf2bcb1484511b7bea6f1485b (diff) |
remove static objects from static_initialization_and_destruction chain
Diffstat (limited to 'framework/inc')
-rw-r--r-- | framework/inc/services/taskcreatorsrv.hxx | 71 |
1 files changed, 34 insertions, 37 deletions
diff --git a/framework/inc/services/taskcreatorsrv.hxx b/framework/inc/services/taskcreatorsrv.hxx index ebabdd1eb31f..1d7de6c55320 100644 --- a/framework/inc/services/taskcreatorsrv.hxx +++ b/framework/inc/services/taskcreatorsrv.hxx @@ -57,6 +57,40 @@ //_______________________________________________ // definition +/// [XFrame] if it's set, it will be used as parent frame for the new created frame. +const char ARGUMENT_PARENTFRAME[] = "ParentFrame"; // XFrame + +/** [OUString] if it's not a special name (beginning with "_" ... which are not allowed here!) + it will be set as the API name of the new created frame. + */ +const char ARGUMENT_FRAMENAME[] = "FrameName"; // OUString + +/// [sal_Bool] If its set to sal_True we will make the new created frame visible. +const char ARGUMENT_MAKEVISIBLE[] = "MakeVisible"; // sal_Bool + +/** [sal_Bool] If not "ContainerWindow" property is set it force creation of a + top level window as new container window. + */ +const char ARGUMENT_CREATETOPWINDOW[] = "CreateTopWindow"; // sal_Bool + +/// [Rectangle] Place the new created frame on this place and resize the container window. +const char ARGUMENT_POSSIZE[] = "PosSize"; // Rectangle + +/// [XWindow] an outside created window, used as container window of the new created frame. +const char ARGUMENT_CONTAINERWINDOW[] = "ContainerWindow"; // XWindow + +/** [sal_Bool] enable/disable special mode, where this frame will be part of + the persistent window state feature suitable for any office module window + */ +const char ARGUMENT_SUPPORTPERSISTENTWINDOWSTATE[] = "SupportPersistentWindowState"; // sal_Bool + +/** [sal_Bool] enable/disable special mode, where the title bar of our + the new created frame will be updated automaticly. + Default = ON ! + */ +const char ARGUMENT_ENABLE_TITLEBARUPDATE[] = "EnableTitleBarUpdate"; // sal_Bool + + namespace framework { @@ -72,43 +106,6 @@ class TaskCreatorService : public css::lang::XTypeProvider , public ::cppu::OWeakObject { //___________________________________________ - // types - - public: - - /// [XFrame] if it's set, it will be used as parent frame for the new created frame. - static const ::rtl::OUString ARGUMENT_PARENTFRAME; - - /** [OUString] if it's not a special name (beginning with "_" ... which are not allowed here!) - it will be set as the API name of the new created frame. - */ - static const ::rtl::OUString ARGUMENT_FRAMENAME; - - /// [sal_Bool] If its set to sal_True we will make the new created frame visible. - static const ::rtl::OUString ARGUMENT_MAKEVISIBLE; - - /** [sal_Bool] If not "ContainerWindow" property is set it force creation of a - top level window as new container window. - */ - static const ::rtl::OUString ARGUMENT_CREATETOPWINDOW; - - /// [Rectangle] Place the new created frame on this place and resize the container window. - static const ::rtl::OUString ARGUMENT_POSSIZE; - - /// [XWindow] an outside created window, used as container window of the new created frame. - static const ::rtl::OUString ARGUMENT_CONTAINERWINDOW; - - /** [sal_Bool] enable/disable special mode, where this frame will be part of - the persistent window state feature suitable for any office module window - */ - static const ::rtl::OUString ARGUMENT_SUPPORTPERSISTENTWINDOWSTATE; - - /** [sal_Bool] enable/disable special mode, where the title bar of our - the new created frame will be updated automaticly. - Default = ON ! - */ - static const ::rtl::OUString ARGUMENT_ENABLE_TITLEBARUPDATE; - //___________________________________________ // member private: |