summaryrefslogtreecommitdiff
path: root/framework/inc/properties.h
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2008-04-04 13:09:08 +0000
committerKurt Zenker <kz@openoffice.org>2008-04-04 13:09:08 +0000
commit9bac17dda52aba6b280d1de7699e9c3e7b9cd64e (patch)
tree83720a87f542e02b5a8e9ee09126355de130b1a9 /framework/inc/properties.h
parent4e7e737c111698f32c8b81e2a73f828db02c60ef (diff)
INTEGRATION: CWS titles02 (1.13.174); FILE MERGED
2008/02/12 13:27:15 as 1.13.174.2: RESYNC: (1.13-1.14); FILE MERGED 2007/10/17 08:10:02 as 1.13.174.1: #116375# improve title generation; make autorecovery working (related to titles)
Diffstat (limited to 'framework/inc/properties.h')
-rw-r--r--framework/inc/properties.h23
1 files changed, 19 insertions, 4 deletions
diff --git a/framework/inc/properties.h b/framework/inc/properties.h
index 5ba932776382..36ba1afff36b 100644
--- a/framework/inc/properties.h
+++ b/framework/inc/properties.h
@@ -4,9 +4,9 @@
*
* $RCSfile: properties.h,v $
*
- * $Revision: 1.14 $
+ * $Revision: 1.15 $
*
- * last change: $Author: obo $ $Date: 2008-01-04 16:20:44 $
+ * last change: $Author: kz $ $Date: 2008-04-04 14:09:08 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -39,9 +39,8 @@
//_______________________________________________
// includes
-#ifndef __FRAMEWORK_MACROS_GENERIC_HXX_
#include <macros/generic.hxx>
-#endif
+#include <general.h>
//_______________________________________________
// namespace
@@ -253,8 +252,12 @@ namespace framework{
/** properties for office module config (Setup.xcu) */
#define OFFICEFACTORY_PROPNAME_ASCII_WINDOWATTRIBUTES "ooSetupFactoryWindowAttributes"
+#define OFFICEFACTORY_PROPNAME_ASCII_UINAME "ooSetupFactoryUIName"
+#define OFFICEFACTORY_PROPNAME_ASCII_ICON "ooSetupFactoryIcon"
#define OFFICEFACTORY_PROPNAME_WINDOWATTRIBUTES ::rtl::OUString::createFromAscii( OFFICEFACTORY_PROPNAME_ASCII_WINDOWATTRIBUTES )
+#define OFFICEFACTORY_PROPNAME_UINAME ::rtl::OUString::createFromAscii( OFFICEFACTORY_PROPNAME_ASCII_UINAME )
+#define OFFICEFACTORY_PROPNAME_ICON ::rtl::OUString::createFromAscii( OFFICEFACTORY_PROPNAME_ASCII_ICON )
//_______________________________________________
/** properties for tab window */
@@ -268,6 +271,18 @@ namespace framework{
#define TABWINDOW_PROPCOUNT 2
//_______________________________________________
+/** properties of tabreg service */
+static const char* TABREG_PROPNAME_ASCII_TITLE = "title";
+
+static const ::rtl::OUString TABREG_PROPNAME_TITLE = ::rtl::OUString::createFromAscii(TABREG_PROPNAME_ASCII_TITLE);
+
+//_______________________________________________
+/** properties of controller service */
+static const char* CONTROLLER_PROPNAME_ASCII_ICONID = "IconId";
+
+static const ::rtl::OUString CONTROLLER_PROPNAME_ICONID = ::rtl::OUString::createFromAscii(CONTROLLER_PROPNAME_ASCII_ICONID);
+
+//_______________________________________________
/** provides some helper methods to implement property sets. */
class PropHelper