/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /************************************************************************* * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 * only, as published by the Free Software Foundation. * * OpenOffice.org is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License version 3 for more details * (a copy is included in the LICENSE file that accompanied this code). * * You should have received a copy of the GNU Lesser General Public License * version 3 along with OpenOffice.org. If not, see * * for a copy of the LGPLv3 License. * ************************************************************************/ #ifndef __com_sun_star_ui_ItemStyle_idl__ #define __com_sun_star_ui_ItemStyle_idl__ //============================================================================= module com { module sun { module star { module ui { /** specifies styles which influence the appearance and the behavior of an user interface item.

These styles are only valid if the item describes a toolbar or statusbar item. The style values can be combined with the OR operator. Styles which are not valid for an item will be ignored by the implementation.
There are two styles where only one value is valid: Alignment:

Drawing:

@since OOo 2.0 */ constants ItemStyle { //------------------------------------------------------------------------- /** specifies how the output of the item is aligned in the bounding box of the user interface element.

This style is only valid for an item which describes a statusbar item. Draw item with a left aligned output.

*/ const short ALIGN_LEFT = 1; /** specifies how the output of the item is aligned in the bounding box of the user interface element.

This style is only valid for an item which describes a statusbar item. Draw item with a centered aligned output.

*/ const short ALIGN_CENTER = 2; /** specifies how the output of the item is aligned in the bounding box of the user interface element.

This style is only valid for an item which describes a statusbar item. Draw item with a right aligned output.

*/ const short ALIGN_RIGHT = 3; //------------------------------------------------------------------------- /** specifies how the implementation should draw the item.

This style is only valid for an item which describes a statusbar item. Draw item with an embossed 3D effect.

*/ const short DRAW_OUT3D = 4; /** specifies how the implementation should draw the item.

This style is only valid for an item which describes a statusbar item. Draw item with an impressed 3D effect.

*/ const short DRAW_IN3D = 8; /** specifies how the implementation should draw the item.

This style is only valid for an item which describes a statusbar item. Draw item without an 3D effect.

*/ const short DRAW_FLAT = 12; //------------------------------------------------------------------------- /** specifies whether or not a item is displayed using an external function.

This style is only valid if the item describes a statusbar item.

*/ const short OWNER_DRAW = 16; //------------------------------------------------------------------------- /** specifies whether or not the size of the item is set automatically by the parent user interface element.

This style is only valid if the item describes a toolbar or statusbar item.

*/ const short AUTO_SIZE = 32; //------------------------------------------------------------------------- /** determines whether the item unchecks neighbor entries which have also this style set.

This style is only valid if the item describes a toolbar item.

*/ const short RADIO_CHECK = 64; //------------------------------------------------------------------------- /** specifies if an icon is placed on left side of the text, like an entry in a taskbar.

This style is only valid if the item describes a toolbar item and visible if style of the toolbar is set to symboltext.

This style can also be used for custom toolbars and menus, in a custom toolbar an item's Style setting can used to override the toolbar container setting, the style can be bitwise OR-ed with TEXT to define text, text+icon or icon only is to be displayed. Similarly for menu items, an items Style can override the application setting to display either text or icon ( note: for menu an icon only setting interpreted as icon+text )

*/ const short ICON = 128; //------------------------------------------------------------------------- /** specifies that the item supports a dropdown menu or toolbar for additional functions.

This style is only valid if the item describes a toolbar item.

*/ const short DROP_DOWN = 256; //------------------------------------------------------------------------- /** indicates that the item continues to execute the command while you click and hold the mouse button.

This style is only valid if the item describes a toolbar item.

*/ const short REPEAT = 512; //------------------------------------------------------------------------- /** indicates that the item only supports a dropdown menu or toolbar for additional functions. There is no function on the button itself.

This style is only valid if the item describes a toolbar item.

*/ const short DROPDOWN_ONLY = 1024; /** indicates if icon, text or text+icon is displayed for the item.

This style can be used for custom toolbars and menus, in a custom toolbar an item's Style setting can used to override the toolbar container setting, the style can be bitwise OR-ed with ICON to define text, text+icon or icon only is to be displayed. Similarly for menu items, an items Style can override the application setting to display either text or icon ( note: for menu an icon only setting interpreted as icon+text )

*/ const short TEXT = 2048; }; }; }; }; }; #endif /* vim:set shiftwidth=4 softtabstop=4 expandtab: */