IupColorBrowser

Definition: include pGUI.e

Ihandle ih = IupColorBrowser(string attributes="", sequence data={})
Description: Creates an element for selecting a color. The selection is done using a cylindrical projection of the RGB cube.
The transformation defines a coordinate color system called HSI, that is still the RGB color space but using cylindrical coordinates.

H is for Hue, and it is the angle around the RGB cube diagonal starting at red (RGB=255 0 0).

S is for Saturation, and it is the normal distance from the color to the diagonal, normalized by its maximum value at the specified Hue.
This also defines a point at the diagonal used to define I.

I is for Intensity, and it is the distance from the point defined at the diagonal to black (RGB=0 0 0).
I can also be seen as the projection of the color vector onto the diagonal. But I is not linear, see Notes below.

This is an additional control that depends on the CD library. It is included in the IupControls library.

For a dialog that simply returns the selected color, you can use function IupGetColor or IupColorDlg.

For more information on the attributes and data parameters see IupSetAttributes.

Returns: the identifier of the created element.
Notes When the control has the focus the keyboard can be used to change the color value.
Use the arrow keys to move the cursor inside the SI triangle, and use Home(0), PageUp, PageDn and End(180) keys to move the cursor inside the Hue circle.

The Hue in the HSI coordinate system defines a plane that it is a triangle in the RGB cube.
But the maximum saturation in this triangle is different for each Hue because of the geometry of the cube.
In ColorBrowser this point is fixed at the center of the I axis.
So the I axis is not completely linear, it is linear in two parts, one from 0 to 0.5, and another from 0.5 to 1.0.
Although the selected values are linear specified you can notice that when Hue is changed the gray scale also changes, visually compacting values above or below the I=0.5 line according to the selected Hue.

This is the same HSI specified in the IM toolkit, except for the non linearity of I.
This non linearity were introduced so a simple triangle could be used to represent the SI plane.
Attributes:
EXPAND The default is "NO".
RASTERSIZE (non inheritable) the initial size is "181x181". Set to NULL to allow the automatic layout use smaller values.
RGB (non inheritable) the color selected in the control, in the "r g b" format; r, g and b are integers ranging from 0 to 255. Default: "255 0 0".
HSI (non inheritable) the color selected in the control, in the "h s i" format; h, s and i are floating point numbers ranging from 0-360, 0-1 and 0-1 respectively.
also ACTIVE BGCOLOR FONT, SCREENPOSITION, POSITION, MINSIZE, MAXSIZE, WID, TIP, SIZE, ZORDER, VISIBLE: also accepted.
Callbacks:
CHANGE_CB Called when the user releases the left mouse button over the control, defining the selected color.

function change_cb(Ihandle ih, integer r, g, b)
ih: identifier of the element that activated the event.
r, g, b: color value.
DRAG_CB Called several times while the color is being changed by dragging the mouse over the control.

function drag_cb(Ihandle ih, integer r, g, b)
ih: identifier of the element that activated the event.
r, g, b: color value.
VALUECHANGED_CB Called after the value was interactively changed by the user.
It is called whenever a CHANGE_CB or a DRAG_CB would also be called, it is just called after them. (since 3.0)

function value_changed_cb(Ihandle ih)
ih: identifier of the element that activated the event.
also MAP_CB, UNMAP_CB, DESTROY_CB, GETFOCUS_CB, KILLFOCUS_CB, ENTERWINDOW_CB, LEAVEWINDOW_CB, K_ANY, HELP_CB: common callbacks are supported.
Example:

See Also: IupGetColor, IupColorDlg