IUP/Controls/IupButton
From Vendetta Lua
Jump to navigationJump to search
Controls |
Dialog |
Creates an interface element that is a button. When selected, this element activates a function in the application. Its visual presentation can contain a text or an image.
Creation
iup.button{title = title: string} -> elem: ihandle
- title: Text to be shown to the user.
- This function returns the identifier of the created button, or nil if an error occurs.
Attributes
- BGCOLOR: Background color of the text.
- FGCOLOR: Text color.
- FONT: Font size of the text.
- IMAGE: Image of the non-pressed button. The button's title (attribute TITLE) is not shown when this attribute is defined.
- IMPRESS: Image of the pressed button.
- IMINACTIVE: Image of the button when the ACTIVE attribute equals "NO". If it is not defined but IMAGE is defined then for inactive buttons the non transparent colors will be replaced by a darker version of the background color creating the disabled effect.
- TITLE: Text of the button.
Callbacks
- ACTION: Action generated when the button 1 (usually left) is selected. This callback is called only after the mouse is released and whe it is released inside the button area.
- BUTTON_CB: Action generated when any mouse button is pressed and released.
- ENTERWINDOWS_CB: Action generated when the mouse enters the button.
- LEAVEWINDOW_CB: Action generated when the mouse leaves the button.
Vendetta Online Templates
iup.stationbutton()
Notes
- Buttons with images or texts can not change its behavior after mapped. This is a creation attribute. But after creation the image can be changed for another image, and the text for another text.
- Text and images are always centered.
- Buttons are activated using Enter or Space keys.
- When IMPRESS and IMAGE are defined together, IUP does not show the element's border to provide a 3D effect; the user has to define the border in the image itself.
- In Windows, when using Windows XP Visual Styles the BGCOLOR attribute is ignored when a non empty text button is created.