summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--extensions/source/propctrlr/formcontroller.cxx10
-rw-r--r--extensions/source/propctrlr/formmetadata.cxx17
-rw-r--r--extensions/source/propctrlr/formmetadata.hxx13
-rw-r--r--extensions/source/propctrlr/formres.src42
-rw-r--r--extensions/source/propctrlr/formresid.hrc14
-rw-r--r--extensions/source/propctrlr/formstrings.hxx13
6 files changed, 97 insertions, 12 deletions
diff --git a/extensions/source/propctrlr/formcontroller.cxx b/extensions/source/propctrlr/formcontroller.cxx
index 4f39f8cfb10f..5563cb021c79 100644
--- a/extensions/source/propctrlr/formcontroller.cxx
+++ b/extensions/source/propctrlr/formcontroller.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: formcontroller.cxx,v $
*
- * $Revision: 1.17 $
+ * $Revision: 1.18 $
*
- * last change: $Author: tbe $ $Date: 2001-04-26 09:14:59 $
+ * last change: $Author: tbe $ $Date: 2001-05-02 12:41:49 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -534,6 +534,7 @@ namespace pcr
case PROPERTY_ID_BUTTONTYPE:
case PROPERTY_ID_SUBMIT_METHOD:
case PROPERTY_ID_SUBMIT_ENCODING:
+ case PROPERTY_ID_ORIENTATION:
{
if (m_pPropertyInfo)
{
@@ -723,6 +724,7 @@ namespace pcr
case PROPERTY_ID_BUTTONTYPE:
case PROPERTY_ID_SUBMIT_METHOD:
case PROPERTY_ID_SUBMIT_ENCODING:
+ case PROPERTY_ID_ORIENTATION:
if (m_pPropertyInfo)
{
Sequence< ::rtl::OUString > aEnumStrings = m_pPropertyInfo->getPropertyEnumRepresentations(_nPropId);
@@ -2248,6 +2250,7 @@ namespace pcr
case PROPERTY_ID_TARGET_FRAME:
case PROPERTY_ID_DEFAULT_CHECKED:
case PROPERTY_ID_LISTSOURCETYPE:
+ case PROPERTY_ID_ORIENTATION:
{
Sequence< ::rtl::OUString > aEnumValues = m_pPropertyInfo->getPropertyEnumRepresentations(nPropId);
const ::rtl::OUString* pStart = aEnumValues.getConstArray();
@@ -2778,6 +2781,9 @@ namespace pcr
/*************************************************************************
* history:
* $Log: not supported by cvs2svn $
+ * Revision 1.17 2001/04/26 09:14:59 tbe
+ * colortable for fillcolor
+ *
* Revision 1.16 2001/04/26 06:32:03 fs
* #86017# limit the decimal accuracy to 20
*
diff --git a/extensions/source/propctrlr/formmetadata.cxx b/extensions/source/propctrlr/formmetadata.cxx
index 36f9ab766348..a026d25b4665 100644
--- a/extensions/source/propctrlr/formmetadata.cxx
+++ b/extensions/source/propctrlr/formmetadata.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: formmetadata.cxx,v $
*
- * $Revision: 1.9 $
+ * $Revision: 1.10 $
*
- * last change: $Author: tbe $ $Date: 2001-04-26 09:15:46 $
+ * last change: $Author: tbe $ $Date: 2001-05-02 12:42:03 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -202,6 +202,13 @@ namespace pcr
OPropertyInfoImpl(PROPERTY_PROGRESSVALUE_MIN, PROPERTY_ID_PROGRESSVALUE_MIN, sal_True, String(ModuleRes(RID_STR_PROGRESSVALUE_MIN)),nPos++, 0),
OPropertyInfoImpl(PROPERTY_PROGRESSVALUE_MAX, PROPERTY_ID_PROGRESSVALUE_MAX, sal_True, String(ModuleRes(RID_STR_PROGRESSVALUE_MAX)),nPos++, 0),
+ OPropertyInfoImpl(PROPERTY_SCROLLVALUE, PROPERTY_ID_SCROLLVALUE, sal_True, String(ModuleRes(RID_STR_SCROLLVALUE)), nPos++, 0),
+ OPropertyInfoImpl(PROPERTY_SCROLLVALUE_MAX, PROPERTY_ID_SCROLLVALUE_MAX, sal_True, String(ModuleRes(RID_STR_SCROLLVALUE_MAX)), nPos++, 0),
+ OPropertyInfoImpl(PROPERTY_LINEINCREMENT, PROPERTY_ID_LINEINCREMENT, sal_True, String(ModuleRes(RID_STR_LINEINCREMENT)), nPos++, 0),
+ OPropertyInfoImpl(PROPERTY_BLOCKINCREMENT, PROPERTY_ID_BLOCKINCREMENT, sal_True, String(ModuleRes(RID_STR_BLOCKINCREMENT)), nPos++, 0),
+ OPropertyInfoImpl(PROPERTY_VISIBLESIZE, PROPERTY_ID_VISIBLESIZE, sal_True, String(ModuleRes(RID_STR_VISIBLESIZE)), nPos++, 0),
+ OPropertyInfoImpl(PROPERTY_ORIENTATION, PROPERTY_ID_ORIENTATION, sal_True, String(ModuleRes(RID_STR_ORIENTATION)), nPos++, 0),
+
OPropertyInfoImpl(PROPERTY_CLASSID, PROPERTY_ID_CLASSID, sal_False, String(ModuleRes(RID_STR_CLASSID)), nPos++, HID_PROP_CLASSID),
OPropertyInfoImpl(PROPERTY_HEIGHT, PROPERTY_ID_HEIGHT, sal_True, String(ModuleRes(RID_STR_HEIGHT)), nPos++, HID_PROP_HEIGHT),
OPropertyInfoImpl(PROPERTY_WIDTH, PROPERTY_ID_WIDTH, sal_True, String(ModuleRes(RID_STR_WIDTH)), nPos++, HID_PROP_WIDTH),
@@ -348,6 +355,9 @@ namespace pcr
case PROPERTY_ID_TARGET_FRAME:
sSeparatedList = String(ModuleRes(RID_STR_ENUM_SUBMIT_TARGET));
break;
+ case PROPERTY_ID_ORIENTATION:
+ sSeparatedList = String(ModuleRes(RID_STR_ENUM_ORIENTATION));
+ break;
}
sal_Int32 nTokens = sSeparatedList.GetTokenCount(';');
@@ -479,6 +489,9 @@ namespace pcr
/*************************************************************************
* history:
* $Log: not supported by cvs2svn $
+ * Revision 1.9 2001/04/26 09:15:46 tbe
+ * added progressbar properties
+ *
* Revision 1.8 2001/03/07 14:34:44 tbe
* added step property
*
diff --git a/extensions/source/propctrlr/formmetadata.hxx b/extensions/source/propctrlr/formmetadata.hxx
index 9fa85262a02c..ae6f4b89c786 100644
--- a/extensions/source/propctrlr/formmetadata.hxx
+++ b/extensions/source/propctrlr/formmetadata.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: formmetadata.hxx,v $
*
- * $Revision: 1.7 $
+ * $Revision: 1.8 $
*
- * last change: $Author: tbe $ $Date: 2001-04-26 09:15:54 $
+ * last change: $Author: tbe $ $Date: 2001-05-02 12:42:11 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -236,6 +236,12 @@ namespace pcr
#define PROPERTY_ID_PROGRESSVALUE 103
#define PROPERTY_ID_PROGRESSVALUE_MIN 104
#define PROPERTY_ID_PROGRESSVALUE_MAX 105
+ #define PROPERTY_ID_SCROLLVALUE 106
+ #define PROPERTY_ID_SCROLLVALUE_MAX 107
+ #define PROPERTY_ID_LINEINCREMENT 108
+ #define PROPERTY_ID_BLOCKINCREMENT 109
+ #define PROPERTY_ID_VISIBLESIZE 110
+ #define PROPERTY_ID_ORIENTATION 111
//............................................................................
} // namespace pcr
@@ -246,6 +252,9 @@ namespace pcr
/*************************************************************************
* history:
* $Log: not supported by cvs2svn $
+ * Revision 1.7 2001/04/26 09:15:54 tbe
+ * added progressbar properties
+ *
* Revision 1.6 2001/03/07 14:35:42 tbe
* added step property
*
diff --git a/extensions/source/propctrlr/formres.src b/extensions/source/propctrlr/formres.src
index 607143ee984a..ce6b08784bef 100644
--- a/extensions/source/propctrlr/formres.src
+++ b/extensions/source/propctrlr/formres.src
@@ -2,9 +2,9 @@
*
* $RCSfile: formres.src,v $
*
- * $Revision: 1.15 $
+ * $Revision: 1.16 $
*
- * last change: $Author: tbe $ $Date: 2001-04-26 09:16:13 $
+ * last change: $Author: tbe $ $Date: 2001-05-02 12:42:31 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -4071,9 +4071,47 @@ String RID_STR_PROGRESSVALUE_MAX
Text = "Max. Fortschrittswert" ;
Text [ ENGLISH ] = "Progress value max." ;
};
+String RID_STR_SCROLLVALUE
+{
+ Text = "Scrollwert" ;
+ Text [ ENGLISH ] = "Scroll value" ;
+};
+String RID_STR_SCROLLVALUE_MAX
+{
+ Text = "Max. Scrollwert" ;
+ Text [ ENGLISH ] = "Scroll value max." ;
+};
+String RID_STR_LINEINCREMENT
+{
+ Text = "Linienzunahme" ;
+ Text [ ENGLISH ] = "Line increment" ;
+};
+String RID_STR_BLOCKINCREMENT
+{
+ Text = "Blockzunahme" ;
+ Text [ ENGLISH ] = "Block increment" ;
+};
+String RID_STR_VISIBLESIZE
+{
+ Text = "Sichtbare Größe" ;
+ Text [ ENGLISH ] = "Visible size" ;
+};
+String RID_STR_ORIENTATION
+{
+ Text = "Orientierung" ;
+ Text [ ENGLISH ] = "Orientation" ;
+};
+String RID_STR_ENUM_ORIENTATION
+{
+ Text = "Horizontal;Vertikal" ;
+ Text [ English ] = "Horizontal;Vertical" ;
+};
/*************************************************************************
* history:
* $Log: not supported by cvs2svn $
+ * Revision 1.15 2001/04/26 09:16:13 tbe
+ * added progressbar properties
+ *
* Revision 1.14 2001/04/17 10:06:29 fs
* grammar
*
diff --git a/extensions/source/propctrlr/formresid.hrc b/extensions/source/propctrlr/formresid.hrc
index 3042d8d0fad4..9ae30256f469 100644
--- a/extensions/source/propctrlr/formresid.hrc
+++ b/extensions/source/propctrlr/formresid.hrc
@@ -2,9 +2,9 @@
*
* $RCSfile: formresid.hrc,v $
*
- * $Revision: 1.8 $
+ * $Revision: 1.9 $
*
- * last change: $Author: tbe $ $Date: 2001-04-26 09:16:25 $
+ * last change: $Author: tbe $ $Date: 2001-05-02 12:42:58 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -233,6 +233,13 @@
#define RID_STR_PROGRESSVALUE ( RID_FORMBROWSER_START + 171 )
#define RID_STR_PROGRESSVALUE_MIN ( RID_FORMBROWSER_START + 172 )
#define RID_STR_PROGRESSVALUE_MAX ( RID_FORMBROWSER_START + 173 )
+#define RID_STR_SCROLLVALUE ( RID_FORMBROWSER_START + 174 )
+#define RID_STR_SCROLLVALUE_MAX ( RID_FORMBROWSER_START + 175 )
+#define RID_STR_LINEINCREMENT ( RID_FORMBROWSER_START + 176 )
+#define RID_STR_BLOCKINCREMENT ( RID_FORMBROWSER_START + 177 )
+#define RID_STR_VISIBLESIZE ( RID_FORMBROWSER_START + 178 )
+#define RID_STR_ORIENTATION ( RID_FORMBROWSER_START + 179 )
+#define RID_STR_ENUM_ORIENTATION ( RID_FORMBROWSER_START + 180 )
// -----------------------------------------------------------------------
@@ -277,6 +284,9 @@
/*************************************************************************
* history:
* $Log: not supported by cvs2svn $
+ * Revision 1.8 2001/04/26 09:16:25 tbe
+ * added progressbar properties
+ *
* Revision 1.7 2001/03/21 15:38:39 fs
* #82696# new font dialog
*
diff --git a/extensions/source/propctrlr/formstrings.hxx b/extensions/source/propctrlr/formstrings.hxx
index 2bb46c2ca0e7..db65510fbf11 100644
--- a/extensions/source/propctrlr/formstrings.hxx
+++ b/extensions/source/propctrlr/formstrings.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: formstrings.hxx,v $
*
- * $Revision: 1.7 $
+ * $Revision: 1.8 $
*
- * last change: $Author: tbe $ $Date: 2001-04-26 09:16:34 $
+ * last change: $Author: tbe $ $Date: 2001-05-02 12:43:12 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -245,6 +245,12 @@ namespace pcr
PCR_CONSTASCII_STRING( PROPERTY_PROGRESSVALUE, "ProgressValue");
PCR_CONSTASCII_STRING( PROPERTY_PROGRESSVALUE_MIN, "ProgressValueMin");
PCR_CONSTASCII_STRING( PROPERTY_PROGRESSVALUE_MAX, "ProgressValueMax");
+ PCR_CONSTASCII_STRING( PROPERTY_SCROLLVALUE, "ScrollValue");
+ PCR_CONSTASCII_STRING( PROPERTY_SCROLLVALUE_MAX, "ScrollValueMax");
+ PCR_CONSTASCII_STRING( PROPERTY_LINEINCREMENT, "LineIncrement");
+ PCR_CONSTASCII_STRING( PROPERTY_BLOCKINCREMENT, "BlockIncrement");
+ PCR_CONSTASCII_STRING( PROPERTY_VISIBLESIZE, "VisibleSize");
+ PCR_CONSTASCII_STRING( PROPERTY_ORIENTATION, "Orientation");
// services
PCR_CONSTASCII_STRING( SERVICE_COMPONENT_GROUPBOX, "com.sun.star.form.component.GroupBox");
@@ -261,6 +267,9 @@ namespace pcr
/*************************************************************************
* history:
* $Log: not supported by cvs2svn $
+ * Revision 1.7 2001/04/26 09:16:34 tbe
+ * added progressbar properties
+ *
* Revision 1.6 2001/03/21 15:40:37 fs
* #82696# +FontWordLineMode
*