Difference between revisions of "Widgets"
(→Custom render interface) |
(→Custom render interface) |
||
Line 34: | Line 34: | ||
== Custom render interface == | == Custom render interface == | ||
− | Every widget provides a custom render interface. This simple and easy to use interface allows to render each widget as | + | Every widget provides a custom render interface. This simple and easy to use interface allows to render each widget as want. This is what you're looking for if you want to improve the look of your GUI. See [[Creating a custom rendering routine]]. |
== API reference == | == API reference == |
Revision as of 16:23, 21 June 2015
Note: Make sure you read the window article first!
The widget class is based on the window. In addition to the window functionalities, it implements the following features:
- Widgets can always redraw themselves
- Widgets are able to accept user input such as from a touchscreen/toggle/dial/keyboard
- Widgets can have their drawing routine overwritten to provide fancier versions of the object. For example, their are predefined drawing routines for round buttons, image buttons, arrow buttons etc. along with the normal button drawing routine.
- Widgets support a "style". By changing the style you can affect the colors used to draw the widget similar to the way you can apply color schemes in Windows and Linux.
A list with descriptions of the common container API can be found here.
Contents
Initialization
If widgets are used, a default font and a default styling have to be selected:
gwinSetDefaultFont(gdispOpenFont("DejaVu Sans 16")); // Select your font gwinSetDefaultStyle(&WhiteWidgetStyle, FALSE); // Select the widget style
Widget creation
Each widget provides a creation call with is named gwinXxxCreate()
where Xxx is the name of the widget. The first parameter is either a pointer to a static widget object or NULL. If NULL, the object will be allocated dynamically from the heap.
The second parameter is a pointer to a GWidgetInit
struct. This struct contains all the attributes which are needed to create the widget (position, size, font, colors...):
typedef struct GWidgetInit { GWindowInit g; // The GWIN initializer const char* text; // The initial text CustomWidgetDrawFunction customDraw; // A custom draw function - use NULL for the standard void* customParam; // A parameter for the custom draw function (default = NULL) const GWidgetStyle* customStyle; // A custom style to use - use NULL for the default style } GWidgetInit;
As the widget class is based on the window class, the widget initialization structure contains a window initialization structure. See window creation to learn more about the window initialization structure.
Examples on how to use this struct correctly can be found on each widget documentation page.
gwinDestroy()
can be used to destroy a window that is no longer needed.
Custom render interface
Every widget provides a custom render interface. This simple and easy to use interface allows to render each widget as want. This is what you're looking for if you want to improve the look of your GUI. See Creating a custom rendering routine.
API reference
The generic widget API reference can be found here.
Widget implementations
These are the currently implemented widgets: