summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/awt/InvalidateStyle.idl
diff options
context:
space:
mode:
Diffstat (limited to 'offapi/com/sun/star/awt/InvalidateStyle.idl')
-rw-r--r--offapi/com/sun/star/awt/InvalidateStyle.idl10
1 files changed, 0 insertions, 10 deletions
diff --git a/offapi/com/sun/star/awt/InvalidateStyle.idl b/offapi/com/sun/star/awt/InvalidateStyle.idl
index 38f8a2c93e28..8d043c0768c2 100644
--- a/offapi/com/sun/star/awt/InvalidateStyle.idl
+++ b/offapi/com/sun/star/awt/InvalidateStyle.idl
@@ -20,53 +20,44 @@
#define __com_sun_star_awt_InvalidateStyle_idl__
-//=============================================================================
module com { module sun { module star { module awt {
-//=============================================================================
/** specifies how to invalidate windows.
*/
published constants InvalidateStyle
{
- //-------------------------------------------------------------------------
/** The child windows are invalidated, too.
*/
const short CHILDREN = 1;
- //-------------------------------------------------------------------------
/** The child windows are not invalidated.
*/
const short NOCHILDREN = 2;
- //-------------------------------------------------------------------------
/** The invalidated area is painted with the background color/pattern.
*/
const short NOERASE = 4;
- //-------------------------------------------------------------------------
/** The invalidated area is updated immediately.
*/
const short UPDATE = 8;
- //-------------------------------------------------------------------------
/** The parent window is invalidated, too.
*/
const short TRANSPARENT = 16;
- //-------------------------------------------------------------------------
/** The parent window is not invalidated.
*/
const short NOTRANSPARENT = 32;
- //-------------------------------------------------------------------------
/** The area is invalidated regardless of overlapping child windows.
*/
@@ -74,7 +65,6 @@ published constants InvalidateStyle
};
-//=============================================================================
}; }; }; };