summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/awt/XProgressBar.idl
diff options
context:
space:
mode:
Diffstat (limited to 'offapi/com/sun/star/awt/XProgressBar.idl')
-rw-r--r--offapi/com/sun/star/awt/XProgressBar.idl8
1 files changed, 0 insertions, 8 deletions
diff --git a/offapi/com/sun/star/awt/XProgressBar.idl b/offapi/com/sun/star/awt/XProgressBar.idl
index 18e6c6137f1c..c863a3731aa4 100644
--- a/offapi/com/sun/star/awt/XProgressBar.idl
+++ b/offapi/com/sun/star/awt/XProgressBar.idl
@@ -24,29 +24,24 @@
#include <com/sun/star/util/Color.idl>
-//=============================================================================
module com { module sun { module star { module awt {
-//=============================================================================
/** gives access to the value and settings of a progress bar.
*/
published interface XProgressBar: com::sun::star::uno::XInterface
{
- //-------------------------------------------------------------------------
/** sets the foreground color (RGB) of the control.
*/
[oneway] void setForegroundColor( [in] com::sun::star::util::Color Color );
- //-------------------------------------------------------------------------
/** sets the background color (RGB) of the control.
*/
[oneway] void setBackgroundColor( [in] com::sun::star::util::Color Color );
- //-------------------------------------------------------------------------
/** sets the minimum and the maximum progress value of the progress bar.
@@ -56,13 +51,11 @@ published interface XProgressBar: com::sun::star::uno::XInterface
[oneway] void setRange( [in] long Min,
[in] long Max );
- //-------------------------------------------------------------------------
/** sets the progress value of the progress bar.
*/
[oneway] void setValue( [in] long Value );
- //-------------------------------------------------------------------------
/** returns the current progress value of the progress bar.
*/
@@ -70,7 +63,6 @@ published interface XProgressBar: com::sun::star::uno::XInterface
};
-//=============================================================================
}; }; }; };