summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/awt/XTabController.idl
diff options
context:
space:
mode:
authorThomas Benisch <tbe@openoffice.org>2002-09-25 11:12:43 +0000
committerThomas Benisch <tbe@openoffice.org>2002-09-25 11:12:43 +0000
commit1a48a42356804c062a135418c095256e2f052df9 (patch)
treebb1508ab1412bc2f4df1e2083513f2310e41fec2 /offapi/com/sun/star/awt/XTabController.idl
parent3ab10026bd46dd037a128836e64fda833777f22c (diff)
#97297# added documentation
Diffstat (limited to 'offapi/com/sun/star/awt/XTabController.idl')
-rw-r--r--offapi/com/sun/star/awt/XTabController.idl68
1 files changed, 23 insertions, 45 deletions
diff --git a/offapi/com/sun/star/awt/XTabController.idl b/offapi/com/sun/star/awt/XTabController.idl
index 9325d9469694..84bd2ed91495 100644
--- a/offapi/com/sun/star/awt/XTabController.idl
+++ b/offapi/com/sun/star/awt/XTabController.idl
@@ -2,9 +2,9 @@
*
* $RCSfile: XTabController.idl,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: jsc $ $Date: 2001-03-16 16:41:13 $
+ * last change: $Author: tbe $ $Date: 2002-09-25 12:12:43 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -84,63 +84,64 @@
//=============================================================================
-// DocMerge from xml: interface com::sun::star::awt::XTabController
-/** @deprecated
+/** specifies the basic operations for a tab controller.
*/
interface XTabController: com::sun::star::uno::XInterface
{
//-------------------------------------------------------------------------
- // DOCUMENTATION OMITTED FOR XTabController::setModel
- // DocMerge: empty anyway
+ /** sets the tab controller model.
+ */
[oneway] void setModel( [in] com::sun::star::awt::XTabControllerModel Model );
//-------------------------------------------------------------------------
- // DOCUMENTATION OMITTED FOR XTabController::getModel
- // DocMerge: empty anyway
+ /** returns the tab controller model.
+ */
com::sun::star::awt::XTabControllerModel getModel();
//-------------------------------------------------------------------------
- // DOCUMENTATION OMITTED FOR XTabController::setContainer
- // DocMerge: empty anyway
+ /** set the control container.
+ */
[oneway] void setContainer( [in] com::sun::star::awt::XControlContainer Container );
//-------------------------------------------------------------------------
- // DOCUMENTATION OMITTED FOR XTabController::getContainer
- // DocMerge: empty anyway
+ /** returns the control container.
+ */
com::sun::star::awt::XControlContainer getContainer();
//-------------------------------------------------------------------------
- // DOCUMENTATION OMITTED FOR XTabController::getControls
- // DocMerge: empty anyway
+ /** returns all controls of the control container.
+ */
sequence<com::sun::star::awt::XControl> getControls();
//-------------------------------------------------------------------------
- // DOCUMENTATION OMITTED FOR XTabController::autoTabOrder
- // DocMerge: empty anyway
+ /** enables automatic tab order.
+ */
[oneway] void autoTabOrder();
//-------------------------------------------------------------------------
- // DOCUMENTATION OMITTED FOR XTabController::activateTabOrder
- // DocMerge: empty anyway
+ /** activates tab order.
+ */
[oneway] void activateTabOrder();
//-------------------------------------------------------------------------
- // DOCUMENTATION OMITTED FOR XTabController::activateFirst
- // DocMerge: empty anyway
+ /** sets the focus to the first control that can be reached with the
+ TAB key.
+ */
[oneway] void activateFirst();
//-------------------------------------------------------------------------
- // DOCUMENTATION OMITTED FOR XTabController::activateLast
- // DocMerge: empty anyway
+ /** sets the focus to the last control that can be reached with the
+ TAB key.
+ */
[oneway] void activateLast();
};
@@ -149,27 +150,4 @@ interface XTabController: com::sun::star::uno::XInterface
}; }; }; };
-/*=============================================================================
-
- $Log: not supported by cvs2svn $
- Revision 1.3 2000/11/08 12:42:11 mi
- moved from api
-
- Revision 1.1.1.1 2000/09/18 23:34:54 hjs
- initial import
-
- Revision 1.5 2000/09/11 11:52:09 mi
- documentation merged from XML
-
- Revision 1.3 2000/05/16 12:19:54 mi
- documentation
-
- Revision 1.2 2000/02/07 11:24:17 mi
- zu #70728# missing documentation marked
-
- Revision 1.1.1.1 1999/11/11 09:48:40 jsc
- new
-
-
-=============================================================================*/
#endif