blob: 3060d82f18ffdd6614d52231101d532e1221ec90 [file] [log] [blame]
/**************************************************************
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*
*************************************************************/
#ifndef __com_sun_star_awt_InvalidateStyle_idl__
#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.
*/
const short NOCLIPCHILDREN = 16384;
};
//=============================================================================
}; }; }; };
#endif