The language used by some pre-defined dialogs.
Can have the values ENGLISH and PORTUGUESE. Default: ENGLISH. Can also be set by IupSetLanguage.
Returns the name of IUP's version.
The value follows the "major.minor.micro" format, major referring to broader changes, minor referring to smaller changes, and micro referring to corrections only. Ex.: "1.7.2".
Returns the IUP's copyright.
Ex: "Copyright (C) 1994-2004 Tecgraf/PUC-Rio and PETROBRAS S/A".
Informs the current driver being used.
Two drivers are available now, one for each platform: "GTK", "Motif" and "Win32".
When the last visible dialog is closed the IupExitLoop function is called. To avoid that set LOCKLOOP=YES before hiding the last dialog. Possible values: "YES" or "NO". Default: "NO".
The cursor position in absolute coordinates relative to the upper left corner of the screen. Accept values in the format "XxY", example "200x200". Can be set only in GTK 2.8.
Returns the state of the Shit keys (left and right). Possible values: "ON" or "OFF".
Returns the state of the Control keys (left and right). Possible values: "ON" or "OFF".
Returns the state of the keyboard modifier keys: Shift, Ctrl, Alt and sYs(Win/Apple). In the format of 4 characters: "SCAY". When not pressed the respective letter is replaced by a space " ".
Sends a key press message to the element with the focus. The value is a key code. See the Keyboard Codes table for a list of the possible values.
Sends a key release message to the element with the focus. The value is a key code. See the Keyboard Codes table for a list of the possible values.
Sends a key press and a key release messages to the element with the focus. The value is a key code. See the Keyboard Codes table for a list of the possible values.
Turns on/off ("YES" or "NO") the autorepeat of keyboard keys in the whole system - may be used as an optimization in high performance applications.
GTK uses UTF-8 as its charset for all displayed text, so IUP will automatically convert all strings to (SetAttribute) and from (GetAttribute) UTF-8. Default: YES. If the default locale is already UTF-8, but the given string is not UTF-8 then it will be assumed that the string uses the ISO8859-1 charset.
Return respectively a text with a description of the system language.
Informs the current operating system. On UNIX, it is equivalent to the command "uname -s" (sysname). On Windows, it identifies if you are on Windows 2000, Windows XP or Windows Vista. Some known names:
- "Darwin"
- "FreeBSD"
- "Linux"
- "SunOS"
- "Solaris"
- "IRIX"
- "AIX"
- "HP-UX"
- "Win2K"
- "WinXP"
- "Vista"
- "Win7"
Informs the current operating system version number.
On UNIX, it is equivalent to the command "uname -r" (release). On Windows, it identifies the system version number and service pack version.
Returns the run time version of the GTK toolkit. This is the version being used at the time of the IupOpen function was called by the application.
Returns the development version of the GTK toolkit. This is the version at the time the IUP library was compiled.
Returns the version of the run time Motif.
Returns the number of the Motif Version if full form, e.x: 2.2.3 = "2203".
Returns the hostname.
Returns the user logged in.
X-Windows Server Vendor string.
X-Windows Server Vendor release number.
Returns the full screen size in pixels.
String in the "widthxheight" format.
Returns the screen size in pixels available for dialogs, i.e. not including menu bars, task bars, etc. In Motif has the same value as the FULLSIZE attribute.
String in the "widthxheight" format.
Returns the screen depth in bits per pixel.
Indicates if the display allows creating TrueColor (> 8bpp) IupCanvas controls, even if PseudoColor is the default, i.e. even if SCREENDEPTH<=8 . Returns "YES" or "NO". Usefull in Motif.
Returns the virtual screen position and size in pixels. It is the virtual space defined by all monitors in the system.
String in the "x y width height" format.
Returns the position and size in pixels of all monitors. Each monitor information is terminated by a "\n" character.
String in the "x y width height\nx y width height\n..." format.
This attribute returns a handle (HINSTANCE) that identifies the application in the native system.
This attribute changes and returns a handle (HINSTANCE) that identifies the dll where resources are stored.
Returns the shell Widget created by XtOpenApplication.
Returns the X-Windows Display.
Returns the X-Windows Screen.
The default background color for all elements that have the background similar of the dialog.
The default foreground color for all elements that have text over the background of the dialog or similar. Usually is "0 0 0".
The default menu background color. Usually is "255 255 255".
The default menu foreground color. Usually is "0 0 0".
The default background color for editable text, also used by lists and tree. Usually is "255 255 255".
The default foreground color for editable text, also used by lists and tree. Usually is "0 0 0".
The default font used by all elements, except for menus.
Auxiliar attribute to retrieve and set the default font size used by all elements. It retrieves the size from DEFAULTFONT. When changed will actually change the DEFAULTFONT.