diff options
author | Kurt Zenker <kz@openoffice.org> | 2010-09-03 14:39:55 +0200 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2010-09-03 14:39:55 +0200 |
commit | 8c29f37b193ac59d62879b0303a997f09613e1db (patch) | |
tree | 9a9dbef589f65fa6e2833428f82d0d339d2d5ca2 | |
parent | cc5a3d40b7cdff142fa9301826adc8d14200fa3e (diff) | |
parent | 58eb2da91ae8c4deffee16b67f54319ba9088ddb (diff) |
CWS-TOOLING: integrate CWS fs33a
Notes
Notes:
split repo tag: ure_ooo/OOO330_m7
-rw-r--r-- | offapi/com/sun/star/awt/UnoControlComboBoxModel.idl | 6 | ||||
-rw-r--r-- | offapi/com/sun/star/awt/UnoControlListBoxModel.idl | 11 |
2 files changed, 17 insertions, 0 deletions
diff --git a/offapi/com/sun/star/awt/UnoControlComboBoxModel.idl b/offapi/com/sun/star/awt/UnoControlComboBoxModel.idl index 83057417edbf..eedd7b78c346 100644 --- a/offapi/com/sun/star/awt/UnoControlComboBoxModel.idl +++ b/offapi/com/sun/star/awt/UnoControlComboBoxModel.idl @@ -39,6 +39,7 @@ #include <com/sun/star/util/Color.idl> #endif +#include <com/sun/star/awt/XItemList.idl> //============================================================================= @@ -225,6 +226,11 @@ published service UnoControlComboBoxModel this is possible.</p> */ [optional, property] short MouseWheelBehavior; + + /** allows mmanipulating the list of items in the combo box more fine-grained than the + <member>StringItemList</member> property. + */ + [optional] interface XItemList; }; //============================================================================= diff --git a/offapi/com/sun/star/awt/UnoControlListBoxModel.idl b/offapi/com/sun/star/awt/UnoControlListBoxModel.idl index 1cd36de93231..1ecf338bf095 100644 --- a/offapi/com/sun/star/awt/UnoControlListBoxModel.idl +++ b/offapi/com/sun/star/awt/UnoControlListBoxModel.idl @@ -213,8 +213,19 @@ published service UnoControlListBoxModel /** allows mmanipulating the list of items in the list box more fine-grained than the <member>StringItemList</member> property. + + @since OOo 3.3 */ [optional] interface XItemList; + + /** specifies where an item separator - a horizontal line - is drawn. + + <p>If this is not <NULL/>, then a horizontal line will be drawn between the item at the given position, + and the following item.</p> + + @since OOo 3.3 + */ + [optional, property, maybevoid] short ItemSeparatorPos; }; //============================================================================= |