libui-ng
A portable GUI library for C
ui.h
Go to the documentation of this file.
1// 6 april 2015
2
3// TODO add a uiVerifyControlType() function that can be used by control implementations to verify controls
4
5// TODOs
6// - make getters that return whether something exists accept a NULL pointer to discard the value (and thus only return that the thing exists?)
7// - const-correct everything
8// - normalize documentation between typedefs and structs
9
20#ifndef __LIBUI_UI_H__
21#define __LIBUI_UI_H__
22
23#include <stddef.h>
24#include <stdint.h>
25
26#ifdef __cplusplus
27extern "C" {
28#endif
29
30// this macro is defined by the build system
31#ifdef libui_EXPORTS
32#ifdef _WIN32
33#define _UI_EXTERN __declspec(dllexport) extern
34#else
35#define _UI_EXTERN __attribute__((visibility("default"))) extern
36#endif
37#else
38// TODO add __declspec(dllimport) on windows, but only if not static
39#define _UI_EXTERN extern
40#endif
41
42// C++ is really really really really really really dumb about enums, so screw that and just make them anonymous
43// This has the advantage of being ABI-able should we ever need an ABI...
44#define _UI_ENUM(s) typedef unsigned int s; enum
45
46// This constant is provided because M_PI is nonstandard.
47// This comes from Go's math.Pi, which in turn comes from http://oeis.org/A000796.
48#define uiPi 3.14159265358979323846264338327950288419716939937510582097494459
49
50// TODO uiBool?
51
52// uiForEach represents the return value from one of libui's various ForEach functions.
56};
57
59
61 size_t Size;
62};
63
69_UI_EXTERN const char *uiVersion(void);
70
71_UI_EXTERN const char *uiInit(uiInitOptions *options);
73_UI_EXTERN void uiFreeInitError(const char *err);
74
75_UI_EXTERN void uiMain(void);
77_UI_EXTERN int uiMainStep(int wait);
78_UI_EXTERN void uiQuit(void);
79
80_UI_EXTERN void uiQueueMain(void (*f)(void *data), void *data);
81
82// uiTimer() must be called on the main UI thread after uiInit() and before uiUninit().
83// milliseconds must be greater than 0, and f must not be NULL.
84// Timer callbacks run on the main UI thread. Return 0 from f to stop the timer;
85// return non-zero to keep it running. uiUninit() cancels any active timers.
86// Timer timing, including granularity and the first tick, is OS-defined.
87// uiQueueMain() may be called from other threads. To quit from another thread,
88// queue uiQuit() with uiQueueMain() instead of calling uiQuit() directly.
89_UI_EXTERN void uiTimer(int milliseconds, int (*f)(void *data), void *data);
90
91_UI_EXTERN void uiOnShouldQuit(int (*f)(void *data), void *data);
92
93
103_UI_EXTERN void uiFreeText(char *text);
104
105
111typedef struct uiControl uiControl;
112struct uiControl {
113 uint32_t Signature;
114 uint32_t OSSignature;
116 void (*Destroy)(uiControl *);
117 uintptr_t (*Handle)(uiControl *);
118 uiControl *(*Parent)(uiControl *);
122 void (*Show)(uiControl *);
123 void (*Hide)(uiControl *);
125 void (*Enable)(uiControl *);
126 void (*Disable)(uiControl *);
127};
128// TODO add argument names to all arguments
129#define uiControl(this) ((uiControl *) (this))
130
147
163 void (*f)(uiControl *c, void *data), void *data);
164
173
182
192
201
210
218
227
238
246
254
264_UI_EXTERN uiControl *uiAllocControl(size_t n, uint32_t OSsig, uint32_t typesig, const char *typenamestr);
265
275
285
298
299// TODO Move this to private API? According to old/new.md this should be used by toplevel controls.
301
302
318typedef struct uiWindow uiWindow;
319#define uiWindow(this) ((uiWindow *) (this))
320
331
342_UI_EXTERN void uiWindowSetTitle(uiWindow *w, const char *title);
343
355_UI_EXTERN void uiWindowPosition(uiWindow *w, int *x, int *y);
356
369
384 void (*f)(uiWindow *sender, void *senderData), void *data);
385
395_UI_EXTERN void uiWindowContentSize(uiWindow *w, int *width, int *height);
396
407_UI_EXTERN void uiWindowSetContentSize(uiWindow *w, int width, int height);
408
417
427
442 void (*f)(uiWindow *sender, void *senderData), void *data);
443
460 int (*f)(uiWindow *sender, void *senderData), void *data);
461
475 void (*f)(uiWindow *sender, void *senderData), void *data);
476
485
494
504
513
522
533
542
552
565_UI_EXTERN uiWindow *uiNewWindow(const char *title, int width, int height, int hasMenubar);
566
567
575typedef struct uiButton uiButton;
576#define uiButton(this) ((uiButton *) (this))
577
588
598_UI_EXTERN void uiButtonSetText(uiButton *b, const char *text);
599
613 void (*f)(uiButton *sender, void *senderData), void *data);
614
624_UI_EXTERN uiButton *uiNewButton(const char *text);
625
626
639typedef struct uiBox uiBox;
640#define uiBox(this) ((uiBox *) (this))
641
653_UI_EXTERN void uiBoxAppend(uiBox *b, uiControl *child, int stretchy);
654
663
672_UI_EXTERN void uiBoxDelete(uiBox *b, int index);
673
684
695_UI_EXTERN void uiBoxSetPadded(uiBox *b, int padded);
696
706
716
717
725typedef struct uiCheckbox uiCheckbox;
726#define uiCheckbox(this) ((uiCheckbox *) (this))
727
738
748_UI_EXTERN void uiCheckboxSetText(uiCheckbox *c, const char *text);
749
764 void (*f)(uiCheckbox *sender, void *senderData), void *data);
765
774
783
794
795
803typedef struct uiEntry uiEntry;
804#define uiEntry(this) ((uiEntry *) (this))
805
816
826_UI_EXTERN void uiEntrySetText(uiEntry *e, const char *text);
827
841 void (*f)(uiEntry *sender, void *senderData), void *data);
842
851
859_UI_EXTERN void uiEntrySetReadOnly(uiEntry *e, int readonly);
860
868
878
889
890
898typedef struct uiLabel uiLabel;
899#define uiLabel(this) ((uiLabel *) (this))
900
911
921_UI_EXTERN void uiLabelSetText(uiLabel *l, const char *text);
922
932_UI_EXTERN uiLabel *uiNewLabel(const char *text);
933
934
945typedef struct uiTab uiTab;
946#define uiTab(this) ((uiTab *) (this))
947
956
967
982 void (*f)(uiTab *sender, void *senderData), void *data);
983
994_UI_EXTERN void uiTabAppend(uiTab *t, const char *name, uiControl *c);
995
1007_UI_EXTERN void uiTabInsertAt(uiTab *t, const char *name, int index, uiControl *c);
1008
1017_UI_EXTERN void uiTabDelete(uiTab *t, int index);
1018
1027
1036_UI_EXTERN int uiTabMargined(uiTab *t, int index);
1037
1048_UI_EXTERN void uiTabSetMargined(uiTab *t, int index, int margined);
1049
1057
1058
1072typedef struct uiGroup uiGroup;
1073#define uiGroup(this) ((uiGroup *) (this))
1074
1085
1095_UI_EXTERN void uiGroupSetTitle(uiGroup *g, const char *title);
1096
1105
1114
1125
1135_UI_EXTERN uiGroup *uiNewGroup(const char *title);
1136
1137
1153typedef struct uiSpinbox uiSpinbox;
1154#define uiSpinbox(this) ((uiSpinbox *) (this))
1155
1164
1174
1189 void (*f)(uiSpinbox *sender, void *senderData), void *data);
1190
1206
1207
1222typedef struct uiSlider uiSlider;
1223#define uiSlider(this) ((uiSlider *) (this))
1224
1233
1242
1251
1260
1275 void (*f)(uiSlider *sender, void *senderData), void *data);
1276
1290 void (*f)(uiSlider *sender, void *senderData), void *data);
1291
1303_UI_EXTERN void uiSliderSetRange(uiSlider *s, int min, int max);
1304
1320
1321
1332#define uiProgressBar(this) ((uiProgressBar *) (this))
1333
1342
1357
1365
1366
1375#define uiSeparator(this) ((uiSeparator *) (this))
1376
1384
1392
1393
1402typedef struct uiCombobox uiCombobox;
1403#define uiCombobox(this) ((uiCombobox *) (this))
1404
1414_UI_EXTERN void uiComboboxAppend(uiCombobox *c, const char *text);
1415
1426_UI_EXTERN void uiComboboxInsertAt(uiCombobox *c, int index, const char *text);
1427
1439
1447
1456
1465
1474
1490 void (*f)(uiCombobox *sender, void *senderData), void *data);
1491
1499
1500
1514#define uiEditableCombobox(this) ((uiEditableCombobox *) (this))
1515
1526
1540
1551
1552// TODO what do we call a function that sets the currently selected item and fills the text field with it?
1553// editable comboboxes have no consistent concept of selected item
1554
1569 void (*f)(uiEditableCombobox *sender, void *senderData), void *data);
1570
1578
1579
1588#define uiRadioButtons(this) ((uiRadioButtons *) (this))
1589
1600
1609
1618
1633 void (*f)(uiRadioButtons *sender, void *senderData), void *data);
1634
1642
1643struct tm;
1661#define uiDateTimePicker(this) ((uiDateTimePicker *) (this))
1662
1672
1683
1698 void (*f)(uiDateTimePicker *sender, void *senderData), void *data);
1699
1707
1715
1723
1724
1734#define uiMultilineEntry(this) ((uiMultilineEntry *) (this))
1735
1746
1757
1768
1784 void (*f)(uiMultilineEntry *sender, void *senderData), void *data);
1785
1794
1803
1811
1821
1822
1829typedef struct uiMenuItem uiMenuItem;
1830#define uiMenuItem(this) ((uiMenuItem *) (this))
1831
1839
1849
1864 void (*f)(uiMenuItem *sender, uiWindow *window, void *senderData), void *data);
1865
1876
1887
1916typedef struct uiMenu uiMenu;
1917#define uiMenu(this) ((uiMenu *) (this))
1918
1930
1942
1952
1962
1972
1980
1992_UI_EXTERN uiMenu *uiNewMenu(const char *name);
1993
1994
2007
2020
2036
2051_UI_EXTERN void uiMsgBox(uiWindow *parent, const char *title, const char *description);
2052
2068_UI_EXTERN void uiMsgBoxError(uiWindow *parent, const char *title, const char *description);
2069
2076typedef struct uiArea uiArea;
2081
2083
2086 // Resizing causes a full redraw for non-scrolling areas; redraw behavior
2087 // for scrolling areas is implementation-defined.
2089 // TODO document that on first show if the mouse is already in the uiArea then one gets sent with left=0
2090 // TODO what about when the area is hidden and then shown again?
2091 void (*MouseCrossed)(uiAreaHandler *, uiArea *, int left);
2094};
2095
2096// TODO RTL layouts?
2097// TODO reconcile edge and corner naming
2107 // TODO have one for keyboard resizes?
2108 // GDK doesn't seem to have any others, including for keyboards.
2109 // TODO way to bring up the system menu instead?
2110};
2111
2112#define uiArea(this) ((uiArea *) (this))
2113
2123_UI_EXTERN void uiAreaSetSize(uiArea *a, int width, int height);
2124
2132
2148_UI_EXTERN void uiAreaScrollTo(uiArea *a, double x, double y, double width, double height);
2149// These functions can only be called within MouseEvent callbacks with Down != 0.
2150// TODO should these be allowed on scrolling areas?
2151// TODO what happens to events after calling this up to and including the next mouse up?
2156
2159
2160 // These fields are only defined for non-scrolling areas.
2163
2164 double ClipX;
2165 double ClipY;
2168};
2169
2170typedef struct uiDrawPath uiDrawPath;
2174
2176
2182};
2183
2188};
2189
2194};
2195
2196// this is the default for botoh cairo and Direct2D (in the latter case, from the C++ helper functions)
2197// Core Graphics doesn't explicitly specify a default, but NSBezierPath allows you to choose one, and this is the initial value
2198// so we're good to use it too!
2199#define uiDrawDefaultMiterLimit 10.0
2200
2204};
2205
2207 double M11;
2208 double M12;
2209 double M21;
2210 double M22;
2211 double M31;
2212 double M32;
2213};
2214
2217
2218 // solid brushes
2219 double R;
2220 double G;
2221 double B;
2222 double A;
2223
2224 // gradient brushes
2225 double X0; // linear: start X, radial: start X
2226 double Y0; // linear: start Y, radial: start Y
2227 double X1; // linear: end X, radial: outer circle center X
2228 double Y1; // linear: end Y, radial: outer circle center Y
2229 double OuterRadius; // radial gradients only
2231 size_t NumStops;
2232 // TODO extend mode
2233 // cairo: none, repeat, reflect, pad; no individual control
2234 // Direct2D: repeat, reflect, pad; no individual control
2235 // Core Graphics: none, pad; before and after individually
2236 // TODO cairo documentation is inconsistent about pad
2237
2238 // TODO images
2239
2240 // TODO transforms
2241};
2242
2244 double Pos;
2245 double R;
2246 double G;
2247 double B;
2248 double A;
2249};
2250
2254 // must be greater than 0
2257 // must not be NULL if NumDashes is greater than 0
2258 double *Dashes;
2259 // TODO what if this is 1 on Direct2D?
2260 // TODO what if a dash is 0 on Cairo or Quartz?
2263};
2264
2267
2268_UI_EXTERN void uiDrawPathNewFigure(uiDrawPath *p, double x, double y);
2269_UI_EXTERN void uiDrawPathNewFigureWithArc(uiDrawPath *p, double xCenter, double yCenter, double radius, double startAngle, double sweep, int negative);
2270_UI_EXTERN void uiDrawPathLineTo(uiDrawPath *p, double x, double y);
2271// notes: angles are both relative to 0 and go counterclockwise
2272// TODO is the initial line segment on cairo and OS X a proper join?
2273// TODO what if sweep < 0?
2274_UI_EXTERN void uiDrawPathArcTo(uiDrawPath *p, double xCenter, double yCenter, double radius, double startAngle, double sweep, int negative);
2275_UI_EXTERN void uiDrawPathBezierTo(uiDrawPath *p, double c1x, double c1y, double c2x, double c2y, double endX, double endY);
2276// TODO quadratic bezier
2278
2279// TODO effect of these when a figure is already started
2280_UI_EXTERN void uiDrawPathAddRectangle(uiDrawPath *p, double x, double y, double width, double height);
2281
2284
2287
2288// TODO primitives:
2289// - rounded rectangles
2290// - elliptical arcs
2291// - quadratic bezier curves
2292
2294_UI_EXTERN void uiDrawMatrixTranslate(uiDrawMatrix *m, double x, double y);
2295_UI_EXTERN void uiDrawMatrixScale(uiDrawMatrix *m, double xCenter, double yCenter, double x, double y);
2296_UI_EXTERN void uiDrawMatrixRotate(uiDrawMatrix *m, double x, double y, double amount);
2297_UI_EXTERN void uiDrawMatrixSkew(uiDrawMatrix *m, double x, double y, double xamount, double yamount);
2303
2305
2306// TODO add a uiDrawPathStrokeToFill() or something like that
2308
2311
2312// uiAttribute stores information about an attribute in a
2313// uiAttributedString.
2314//
2315// You do not create uiAttributes directly; instead, you create a
2316// uiAttribute of a given type using the specialized constructor
2317// functions. For every Unicode codepoint in the uiAttributedString,
2318// at most one value of each attribute type can be applied.
2319//
2320// uiAttributes are immutable and the uiAttributedString takes
2321// ownership of the uiAttribute object once assigned, copying its
2322// contents as necessary.
2323// TODO define whether all this, for both uiTableValue and uiAttribute, is undefined behavior or a caught error
2325
2326// @role uiAttribute destructor
2327// uiFreeAttribute() frees a uiAttribute. You generally do not need to
2328// call this yourself, as uiAttributedString does this for you. In fact,
2329// it is an error to call this function on a uiAttribute that has been
2330// given to a uiAttributedString. You can call this, however, if you
2331// created a uiAttribute that you aren't going to use later.
2333
2334// uiAttributeType holds the possible uiAttribute types that may be
2335// returned by uiAttributeGetType(). Refer to the documentation for
2336// each type's constructor function for details on each type.
2348};
2349
2350// uiAttributeGetType() returns the type of a.
2351// TODO I don't like this name
2353
2354// uiNewFamilyAttribute() creates a new uiAttribute that changes the
2355// font family of the text it is applied to. family is copied; you do not
2356// need to keep it alive after uiNewFamilyAttribute() returns. Font
2357// family names are case-insensitive.
2359
2360// uiAttributeFamily() returns the font family stored in a. The
2361// returned string is owned by a. It is an error to call this on a
2362// uiAttribute that does not hold a font family.
2364
2365// uiNewSizeAttribute() creates a new uiAttribute that changes the
2366// size of the text it is applied to, in typographical points.
2368
2369// uiAttributeSize() returns the font size stored in a. It is an error to
2370// call this on a uiAttribute that does not hold a font size.
2372
2373// uiTextWeight represents possible text weights. These roughly
2374// map to the OS/2 text weight field of TrueType and OpenType
2375// fonts, or to CSS weight numbers. The named constants are
2376// nominal values; the actual values may vary by font and by OS,
2377// though this isn't particularly likely. Any value between
2378// uiTextWeightMinimum and uiTextWeightMaximum, inclusive,
2379// is allowed.
2380//
2381// Note that due to restrictions in early versions of Windows, some
2382// fonts have "special" weights be exposed in many programs as
2383// separate font families. This is perhaps most notable with
2384// Arial Black. libui does not do this, even on Windows (because the
2385// DirectWrite API libui uses on Windows does not do this); to
2386// specify Arial Black, use family Arial and weight uiTextWeightBlack.
2401};
2402
2403// uiNewWeightAttribute() creates a new uiAttribute that changes the
2404// weight of the text it is applied to. It is an error to specify a weight
2405// outside the range [uiTextWeightMinimum,
2406// uiTextWeightMaximum].
2408
2409// uiAttributeWeight() returns the font weight stored in a. It is an error
2410// to call this on a uiAttribute that does not hold a font weight.
2412
2413// uiTextItalic represents possible italic modes for a font. Italic
2414// represents "true" italics where the slanted glyphs have custom
2415// shapes, whereas oblique represents italics that are merely slanted
2416// versions of the normal glyphs. Most fonts usually have one or the
2417// other.
2422};
2423
2424// uiNewItalicAttribute() creates a new uiAttribute that changes the
2425// italic mode of the text it is applied to. It is an error to specify an
2426// italic mode not specified in uiTextItalic.
2428
2429// uiAttributeItalic() returns the font italic mode stored in a. It is an
2430// error to call this on a uiAttribute that does not hold a font italic
2431// mode.
2433
2434// uiTextStretch represents possible stretches (also called "widths")
2435// of a font.
2436//
2437// Note that due to restrictions in early versions of Windows, some
2438// fonts have "special" stretches be exposed in many programs as
2439// separate font families. This is perhaps most notable with
2440// Arial Condensed. libui does not do this, even on Windows (because
2441// the DirectWrite API libui uses on Windows does not do this); to
2442// specify Arial Condensed, use family Arial and stretch
2443// uiTextStretchCondensed.
2454};
2455
2456// uiNewStretchAttribute() creates a new uiAttribute that changes the
2457// stretch of the text it is applied to. It is an error to specify a strech
2458// not specified in uiTextStretch.
2460
2461// uiAttributeStretch() returns the font stretch stored in a. It is an
2462// error to call this on a uiAttribute that does not hold a font stretch.
2464
2465// uiNewColorAttribute() creates a new uiAttribute that changes the
2466// color of the text it is applied to. It is an error to specify an invalid
2467// color.
2468_UI_EXTERN uiAttribute *uiNewColorAttribute(double r, double g, double b, double a);
2469
2470// uiAttributeColor() returns the text color stored in a. It is an
2471// error to call this on a uiAttribute that does not hold a text color.
2472_UI_EXTERN void uiAttributeColor(const uiAttribute *a, double *r, double *g, double *b, double *alpha);
2473
2474// uiNewBackgroundAttribute() creates a new uiAttribute that
2475// changes the background color of the text it is applied to. It is an
2476// error to specify an invalid color.
2477_UI_EXTERN uiAttribute *uiNewBackgroundAttribute(double r, double g, double b, double a);
2478
2479// TODO reuse uiAttributeColor() for background colors, or make a new function...
2480
2481// uiUnderline specifies a type of underline to use on text.
2486 uiUnderlineSuggestion, // wavy or dotted underlines used for spelling/grammar checkers
2487};
2488
2489// uiNewUnderlineAttribute() creates a new uiAttribute that changes
2490// the type of underline on the text it is applied to. It is an error to
2491// specify an underline type not specified in uiUnderline.
2493
2494// uiAttributeUnderline() returns the underline type stored in a. It is
2495// an error to call this on a uiAttribute that does not hold an underline
2496// style.
2498
2499// uiUnderlineColor specifies the color of any underline on the text it
2500// is applied to, regardless of the type of underline. In addition to
2501// being able to specify a custom color, you can explicitly specify
2502// platform-specific colors for suggestion underlines; to use them
2503// correctly, pair them with uiUnderlineSuggestion (though they can
2504// be used on other types of underline as well).
2505//
2506// If an underline type is applied but no underline color is
2507// specified, the text color is used instead. If an underline color
2508// is specified without an underline type, the underline color
2509// attribute is ignored, but not removed from the uiAttributedString.
2514 uiUnderlineColorAuxiliary, // for instance, the color used by smart replacements on macOS or in Microsoft Office
2515};
2516
2517// uiNewUnderlineColorAttribute() creates a new uiAttribute that
2518// changes the color of the underline on the text it is applied to.
2519// It is an error to specify an underline color not specified in
2520// uiUnderlineColor.
2521//
2522// If the specified color type is uiUnderlineColorCustom, it is an
2523// error to specify an invalid color value. Otherwise, the color values
2524// are ignored and should be specified as zero.
2525_UI_EXTERN uiAttribute *uiNewUnderlineColorAttribute(uiUnderlineColor u, double r, double g, double b, double a);
2526
2527// uiAttributeUnderlineColor() returns the underline color stored in
2528// a. It is an error to call this on a uiAttribute that does not hold an
2529// underline color.
2530_UI_EXTERN void uiAttributeUnderlineColor(const uiAttribute *a, uiUnderlineColor *u, double *r, double *g, double *b, double *alpha);
2531
2532// uiOpenTypeFeatures represents a set of OpenType feature
2533// tag-value pairs, for applying OpenType features to text.
2534// OpenType feature tags are four-character codes defined by
2535// OpenType that cover things from design features like small
2536// caps and swashes to language-specific glyph shapes and
2537// beyond. Each tag may only appear once in any given
2538// uiOpenTypeFeatures instance. Each value is a 32-bit integer,
2539// often used as a Boolean flag, but sometimes as an index to choose
2540// a glyph shape to use.
2541//
2542// If a font does not support a certain feature, that feature will be
2543// ignored. (TODO verify this on all OSs)
2544//
2545// See the OpenType specification at
2546// https://www.microsoft.com/typography/otspec/featuretags.htm
2547// for the complete list of available features, information on specific
2548// features, and how to use them.
2549// TODO invalid features
2551
2552// uiOpenTypeFeaturesForEachFunc is the type of the function
2553// invoked by uiOpenTypeFeaturesForEach() for every OpenType
2554// feature in otf. Refer to that function's documentation for more
2555// details.
2556typedef uiForEach (*uiOpenTypeFeaturesForEachFunc)(const uiOpenTypeFeatures *otf, char a, char b, char c, char d, uint32_t value, void *data);
2557
2558// @role uiOpenTypeFeatures constructor
2559// uiNewOpenTypeFeatures() returns a new uiOpenTypeFeatures
2560// instance, with no tags yet added.
2562
2563// @role uiOpenTypeFeatures destructor
2564// uiFreeOpenTypeFeatures() frees otf.
2566
2567// uiOpenTypeFeaturesClone() makes a copy of otf and returns it.
2568// Changing one will not affect the other.
2570
2571// uiOpenTypeFeaturesAdd() adds the given feature tag and value
2572// to otf. The feature tag is specified by a, b, c, and d. If there is
2573// already a value associated with the specified tag in otf, the old
2574// value is removed.
2575_UI_EXTERN void uiOpenTypeFeaturesAdd(uiOpenTypeFeatures *otf, char a, char b, char c, char d, uint32_t value);
2576
2577// uiOpenTypeFeaturesRemove() removes the given feature tag
2578// and value from otf. If the tag is not present in otf,
2579// uiOpenTypeFeaturesRemove() does nothing.
2580_UI_EXTERN void uiOpenTypeFeaturesRemove(uiOpenTypeFeatures *otf, char a, char b, char c, char d);
2581
2582// uiOpenTypeFeaturesGet() determines whether the given feature
2583// tag is present in otf. If it is, *value is set to the tag's value and
2584// nonzero is returned. Otherwise, zero is returned.
2585//
2586// Note that if uiOpenTypeFeaturesGet() returns zero, value isn't
2587// changed. This is important: if a feature is not present in a
2588// uiOpenTypeFeatures, the feature is NOT treated as if its
2589// value was zero anyway. Script-specific font shaping rules and
2590// font-specific feature settings may use a different default value
2591// for a feature. You should likewise not treat a missing feature as
2592// having a value of zero either. Instead, a missing feature should
2593// be treated as having some unspecified default value.
2594_UI_EXTERN int uiOpenTypeFeaturesGet(const uiOpenTypeFeatures *otf, char a, char b, char c, char d, uint32_t *value);
2595
2596// uiOpenTypeFeaturesForEach() executes f for every tag-value
2597// pair in otf. The enumeration order is unspecified. You cannot
2598// modify otf while uiOpenTypeFeaturesForEach() is running.
2600
2601// uiNewFeaturesAttribute() creates a new uiAttribute that changes
2602// the font family of the text it is applied to. otf is copied; you may
2603// free it after uiNewFeaturesAttribute() returns.
2605
2606// uiAttributeFeatures() returns the OpenType features stored in a.
2607// The returned uiOpenTypeFeatures object is owned by a. It is an
2608// error to call this on a uiAttribute that does not hold OpenType
2609// features.
2611
2612// uiAttributedString represents a string of UTF-8 text that can
2613// optionally be embellished with formatting attributes. libui
2614// provides the list of formatting attributes, which cover common
2615// formatting traits like boldface and color as well as advanced
2616// typographical features provided by OpenType like superscripts
2617// and small caps. These attributes can be combined in a variety of
2618// ways.
2619//
2620// Attributes are applied to runs of Unicode codepoints in the string.
2621// Zero-length runs are elided. Consecutive runs that have the same
2622// attribute type and value are merged. Each attribute is independent
2623// of each other attribute; overlapping attributes of different types
2624// do not split each other apart, but different values of the same
2625// attribute type do.
2626//
2627// The empty string can also be represented by uiAttributedString,
2628// but because of the no-zero-length-attribute rule, it will not have
2629// attributes.
2630//
2631// A uiAttributedString takes ownership of all attributes given to
2632// it, as it may need to duplicate or delete uiAttribute objects at
2633// any time. By extension, when you free a uiAttributedString,
2634// all uiAttributes within will also be freed. Each method will
2635// describe its own rules in more details.
2636//
2637// In addition, uiAttributedString provides facilities for moving
2638// between grapheme clusters, which represent a character
2639// from the point of view of the end user. The cursor of a text editor
2640// is always placed on a grapheme boundary, so you can use these
2641// features to move the cursor left or right by one "character".
2642// TODO does uiAttributedString itself need this
2643//
2644// uiAttributedString does not provide enough information to be able
2645// to draw itself onto a uiDrawContext or respond to user actions.
2646// In order to do that, you'll need to use a uiDrawTextLayout, which
2647// is built from the combination of a uiAttributedString and a set of
2648// layout-specific properties.
2650
2651// uiAttributedStringForEachAttributeFunc is the type of the function
2652// invoked by uiAttributedStringForEachAttribute() for every
2653// attribute in s. Refer to that function's documentation for more
2654// details.
2655typedef uiForEach (*uiAttributedStringForEachAttributeFunc)(const uiAttributedString *s, const uiAttribute *a, size_t start, size_t end, void *data);
2656
2657// @role uiAttributedString constructor
2658// uiNewAttributedString() creates a new uiAttributedString from
2659// initialString. The string will be entirely unattributed.
2661
2662// @role uiAttributedString destructor
2663// uiFreeAttributedString() destroys the uiAttributedString s.
2664// It will also free all uiAttributes within.
2666
2667// uiAttributedStringString() returns the textual content of s as a
2668// '\0'-terminated UTF-8 string. The returned pointer is valid until
2669// the next change to the textual content of s.
2671
2672// uiAttributedStringLength() returns the number of UTF-8 bytes in
2673// the textual content of s, excluding the terminating '\0'.
2675
2676// uiAttributedStringAppendUnattributed() adds the '\0'-terminated
2677// UTF-8 string str to the end of s. The new substring will be
2678// unattributed.
2680
2681// uiAttributedStringInsertAtUnattributed() adds the '\0'-terminated
2682// UTF-8 string str to s at the byte position specified by at. The new
2683// substring will be unattributed; existing attributes will be moved
2684// along with their text.
2686
2687// TODO add the Append and InsertAtExtendingAttributes functions
2688// TODO and add functions that take a string + length
2689
2690// uiAttributedStringDelete() deletes the characters and attributes of
2691// s in the byte range [start, end).
2692_UI_EXTERN void uiAttributedStringDelete(uiAttributedString *s, size_t start, size_t end);
2693
2694// TODO add a function to uiAttributedString to get an attribute's value at a specific index or in a specific range, so we can edit
2695
2696// uiAttributedStringSetAttribute() sets a in the byte range [start, end)
2697// of s. Any existing attributes in that byte range of the same type are
2698// removed. s takes ownership of a; you should not use it after
2699// uiAttributedStringSetAttribute() returns.
2701
2702// uiAttributedStringForEachAttribute() enumerates all the
2703// uiAttributes in s in an unspecified order. It is an error to modify s
2704// in f. Within f, s still owns the attribute; you can neither free it nor
2705// save it for later use.
2706// TODO reword the above for consistency and clarify the intended meaning
2708
2709// TODO const correct this somehow (the implementation needs to mutate the structure)
2711
2712// TODO const correct this somehow (the implementation needs to mutate the structure)
2714
2715// TODO const correct this somehow (the implementation needs to mutate the structure)
2717
2718// uiFontDescriptor provides a complete description of a font where
2719// one is needed. Currently, this means as the default font of a
2720// uiDrawTextLayout and as the data returned by uiFontButton.
2721// All the members operate like the respective uiAttributes.
2723
2725 // TODO const-correct this or figure out how to deal with this when getting a value
2726 char *Family;
2727 double Size;
2731};
2732
2742
2758
2759// uiDrawTextLayout is a concrete representation of a
2760// uiAttributedString that can be displayed in a uiDrawContext.
2761// It includes information important for the drawing of a block of
2762// text, including the bounding box to wrap the text within, the
2763// alignment of lines of text within that box, areas to mark as
2764// being selected, and other things.
2765//
2766// Unlike uiAttributedString, the content of a uiDrawTextLayout is
2767// immutable once it has been created.
2768//
2769// TODO talk about OS-specific differences with text drawing that libui can't account for...
2771
2772// uiDrawTextAlign specifies the alignment of lines of text in a
2773// uiDrawTextLayout.
2774// TODO should this really have Draw in the name?
2779};
2780
2781// uiDrawTextLayoutParams describes a uiDrawTextLayout.
2782// DefaultFont is used to render any text that is not attributed
2783// sufficiently in String. Width determines the width of the bounding
2784// box of the text; the height is determined automatically.
2786
2787// TODO const-correct this somehow
2791 double Width;
2793};
2794
2795// @role uiDrawTextLayout constructor
2796// uiDrawNewTextLayout() creates a new uiDrawTextLayout from
2797// the given parameters.
2798//
2799// TODO
2800// - allow creating a layout out of a substring
2801// - allow marking compositon strings
2802// - allow marking selections, even after creation
2803// - add the following functions:
2804// - uiDrawTextLayoutHeightForWidth() (returns the height that a layout would need to be to display the entire string at a given width)
2805// - uiDrawTextLayoutRangeForSize() (returns what substring would fit in a given size)
2806// - uiDrawTextLayoutNewWithHeight() (limits amount of string used by the height)
2807// - some function to fix up a range (for text editing)
2809
2810// @role uiDrawFreeTextLayout destructor
2811// uiDrawFreeTextLayout() frees tl. The underlying
2812// uiAttributedString is not freed.
2814
2815// uiDrawText() draws tl in c with the top-left point of tl at (x, y).
2816_UI_EXTERN void uiDrawText(uiDrawContext *c, uiDrawTextLayout *tl, double x, double y);
2817
2818// uiDrawTextLayoutExtents() returns the width and height of tl
2819// in width and height. The returned width may be smaller than
2820// the width passed into uiDrawNewTextLayout() depending on
2821// how the text in tl is wrapped. Therefore, you can use this
2822// function to get the actual size of the text layout.
2823_UI_EXTERN void uiDrawTextLayoutExtents(uiDrawTextLayout *tl, double *width, double *height);
2824
2825// TODO metrics functions
2826
2827// TODO number of lines visible for clipping rect, range visible for clipping rect?
2828
2829
2841#define uiFontButton(this) ((uiFontButton *) (this))
2842
2854
2868 void (*f)(uiFontButton *sender, void *senderData), void *data);
2869
2879
2890
2900 uiModifierAlt = 1 << 1,
2903};
2904
2905// Mouse input is captured after a button press until all buttons are released.
2906// DragBroken is called if that capture is lost unexpectedly.
2908 // Coordinates in the area's drawing space, including the scroll offset for
2909 // scrolling areas.
2910 double X;
2911 double Y;
2912
2913 // These fields are only defined for non-scrolling areas.
2916
2917 int Down;
2918 int Up;
2919
2921
2923
2924 uint64_t Held1To64;
2925};
2926
2929 uiExtKeyInsert, // equivalent to "Help" on Apple keyboards
2939 uiExtKeyF1, // F1..F12 are guaranteed to be consecutive
2951 uiExtKeyN0, // numpad keys; independent of Num Lock state
2952 uiExtKeyN1, // N0..N9 are guaranteed to be consecutive
2967};
2968
2970 char Key;
2973
2975
2976 int Up;
2977};
2978
2979
2993#define uiColorButton(this) ((uiColorButton *) (this))
2994
3005_UI_EXTERN void uiColorButtonColor(uiColorButton *b, double *r, double *g, double *bl, double *a);
3006
3017_UI_EXTERN void uiColorButtonSetColor(uiColorButton *b, double r, double g, double bl, double a);
3018
3032 void (*f)(uiColorButton *sender, void *senderData), void *data);
3033
3041
3042
3058typedef struct uiForm uiForm;
3059#define uiForm(this) ((uiForm *) (this))
3060
3075_UI_EXTERN void uiFormAppend(uiForm *f, const char *label, uiControl *c, int stretchy);
3076
3084
3093_UI_EXTERN void uiFormDelete(uiForm *f, int index);
3094
3105
3116_UI_EXTERN void uiFormSetPadded(uiForm *f, int padded);
3117
3125
3126
3138};
3139
3151};
3152
3174typedef struct uiGrid uiGrid;
3175#define uiGrid(this) ((uiGrid *) (this))
3176
3192_UI_EXTERN void uiGridAppend(uiGrid *g, uiControl *c, int left, int top, int xspan, int yspan, int hexpand, uiAlign halign, int vexpand, uiAlign valign);
3193
3209_UI_EXTERN void uiGridInsertAt(uiGrid *g, uiControl *c, uiControl *existing, uiAt at, int xspan, int yspan, int hexpand, uiAlign halign, int vexpand, uiAlign valign);
3210
3219
3230
3241_UI_EXTERN void uiGridSetPadded(uiGrid *g, int padded);
3242
3250
3251
3272typedef struct uiImage uiImage;
3273
3287_UI_EXTERN uiImage *uiNewImage(double width, double height);
3288
3298
3314_UI_EXTERN void uiImageAppend(uiImage *i, const void *pixels, int pixelWidth, int pixelHeight, int byteStride);
3315
3365
3380
3393};
3394
3403
3414
3427
3444
3458
3472
3483
3494_UI_EXTERN uiTableValue *uiNewTableValueColor(double r, double g, double b, double a);
3495
3508_UI_EXTERN void uiTableValueColor(const uiTableValue *v, double *r, double *g, double *b, double *a);
3509
3510
3524
3547
3572
3580
3585
3598 uiTableValue *(*CellValue)(uiTableModelHandler *mh, uiTableModel *m, int row, int column);
3599
3613};
3614
3623
3635
3648
3660
3673// TODO reordering/moving
3674
3676#define uiTableModelColumnNeverEditable (-1)
3678#define uiTableModelColumnAlwaysEditable (-2)
3679
3697};
3698
3720};
3721
3743typedef struct uiTable uiTable;
3744#define uiTable(this) ((uiTable *) (this))
3745
3764 const char *name,
3765 int textModelColumn,
3766 int textEditableModelColumn,
3768
3784 const char *name,
3785 int imageModelColumn);
3786
3809 const char *name,
3810 int imageModelColumn,
3811 int textModelColumn,
3812 int textEditableModelColumn,
3814
3831 const char *name,
3832 int checkboxModelColumn,
3833 int checkboxEditableModelColumn);
3834
3859 const char *name,
3860 int checkboxModelColumn,
3861 int checkboxEditableModelColumn,
3862 int textModelColumn,
3863 int textEditableModelColumn,
3865
3882 const char *name,
3883 int progressModelColumn);
3884
3906 const char *name,
3907 int buttonModelColumn,
3908 int buttonClickableModelColumn);
3909
3918
3927
3936
3937
3952 void (*f)(uiTable *t, int row, void *data),
3953 void *data);
3954
3970 void (*f)(uiTable *t, int row, void *data),
3971 void *data);
3972
3986 int column,
3987 uiSortIndicator indicator);
3988
3998
4013 void (*f)(uiTable *sender, int column, void *senderData), void *data);
4014
4024
4042_UI_EXTERN void uiTableColumnSetWidth(uiTable *t, int column, int width);
4043
4067};
4068
4078
4090
4105_UI_EXTERN void uiTableOnSelectionChanged(uiTable *t, void (*f)(uiTable *t, void *data), void *data);
4106
4115{
4117 int *Rows;
4118};
4119
4131
4145
4153
4154#ifdef __cplusplus
4155}
4156#endif
4157
4158#endif
char * uiOpenFolder(uiWindow *parent)
Folder chooser dialog window to select a single folder.
char * uiSaveFile(uiWindow *parent)
Save file dialog window.
char * uiOpenFile(uiWindow *parent)
File chooser dialog window to select a single file.
void uiMsgBoxError(uiWindow *parent, const char *title, const char *description)
Error message box dialog window.
void uiMsgBox(uiWindow *parent, const char *title, const char *description)
Message box dialog window.
uiTableSelectionMode
Table selection modes.
Definition: ui.h:4056
uiSortIndicator
Sort indicators.
Definition: ui.h:3519
Definition: ui.h:2157
double AreaWidth
Definition: ui.h:2161
double ClipWidth
Definition: ui.h:2166
double ClipHeight
Definition: ui.h:2167
double AreaHeight
Definition: ui.h:2162
double ClipY
Definition: ui.h:2165
uiDrawContext * Context
Definition: ui.h:2158
double ClipX
Definition: ui.h:2164
Definition: ui.h:2084
void(* DragBroken)(uiAreaHandler *, uiArea *)
Definition: ui.h:2092
int(* KeyEvent)(uiAreaHandler *, uiArea *, uiAreaKeyEvent *)
Definition: ui.h:2093
void(* Draw)(uiAreaHandler *, uiArea *, uiAreaDrawParams *)
Definition: ui.h:2085
void(* MouseCrossed)(uiAreaHandler *, uiArea *, int left)
Definition: ui.h:2091
void(* MouseEvent)(uiAreaHandler *, uiArea *, uiAreaMouseEvent *)
Definition: ui.h:2088
Custom drawing control that receives drawing and input events through a uiAreaHandler.
void uiAreaQueueRedrawAll(uiArea *a)
Queues the entire area for redraw.
void uiAreaSetSize(uiArea *a, int width, int height)
Changes the size of a scrolling area's drawing space.
void uiAreaScrollTo(uiArea *a, double x, double y, double width, double height)
Scrolls the minimum distance needed to make a rectangle visible.
Definition: ui.h:2969
char Key
Definition: ui.h:2970
int Up
Definition: ui.h:2976
uiExtKey ExtKey
Definition: ui.h:2971
uiModifiers Modifier
Definition: ui.h:2972
uiModifiers Modifiers
Definition: ui.h:2974
Definition: ui.h:2907
int Count
Definition: ui.h:2920
double X
Definition: ui.h:2910
double AreaHeight
Definition: ui.h:2915
int Down
Definition: ui.h:2917
uint64_t Held1To64
Definition: ui.h:2924
int Up
Definition: ui.h:2918
uiModifiers Modifiers
Definition: ui.h:2922
double Y
Definition: ui.h:2911
double AreaWidth
Definition: ui.h:2914
A boxlike container that holds a group of controls.
void uiBoxDelete(uiBox *b, int index)
Removes the control at index from the box.
uiBox * uiNewHorizontalBox(void)
Creates a new horizontal box.
void uiBoxSetPadded(uiBox *b, int padded)
Sets whether or not controls within the box are padded.
int uiBoxNumChildren(uiBox *b)
Returns the number of controls contained within the box.
void uiBoxAppend(uiBox *b, uiControl *child, int stretchy)
Appends a control to the box.
uiBox * uiNewVerticalBox(void)
Creates a new vertical box.
int uiBoxPadded(uiBox *b)
Returns whether or not controls within the box are padded.
A control that visually represents a button to be clicked by the user to trigger an action.
char * uiButtonText(uiButton *b)
Returns the button label text.
void uiButtonOnClicked(uiButton *b, void(*f)(uiButton *sender, void *senderData), void *data)
Registers a callback for when the button is clicked.
void uiButtonSetText(uiButton *b, const char *text)
Sets the button label text.
uiButton * uiNewButton(const char *text)
Creates a new button.
A control with a user checkable box accompanied by a text label.
void uiCheckboxSetChecked(uiCheckbox *c, int checked)
Sets whether or not the checkbox is checked.
uiCheckbox * uiNewCheckbox(const char *text)
Creates a new checkbox.
char * uiCheckboxText(uiCheckbox *c)
Returns the checkbox label text.
int uiCheckboxChecked(uiCheckbox *c)
Returns whether or the checkbox is checked.
void uiCheckboxOnToggled(uiCheckbox *c, void(*f)(uiCheckbox *sender, void *senderData), void *data)
Registers a callback for when the checkbox is toggled by the user.
void uiCheckboxSetText(uiCheckbox *c, const char *text)
Sets the checkbox label text.
A control with a color indicator that opens a color chooser when clicked.
uiColorButton * uiNewColorButton(void)
Creates a new color button.
void uiColorButtonOnChanged(uiColorButton *b, void(*f)(uiColorButton *sender, void *senderData), void *data)
Registers a callback for when the color is changed.
void uiColorButtonColor(uiColorButton *b, double *r, double *g, double *bl, double *a)
Returns the color button color.
void uiColorButtonSetColor(uiColorButton *b, double r, double g, double bl, double a)
Sets the color button color.
A control to select one item from a predefined list of items via a drop down menu.
void uiComboboxInsertAt(uiCombobox *c, int index, const char *text)
Inserts an item at index to the combo box.
void uiComboboxDelete(uiCombobox *c, int index)
Deletes an item at index from the combo box.
void uiComboboxClear(uiCombobox *c)
Deletes all items from the combo box.
void uiComboboxOnSelected(uiCombobox *c, void(*f)(uiCombobox *sender, void *senderData), void *data)
Registers a callback for when a combo box item is selected.
void uiComboboxAppend(uiCombobox *c, const char *text)
Appends an item to the combo box.
uiCombobox * uiNewCombobox(void)
Creates a new combo box.
void uiComboboxSetSelected(uiCombobox *c, int index)
Sets the item selected.
int uiComboboxSelected(uiCombobox *c)
Returns the index of the item selected.
int uiComboboxNumItems(uiCombobox *c)
Returns the number of items contained within the combo box.
Base class for GUI controls providing common methods.
Definition: ui.h:112
int uiControlVisible(uiControl *c)
Returns whether or not the control is visible.
void uiControlHide(uiControl *c)
Hides the control.
int(* Visible)(uiControl *)
Definition: ui.h:121
uint32_t OSSignature
Definition: ui.h:114
int(* Toplevel)(uiControl *)
Definition: ui.h:120
void(* SetParent)(uiControl *, uiControl *)
Definition: ui.h:119
void uiControlOnDestroyed(uiControl *c, void(*f)(uiControl *c, void *data), void *data)
Registers a function to be called when the control is destroyed.
int uiControlEnabledToUser(uiControl *c)
Returns whether or not the control can be interacted with by the user.
void uiControlDisable(uiControl *c)
Disables the control.
void uiControlDestroy(uiControl *c)
Dispose and free all allocated resources.
void uiControlEnable(uiControl *c)
Enables the control.
void(* Disable)(uiControl *)
Definition: ui.h:126
void(* Show)(uiControl *)
Definition: ui.h:122
void(* Destroy)(uiControl *)
Definition: ui.h:116
int uiControlEnabled(uiControl *c)
Returns whether or not the control is enabled.
uintptr_t uiControlHandle(uiControl *c)
Returns the control's OS-level handle.
void uiControlShow(uiControl *c)
Shows the control.
void uiFreeControl(uiControl *c)
Frees the memory associated with the control reference.
void uiControlVerifySetParent(uiControl *c, uiControl *parent)
Makes sure the control's parent can be set to parent.
int uiControlToplevel(uiControl *c)
Returns whether or not the control is a top level control.
void(* Hide)(uiControl *)
Definition: ui.h:123
void uiControlSetParent(uiControl *c, uiControl *parent)
Sets the control's parent.
uint32_t TypeSignature
Definition: ui.h:115
int(* Enabled)(uiControl *)
Definition: ui.h:124
uiControl * uiAllocControl(size_t n, uint32_t OSsig, uint32_t typesig, const char *typenamestr)
Allocates a uiControl.
uint32_t Signature
Definition: ui.h:113
uiControl * uiControlParent(uiControl *c)
Returns the parent control.
uintptr_t(* Handle)(uiControl *)
Definition: ui.h:117
void(* Enable)(uiControl *)
Definition: ui.h:125
A control to enter a date and/or time.
Definition: ui.h:1643
uiDateTimePicker * uiNewDateTimePicker(void)
Creates a new date picker.
void uiDateTimePickerOnChanged(uiDateTimePicker *d, void(*f)(uiDateTimePicker *sender, void *senderData), void *data)
Registers a callback for when the date time picker value is changed by the user.
void uiDateTimePickerSetTime(uiDateTimePicker *d, const struct tm *time)
Sets date and time of the data time picker.
uiDateTimePicker * uiNewTimePicker(void)
Creates a new date and time picker.
uiDateTimePicker * uiNewDatePicker(void)
Creates a new time picker.
void uiDateTimePickerTime(uiDateTimePicker *d, struct tm *time)
Returns date and time stored in the data time picker.
Definition: ui.h:2243
double R
Definition: ui.h:2245
double G
Definition: ui.h:2246
double Pos
Definition: ui.h:2244
double B
Definition: ui.h:2247
double A
Definition: ui.h:2248
Definition: ui.h:2215
double Y1
Definition: ui.h:2228
double B
Definition: ui.h:2221
size_t NumStops
Definition: ui.h:2231
double R
Definition: ui.h:2219
double Y0
Definition: ui.h:2226
double A
Definition: ui.h:2222
uiDrawBrushGradientStop * Stops
Definition: ui.h:2230
double X1
Definition: ui.h:2227
double X0
Definition: ui.h:2225
double OuterRadius
Definition: ui.h:2229
double G
Definition: ui.h:2220
uiDrawBrushType Type
Definition: ui.h:2216
Definition: ui.h:2206
double M32
Definition: ui.h:2212
double M11
Definition: ui.h:2207
double M22
Definition: ui.h:2210
double M31
Definition: ui.h:2211
double M21
Definition: ui.h:2209
double M12
Definition: ui.h:2208
Definition: ui.h:2251
size_t NumDashes
Definition: ui.h:2261
double DashPhase
Definition: ui.h:2262
double * Dashes
Definition: ui.h:2258
double Thickness
Definition: ui.h:2255
double MiterLimit
Definition: ui.h:2256
uiDrawLineJoin Join
Definition: ui.h:2253
uiDrawLineCap Cap
Definition: ui.h:2252
Definition: ui.h:2788
uiAttributedString * String
Definition: ui.h:2789
double Width
Definition: ui.h:2791
uiFontDescriptor * DefaultFont
Definition: ui.h:2790
uiDrawTextAlign Align
Definition: ui.h:2792
A control to select one item from a predefined list of items or enter ones own.
uiEditableCombobox * uiNewEditableCombobox(void)
Creates a new editable combo box.
void uiEditableComboboxOnChanged(uiEditableCombobox *c, void(*f)(uiEditableCombobox *sender, void *senderData), void *data)
Registers a callback for when an editable combo box item is selected or user text changed.
void uiEditableComboboxSetText(uiEditableCombobox *c, const char *text)
Sets the editable combo box text.
char * uiEditableComboboxText(uiEditableCombobox *c)
Returns the text of the editable combo box.
void uiEditableComboboxAppend(uiEditableCombobox *c, const char *text)
Appends an item to the editable combo box.
A control with a single line text entry field.
uiEntry * uiNewEntry(void)
Creates a new entry.
void uiEntryOnChanged(uiEntry *e, void(*f)(uiEntry *sender, void *senderData), void *data)
Registers a callback for when the user changes the entry's text.
char * uiEntryText(uiEntry *e)
Returns the entry's text.
void uiEntrySetText(uiEntry *e, const char *text)
Sets the entry's text.
uiEntry * uiNewPasswordEntry(void)
Creates a new entry suitable for sensitive inputs like passwords.
void uiEntrySetReadOnly(uiEntry *e, int readonly)
Sets whether or not the entry's text is read only.
uiEntry * uiNewSearchEntry(void)
Creates a new entry suitable for search.
int uiEntryReadOnly(uiEntry *e)
Returns whether or not the entry's text can be changed.
A button-like control that opens a font chooser when clicked.
void uiFontButtonOnChanged(uiFontButton *b, void(*f)(uiFontButton *sender, void *senderData), void *data)
Registers a callback for when the font is changed.
void uiFontButtonFont(uiFontButton *b, uiFontDescriptor *desc)
Returns the selected font.
uiFontButton * uiNewFontButton(void)
Creates a new font button.
void uiFreeFontButtonFont(uiFontDescriptor *desc)
Compatibility alias for uiFreeFontDescriptor().
Definition: ui.h:2724
uiTextItalic Italic
Definition: ui.h:2729
uiTextWeight Weight
Definition: ui.h:2728
char * Family
Definition: ui.h:2726
uiTextStretch Stretch
Definition: ui.h:2730
double Size
Definition: ui.h:2727
A container control to organize contained controls as labeled fields.
void uiFormSetPadded(uiForm *f, int padded)
Sets whether or not controls within the box are padded.
int uiFormPadded(uiForm *f)
Returns whether or not controls within the form are padded.
void uiFormDelete(uiForm *f, int index)
Removes the control at index from the form.
void uiFormAppend(uiForm *f, const char *label, uiControl *c, int stretchy)
Appends a control with a label to the form.
uiForm * uiNewForm(void)
Creates a new form.
int uiFormNumChildren(uiForm *f)
Returns the number of controls contained within the form.
A control container to arrange containing controls in a grid.
void uiGridSetPadded(uiGrid *g, int padded)
Sets whether or not controls within the grid are padded.
int uiGridPadded(uiGrid *g)
Returns whether or not controls within the grid are padded.
void uiGridAppend(uiGrid *g, uiControl *c, int left, int top, int xspan, int yspan, int hexpand, uiAlign halign, int vexpand, uiAlign valign)
Appends a control to the grid.
void uiGridDelete(uiGrid *g, uiControl *c)
Removes a control from the grid without destroying it.
uiGrid * uiNewGrid(void)
Creates a new grid.
void uiGridInsertAt(uiGrid *g, uiControl *c, uiControl *existing, uiAt at, int xspan, int yspan, int hexpand, uiAlign halign, int vexpand, uiAlign valign)
Inserts a control positioned in relation to another control within the grid.
A control container that adds a label to the contained child control.
void uiGroupSetTitle(uiGroup *g, const char *title)
Sets the group title.
uiGroup * uiNewGroup(const char *title)
Creates a new group.
void uiGroupSetChild(uiGroup *g, uiControl *c)
Sets the group's child.
char * uiGroupTitle(uiGroup *g)
Returns the group title.
void uiGroupSetMargined(uiGroup *g, int margined)
Sets whether or not the group has a margin.
int uiGroupMargined(uiGroup *g)
Returns whether or not the group has a margin.
A container for an image to be displayed on screen.
void uiImageAppend(uiImage *i, const void *pixels, int pixelWidth, int pixelHeight, int byteStride)
Appends a new image representation.
uiImage * uiNewImage(double width, double height)
Creates a new image container.
void uiFreeImage(uiImage *i)
Frees the image container and all associated resources.
Definition: ui.h:60
size_t Size
Definition: ui.h:61
A control that displays non interactive text.
char * uiLabelText(uiLabel *l)
Returns the label text.
uiLabel * uiNewLabel(const char *text)
Creates a new label.
void uiLabelSetText(uiLabel *l, const char *text)
Sets the label text.
An application level menu bar.
uiMenuItem * uiMenuAppendAboutItem(uiMenu *m)
Appends a new About menu item.
uiMenuItem * uiMenuAppendItem(uiMenu *m, const char *name)
Appends a generic menu item.
uiMenuItem * uiMenuAppendQuitItem(uiMenu *m)
Appends a new Quit menu item.
uiMenuItem * uiMenuAppendPreferencesItem(uiMenu *m)
Appends a new Preferences menu item.
void uiMenuAppendSeparator(uiMenu *m)
Appends a new separator.
uiMenuItem * uiMenuAppendCheckItem(uiMenu *m, const char *name)
Appends a generic menu item with a checkbox.
uiMenu * uiNewMenu(const char *name)
Creates a new menu.
A menu item used in conjunction with uiMenu.
void uiMenuItemDisable(uiMenuItem *m)
Disables the menu item.
int uiMenuItemChecked(uiMenuItem *m)
Returns whether or not the menu item's checkbox is checked.
void uiMenuItemOnClicked(uiMenuItem *m, void(*f)(uiMenuItem *sender, uiWindow *window, void *senderData), void *data)
Registers a callback for when the menu item is clicked.
void uiMenuItemEnable(uiMenuItem *m)
Enables the menu item.
void uiMenuItemSetChecked(uiMenuItem *m, int checked)
Sets whether or not the menu item's checkbox is checked.
A control with a multi line text entry field.
void uiMultilineEntryOnChanged(uiMultilineEntry *e, void(*f)(uiMultilineEntry *sender, void *senderData), void *data)
Registers a callback for when the user changes the multi line entry's text.
void uiMultilineEntryAppend(uiMultilineEntry *e, const char *text)
Appends text to the multi line entry's text.
void uiMultilineEntrySetReadOnly(uiMultilineEntry *e, int readonly)
Sets whether or not the multi line entry's text is read only.
uiMultilineEntry * uiNewMultilineEntry(void)
Creates a new multi line entry that visually wraps text when lines overflow.
void uiMultilineEntrySetText(uiMultilineEntry *e, const char *text)
Sets the multi line entry's text.
uiMultilineEntry * uiNewNonWrappingMultilineEntry(void)
Creates a new multi line entry that scrolls horizontally when lines overflow.
char * uiMultilineEntryText(uiMultilineEntry *e)
Returns the multi line entry's text.
int uiMultilineEntryReadOnly(uiMultilineEntry *e)
Returns whether or not the multi line entry's text can be changed.
A control that visualizes the progress of a task via the fill level of a horizontal bar.
uiProgressBar * uiNewProgressBar(void)
Creates a new progress bar.
void uiProgressBarSetValue(uiProgressBar *p, int n)
Sets the progress bar value.
int uiProgressBarValue(uiProgressBar *p)
Returns the progress bar value.
A multiple choice control of check buttons from which only one can be selected at a time.
void uiRadioButtonsSetSelected(uiRadioButtons *r, int index)
Sets the item selected.
void uiRadioButtonsAppend(uiRadioButtons *r, const char *text)
Appends a radio button.
int uiRadioButtonsSelected(uiRadioButtons *r)
Returns the index of the item selected.
void uiRadioButtonsOnSelected(uiRadioButtons *r, void(*f)(uiRadioButtons *sender, void *senderData), void *data)
Registers a callback for when radio button is selected.
uiRadioButtons * uiNewRadioButtons(void)
Creates a new radio buttons instance.
A control to visually separate controls, horizontally or vertically.
uiSeparator * uiNewHorizontalSeparator(void)
Creates a new horizontal separator to separate controls being stacked vertically.
uiSeparator * uiNewVerticalSeparator(void)
Creates a new vertical separator to separate controls being stacked horizontally.
A control to display and modify integer values via a user draggable slider.
void uiSliderOnReleased(uiSlider *s, void(*f)(uiSlider *sender, void *senderData), void *data)
Registers a callback for when the slider is released from dragging.
uiSlider * uiNewSlider(int min, int max)
Creates a new slider.
int uiSliderHasToolTip(uiSlider *s)
Returns whether or not the slider has a tool tip.
int uiSliderValue(uiSlider *s)
Returns the slider value.
void uiSliderSetValue(uiSlider *s, int value)
Sets the slider value.
void uiSliderOnChanged(uiSlider *s, void(*f)(uiSlider *sender, void *senderData), void *data)
Registers a callback for when the slider value is changed by the user.
void uiSliderSetHasToolTip(uiSlider *s, int hasToolTip)
Sets whether or not the slider has a tool tip.
void uiSliderSetRange(uiSlider *s, int min, int max)
Sets the slider range.
A control to display and modify integer values via a text field or +/- buttons.
void uiSpinboxOnChanged(uiSpinbox *s, void(*f)(uiSpinbox *sender, void *senderData), void *data)
Registers a callback for when the spinbox value is changed by the user.
void uiSpinboxSetValue(uiSpinbox *s, int value)
Sets the spinbox value.
uiSpinbox * uiNewSpinbox(int min, int max)
Creates a new spinbox.
int uiSpinboxValue(uiSpinbox *s)
Returns the spinbox value.
A multi page control interface that displays one page at a time.
void uiTabAppend(uiTab *t, const char *name, uiControl *c)
Appends a control in form of a page/tab with label.
void uiTabSetMargined(uiTab *t, int index, int margined)
Sets whether or not the page/tab at index has a margin.
void uiTabOnSelected(uiTab *t, void(*f)(uiTab *sender, void *senderData), void *data)
Registers a callback for when a tab is selected.
int uiTabNumPages(uiTab *t)
Returns the number of pages contained.
void uiTabSetSelected(uiTab *t, int index)
Sets the tab selected.
int uiTabMargined(uiTab *t, int index)
Returns whether or not the page/tab at index has a margin.
int uiTabSelected(uiTab *t)
Returns the index of the tab selected.
void uiTabInsertAt(uiTab *t, const char *name, int index, uiControl *c)
Inserts a control in form of a page/tab with label at index.
void uiTabDelete(uiTab *t, int index)
Removes the control at index.
uiTab * uiNewTab(void)
Creates a new tab container.
A control to display data in a tabular fashion.
void uiTableAppendButtonColumn(uiTable *t, const char *name, int buttonModelColumn, int buttonClickableModelColumn)
Appends a column to the table containing a button.
void uiTableOnRowDoubleClicked(uiTable *t, void(*f)(uiTable *t, int row, void *data), void *data)
Registers a callback for when the user double clicks a table row.
uiTableSelection * uiTableGetSelection(uiTable *t)
Returns the current table selection.
void uiTableOnRowClicked(uiTable *t, void(*f)(uiTable *t, int row, void *data), void *data)
Registers a callback for when the user single clicks a table row.
void uiTableColumnSetWidth(uiTable *t, int column, int width)
Sets the table column width.
uiSortIndicator uiTableHeaderSortIndicator(uiTable *t, int column)
Returns the column's sort indicator displayed in the table header.
int uiTableHeaderVisible(uiTable *t)
Returns whether or not the table header is visible.
void uiTableAppendImageTextColumn(uiTable *t, const char *name, int imageModelColumn, int textModelColumn, int textEditableModelColumn, uiTableTextColumnOptionalParams *textParams)
Appends a column to the table that displays both an image and text.
void uiTableAppendCheckboxTextColumn(uiTable *t, const char *name, int checkboxModelColumn, int checkboxEditableModelColumn, int textModelColumn, int textEditableModelColumn, uiTableTextColumnOptionalParams *textParams)
Appends a column to the table containing a checkbox and text.
int uiTableColumnWidth(uiTable *t, int column)
Returns the table column width.
void uiTableAppendTextColumn(uiTable *t, const char *name, int textModelColumn, int textEditableModelColumn, uiTableTextColumnOptionalParams *textParams)
Appends a text column to the table.
void uiTableSetSelectionMode(uiTable *t, uiTableSelectionMode mode)
Sets the table selection mode.
void uiTableSetSelection(uiTable *t, uiTableSelection *sel)
Sets the current table selection clearing any previous selection.
uiTable * uiNewTable(uiTableParams *params)
Creates a new table.
void uiTableOnSelectionChanged(uiTable *t, void(*f)(uiTable *t, void *data), void *data)
Registers a callback for when the table selection changed.
void uiTableHeaderOnClicked(uiTable *t, void(*f)(uiTable *sender, int column, void *senderData), void *data)
Registers a callback for when a table column header is clicked.
void uiTableAppendCheckboxColumn(uiTable *t, const char *name, int checkboxModelColumn, int checkboxEditableModelColumn)
Appends a column to the table containing a checkbox.
void uiTableHeaderSetSortIndicator(uiTable *t, int column, uiSortIndicator indicator)
Sets the column's sort indicator displayed in the table header.
uiTableSelectionMode uiTableGetSelectionMode(uiTable *t)
Returns the table selection mode.
void uiTableAppendImageColumn(uiTable *t, const char *name, int imageModelColumn)
Appends an image column to the table.
void uiTableHeaderSetVisible(uiTable *t, int visible)
Sets whether or not the table header is visible.
void uiTableAppendProgressBarColumn(uiTable *t, const char *name, int progressModelColumn)
Appends a column to the table containing a progress bar.
Developer defined methods for data retrieval and setting.
Definition: ui.h:3562
void(* SetCellValue)(uiTableModelHandler *, uiTableModel *, int, int, const uiTableValue *)
Sets the cell value for (row, column).
Definition: ui.h:3612
int(* NumColumns)(uiTableModelHandler *, uiTableModel *)
Returns the number of columns in the uiTableModel.
Definition: ui.h:3571
uiTableValueType(* ColumnType)(uiTableModelHandler *, uiTableModel *, int column)
Returns the column type in for of a uiTableValueType.
Definition: ui.h:3579
int(* NumRows)(uiTableModelHandler *, uiTableModel *)
Returns the number of rows in the uiTableModel.
Definition: ui.h:3584
Table model delegate to retrieve data and inform about model changes.
uiTableModel * uiNewTableModel(uiTableModelHandler *mh)
Creates a new table model.
void uiTableModelRowChanged(uiTableModel *m, int index)
Informs all associated uiTable views that a row has been changed.
void uiFreeTableModel(uiTableModel *m)
Frees the table model.
void uiTableModelRowInserted(uiTableModel *m, int newIndex)
Informs all associated uiTable views that a new row has been added.
void uiTableModelRowDeleted(uiTableModel *m, int oldIndex)
Informs all associated uiTable views that a row has been deleted.
Table parameters passed to uiNewTable().
Definition: ui.h:3706
int RowBackgroundColorModelColumn
uiTableModel column that defines background color for each row,
Definition: ui.h:3719
uiTableModel * Model
Model holding the data to be displayed.
Definition: ui.h:3710
Holds an array of selected row indices for a table.
Definition: ui.h:4115
void uiFreeTableSelection(uiTableSelection *s)
Frees the given uiTableSelection and all it's resources.
int * Rows
Array containing valid row indices, NULL on empty selection.
Definition: ui.h:4117
int NumRows
Non-negative number of selected rows.
Definition: ui.h:4116
Optional parameters to control the appearance of text columns.
Definition: ui.h:3687
int ColorModelColumn
uiTableModel column that defines the text color for each cell.
Definition: ui.h:3696
Container to store values used in container related methods.
int uiTableValueInt(const uiTableValue *v)
Returns the integer value held internally.
void uiTableValueColor(const uiTableValue *v, double *r, double *g, double *b, double *a)
Returns the color value held internally.
void uiFreeTableValue(uiTableValue *v)
Frees the uiTableValue.
uiTableValue * uiNewTableValueImage(uiImage *img)
Creates a new table value to store an image.
uiTableValueType uiTableValueGetType(const uiTableValue *v)
Gets the uiTableValue type.
uiTableValue * uiNewTableValueString(const char *str)
Creates a new table value to store a text string.
const char * uiTableValueString(const uiTableValue *v)
Returns the string value held internally.
uiTableValue * uiNewTableValueInt(int i)
Creates a new table value to store an integer.
uiTableValue * uiNewTableValueColor(double r, double g, double b, double a)
Creates a new table value to store a color in.
uiImage * uiTableValueImage(const uiTableValue *v)
Returns a reference to the image contained.
A control that represents a top-level window.
int uiWindowFocused(uiWindow *w)
Returns whether or not the window is focused.
void uiWindowPosition(uiWindow *w, int *x, int *y)
Gets the window position.
void uiWindowSetContentSize(uiWindow *w, int width, int height)
Sets the window content size.
void uiWindowSetResizeable(uiWindow *w, int resizeable)
Sets whether or not the window is user resizeable.
void uiWindowOnClosing(uiWindow *w, int(*f)(uiWindow *sender, void *senderData), void *data)
Registers a callback for when the window is to be closed.
int uiWindowBorderless(uiWindow *w)
Returns whether or not the window is borderless.
int uiWindowMargined(uiWindow *w)
Returns whether or not the window has a margin.
void uiWindowOnContentSizeChanged(uiWindow *w, void(*f)(uiWindow *sender, void *senderData), void *data)
Registers a callback for when the window content size is changed.
int uiWindowFullscreen(uiWindow *w)
Returns whether or not the window is full screen.
void uiWindowSetBorderless(uiWindow *w, int borderless)
Sets whether or not the window is borderless.
int uiWindowResizeable(uiWindow *w)
Returns whether or not the window is user resizeable.
char * uiWindowTitle(uiWindow *w)
Returns the window title.
void uiWindowSetTitle(uiWindow *w, const char *title)
Sets the window title.
void uiWindowSetChild(uiWindow *w, uiControl *child)
Sets the window's child.
void uiWindowSetFullscreen(uiWindow *w, int fullscreen)
Sets whether or not the window is full screen.
void uiWindowSetPosition(uiWindow *w, int x, int y)
Moves the window to the specified position.
void uiWindowOnPositionChanged(uiWindow *w, void(*f)(uiWindow *sender, void *senderData), void *data)
Registers a callback for when the window moved.
void uiWindowContentSize(uiWindow *w, int *width, int *height)
Gets the window content size.
void uiWindowOnFocusChanged(uiWindow *w, void(*f)(uiWindow *sender, void *senderData), void *data)
Registers a callback for when the window focus changes.
void uiWindowSetMargined(uiWindow *w, int margined)
Sets whether or not the window has a margin.
uiWindow * uiNewWindow(const char *title, int width, int height, int hasMenubar)
Creates a new uiWindow.
void uiDrawMatrixMultiply(uiDrawMatrix *dest, uiDrawMatrix *src)
uiAttribute * uiNewUnderlineAttribute(uiUnderline u)
void uiFreeAttributedString(uiAttributedString *s)
uiWindowResizeEdge
Definition: ui.h:2098
@ uiWindowResizeEdgeTop
Definition: ui.h:2100
@ uiWindowResizeEdgeBottom
Definition: ui.h:2102
@ uiWindowResizeEdgeBottomLeft
Definition: ui.h:2105
@ uiWindowResizeEdgeLeft
Definition: ui.h:2099
@ uiWindowResizeEdgeRight
Definition: ui.h:2101
@ uiWindowResizeEdgeTopLeft
Definition: ui.h:2103
@ uiWindowResizeEdgeBottomRight
Definition: ui.h:2106
@ uiWindowResizeEdgeTopRight
Definition: ui.h:2104
const uiOpenTypeFeatures * uiAttributeFeatures(const uiAttribute *a)
uiTableValueType
uiTableValue types.
Definition: ui.h:3388
@ uiTableValueTypeImage
Definition: ui.h:3390
@ uiTableValueTypeInt
Definition: ui.h:3391
@ uiTableValueTypeColor
Definition: ui.h:3392
@ uiTableValueTypeString
Definition: ui.h:3389
uiOpenTypeFeatures * uiNewOpenTypeFeatures(void)
#define _UI_ENUM(s)
Definition: ui.h:44
void uiDrawSave(uiDrawContext *c)
void uiDrawFreeTextLayout(uiDrawTextLayout *tl)
void uiOpenTypeFeaturesForEach(const uiOpenTypeFeatures *otf, uiOpenTypeFeaturesForEachFunc f, void *data)
uiAttributedString * uiNewAttributedString(const char *initialString)
uiAt
Placement specifier to define placement in relation to another control.
Definition: ui.h:3146
@ uiAtTop
Place above control.
Definition: ui.h:3148
@ uiAtLeading
Place before control.
Definition: ui.h:3147
@ uiAtBottom
Place below control.
Definition: ui.h:3150
@ uiAtTrailing
Place behind control.
Definition: ui.h:3149
void uiDrawPathNewFigureWithArc(uiDrawPath *p, double xCenter, double yCenter, double radius, double startAngle, double sweep, int negative)
struct uiAttributedString uiAttributedString
Definition: ui.h:2649
uiAttribute * uiNewSizeAttribute(double size)
void uiLoadControlFont(uiFontDescriptor *f)
Loads the platform's default control font.
const char * uiInit(uiInitOptions *options)
void uiDrawPathAddRectangle(uiDrawPath *p, double x, double y, double width, double height)
size_t uiAttributedStringByteIndexToGrapheme(uiAttributedString *s, size_t pos)
size_t uiAttributedStringGraphemeToByteIndex(uiAttributedString *s, size_t pos)
uiForEach(* uiAttributedStringForEachAttributeFunc)(const uiAttributedString *s, const uiAttribute *a, size_t start, size_t end, void *data)
Definition: ui.h:2655
void uiMainSteps(void)
void uiAttributedStringDelete(uiAttributedString *s, size_t start, size_t end)
void uiDrawFill(uiDrawContext *c, uiDrawPath *path, uiDrawBrush *b)
uiArea * uiNewScrollingArea(uiAreaHandler *ah, int width, int height)
void uiAttributeColor(const uiAttribute *a, double *r, double *g, double *b, double *alpha)
uiTextItalic
Definition: ui.h:2418
@ uiTextItalicOblique
Definition: ui.h:2420
@ uiTextItalicItalic
Definition: ui.h:2421
@ uiTextItalicNormal
Definition: ui.h:2419
void uiDrawPathLineTo(uiDrawPath *p, double x, double y)
void uiDrawFreePath(uiDrawPath *p)
uiModifiers
Keyboard modifier keys.
Definition: ui.h:2898
@ uiModifierAlt
Alternate/Option key.
Definition: ui.h:2900
@ uiModifierSuper
Super/Command/Windows key.
Definition: ui.h:2902
@ uiModifierShift
Shift key.
Definition: ui.h:2901
@ uiModifierCtrl
Control key.
Definition: ui.h:2899
void uiFreeText(char *text)
Free the memory of a returned string.
void uiAttributeUnderlineColor(const uiAttribute *a, uiUnderlineColor *u, double *r, double *g, double *b, double *alpha)
uiOpenTypeFeatures * uiOpenTypeFeaturesClone(const uiOpenTypeFeatures *otf)
void uiTimer(int milliseconds, int(*f)(void *data), void *data)
void uiMain(void)
uiDrawTextAlign
Definition: ui.h:2775
@ uiDrawTextAlignCenter
Definition: ui.h:2777
@ uiDrawTextAlignLeft
Definition: ui.h:2776
@ uiDrawTextAlignRight
Definition: ui.h:2778
void uiFreeInitError(const char *err)
uiForEach(* uiOpenTypeFeaturesForEachFunc)(const uiOpenTypeFeatures *otf, char a, char b, char c, char d, uint32_t value, void *data)
Definition: ui.h:2556
struct uiAttribute uiAttribute
Definition: ui.h:2324
int uiOpenTypeFeaturesGet(const uiOpenTypeFeatures *otf, char a, char b, char c, char d, uint32_t *value)
struct uiDrawPath uiDrawPath
Definition: ui.h:2170
uiDrawTextLayout * uiDrawNewTextLayout(uiDrawTextLayoutParams *params)
uiAttributeType uiAttributeGetType(const uiAttribute *a)
uiTextWeight
Definition: ui.h:2387
@ uiTextWeightMaximum
Definition: ui.h:2400
@ uiTextWeightNormal
Definition: ui.h:2393
@ uiTextWeightBook
Definition: ui.h:2392
@ uiTextWeightMedium
Definition: ui.h:2394
@ uiTextWeightUltraLight
Definition: ui.h:2390
@ uiTextWeightBold
Definition: ui.h:2396
@ uiTextWeightUltraBold
Definition: ui.h:2397
@ uiTextWeightSemiBold
Definition: ui.h:2395
@ uiTextWeightUltraHeavy
Definition: ui.h:2399
@ uiTextWeightLight
Definition: ui.h:2391
@ uiTextWeightThin
Definition: ui.h:2389
@ uiTextWeightMinimum
Definition: ui.h:2388
@ uiTextWeightHeavy
Definition: ui.h:2398
struct uiDrawContext uiDrawContext
Definition: ui.h:2082
int uiDrawMatrixInvertible(uiDrawMatrix *m)
void uiQuit(void)
uiAttribute * uiNewFamilyAttribute(const char *family)
void uiUninit(void)
uiTextStretch uiAttributeStretch(const uiAttribute *a)
void uiAttributedStringAppendUnattributed(uiAttributedString *s, const char *str)
uiAttribute * uiNewColorAttribute(double r, double g, double b, double a)
void uiDrawMatrixTranslate(uiDrawMatrix *m, double x, double y)
const char * uiAttributedStringString(const uiAttributedString *s)
void uiDrawPathEnd(uiDrawPath *p)
void uiDrawText(uiDrawContext *c, uiDrawTextLayout *tl, double x, double y)
void uiOpenTypeFeaturesRemove(uiOpenTypeFeatures *otf, char a, char b, char c, char d)
void uiAttributedStringInsertAtUnattributed(uiAttributedString *s, const char *str, size_t at)
uiAttribute * uiNewFeaturesAttribute(const uiOpenTypeFeatures *otf)
void uiDrawClip(uiDrawContext *c, uiDrawPath *path)
uiUnderline uiAttributeUnderline(const uiAttribute *a)
void uiQueueMain(void(*f)(void *data), void *data)
uiTextWeight uiAttributeWeight(const uiAttribute *a)
double uiAttributeSize(const uiAttribute *a)
void uiDrawTransform(uiDrawContext *c, uiDrawMatrix *m)
uiAttribute * uiNewWeightAttribute(uiTextWeight weight)
uiAttribute * uiNewBackgroundAttribute(double r, double g, double b, double a)
uiAttributeType
Definition: ui.h:2337
@ uiAttributeTypeUnderline
Definition: ui.h:2345
@ uiAttributeTypeBackground
Definition: ui.h:2344
@ uiAttributeTypeFamily
Definition: ui.h:2338
@ uiAttributeTypeItalic
Definition: ui.h:2341
@ uiAttributeTypeColor
Definition: ui.h:2343
@ uiAttributeTypeUnderlineColor
Definition: ui.h:2346
@ uiAttributeTypeStretch
Definition: ui.h:2342
@ uiAttributeTypeSize
Definition: ui.h:2339
@ uiAttributeTypeFeatures
Definition: ui.h:2347
@ uiAttributeTypeWeight
Definition: ui.h:2340
void uiAreaBeginUserWindowMove(uiArea *a)
uiUnderline
Definition: ui.h:2482
@ uiUnderlineSuggestion
Definition: ui.h:2486
@ uiUnderlineSingle
Definition: ui.h:2484
@ uiUnderlineDouble
Definition: ui.h:2485
@ uiUnderlineNone
Definition: ui.h:2483
uiExtKey
Definition: ui.h:2927
@ uiExtKeyF8
Definition: ui.h:2946
@ uiExtKeyNSubtract
Definition: ui.h:2964
@ uiExtKeyF5
Definition: ui.h:2943
@ uiExtKeyF3
Definition: ui.h:2941
@ uiExtKeyN3
Definition: ui.h:2954
@ uiExtKeyPageUp
Definition: ui.h:2933
@ uiExtKeyF12
Definition: ui.h:2950
@ uiExtKeyF4
Definition: ui.h:2942
@ uiExtKeyRight
Definition: ui.h:2938
@ uiExtKeyNDot
Definition: ui.h:2961
@ uiExtKeyDelete
Definition: ui.h:2930
@ uiExtKeyNAdd
Definition: ui.h:2963
@ uiExtKeyN6
Definition: ui.h:2957
@ uiExtKeyNEnter
Definition: ui.h:2962
@ uiExtKeyDown
Definition: ui.h:2936
@ uiExtKeyF10
Definition: ui.h:2948
@ uiExtKeyN8
Definition: ui.h:2959
@ uiExtKeyN4
Definition: ui.h:2955
@ uiExtKeyInsert
Definition: ui.h:2929
@ uiExtKeyN0
Definition: ui.h:2951
@ uiExtKeyN5
Definition: ui.h:2956
@ uiExtKeyN1
Definition: ui.h:2952
@ uiExtKeyF11
Definition: ui.h:2949
@ uiExtKeyF1
Definition: ui.h:2939
@ uiExtKeyF2
Definition: ui.h:2940
@ uiExtKeyF6
Definition: ui.h:2944
@ uiExtKeyLeft
Definition: ui.h:2937
@ uiExtKeyUp
Definition: ui.h:2935
@ uiExtKeyEscape
Definition: ui.h:2928
@ uiExtKeyF7
Definition: ui.h:2945
@ uiExtKeyN7
Definition: ui.h:2958
@ uiExtKeyNDivide
Definition: ui.h:2966
@ uiExtKeyEnd
Definition: ui.h:2932
@ uiExtKeyN2
Definition: ui.h:2953
@ uiExtKeyHome
Definition: ui.h:2931
@ uiExtKeyF9
Definition: ui.h:2947
@ uiExtKeyPageDown
Definition: ui.h:2934
@ uiExtKeyN9
Definition: ui.h:2960
@ uiExtKeyNMultiply
Definition: ui.h:2965
#define _UI_EXTERN
Definition: ui.h:39
uiForEach
Definition: ui.h:53
@ uiForEachStop
Definition: ui.h:55
@ uiForEachContinue
Definition: ui.h:54
void uiAreaBeginUserWindowResize(uiArea *a, uiWindowResizeEdge edge)
void uiDrawTextLayoutExtents(uiDrawTextLayout *tl, double *width, double *height)
size_t uiAttributedStringLen(const uiAttributedString *s)
uiDrawPath * uiDrawNewPath(uiDrawFillMode fillMode)
uiAttribute * uiNewUnderlineColorAttribute(uiUnderlineColor u, double r, double g, double b, double a)
int uiDrawPathEnded(uiDrawPath *p)
void uiDrawPathNewFigure(uiDrawPath *p, double x, double y)
void uiDrawStroke(uiDrawContext *c, uiDrawPath *path, uiDrawBrush *b, uiDrawStrokeParams *p)
size_t uiAttributedStringNumGraphemes(uiAttributedString *s)
uiDrawLineJoin
Definition: ui.h:2190
@ uiDrawLineJoinRound
Definition: ui.h:2192
@ uiDrawLineJoinMiter
Definition: ui.h:2191
@ uiDrawLineJoinBevel
Definition: ui.h:2193
void uiFreeFontDescriptor(uiFontDescriptor *desc)
Frees resources owned by a uiFontDescriptor filled by libui.
const char * uiAttributeFamily(const uiAttribute *a)
void uiDrawPathArcTo(uiDrawPath *p, double xCenter, double yCenter, double radius, double startAngle, double sweep, int negative)
uiDrawFillMode
Definition: ui.h:2201
@ uiDrawFillModeWinding
Definition: ui.h:2202
@ uiDrawFillModeAlternate
Definition: ui.h:2203
uiDrawLineCap
Definition: ui.h:2184
@ uiDrawLineCapRound
Definition: ui.h:2186
@ uiDrawLineCapFlat
Definition: ui.h:2185
@ uiDrawLineCapSquare
Definition: ui.h:2187
void uiOpenTypeFeaturesAdd(uiOpenTypeFeatures *otf, char a, char b, char c, char d, uint32_t value)
void uiDrawMatrixTransformSize(uiDrawMatrix *m, double *x, double *y)
void uiFreeOpenTypeFeatures(uiOpenTypeFeatures *otf)
uiTextItalic uiAttributeItalic(const uiAttribute *a)
void uiDrawMatrixSetIdentity(uiDrawMatrix *m)
const char * uiVersion(void)
Returns the build's commit-* tag or Git hash, or unknown.
void uiDrawPathCloseFigure(uiDrawPath *p)
struct uiOpenTypeFeatures uiOpenTypeFeatures
Definition: ui.h:2550
void uiAttributedStringSetAttribute(uiAttributedString *s, uiAttribute *a, size_t start, size_t end)
void uiDrawMatrixRotate(uiDrawMatrix *m, double x, double y, double amount)
uiAttribute * uiNewItalicAttribute(uiTextItalic italic)
int uiDrawMatrixInvert(uiDrawMatrix *m)
void uiUserBugCannotSetParentOnToplevel(const char *type)
struct uiDrawTextLayout uiDrawTextLayout
Definition: ui.h:2770
uiUnderlineColor
Definition: ui.h:2510
@ uiUnderlineColorCustom
Definition: ui.h:2511
@ uiUnderlineColorAuxiliary
Definition: ui.h:2514
@ uiUnderlineColorGrammar
Definition: ui.h:2513
@ uiUnderlineColorSpelling
Definition: ui.h:2512
void uiDrawMatrixScale(uiDrawMatrix *m, double xCenter, double yCenter, double x, double y)
uiAlign
Alignment specifiers to define placement within the reserved area.
Definition: ui.h:3133
@ uiAlignStart
Place at start.
Definition: ui.h:3135
@ uiAlignEnd
Place at end.
Definition: ui.h:3137
@ uiAlignFill
Fill area.
Definition: ui.h:3134
@ uiAlignCenter
Place in center.
Definition: ui.h:3136
uiDrawBrushType
Definition: ui.h:2177
@ uiDrawBrushTypeImage
Definition: ui.h:2181
@ uiDrawBrushTypeSolid
Definition: ui.h:2178
@ uiDrawBrushTypeLinearGradient
Definition: ui.h:2179
@ uiDrawBrushTypeRadialGradient
Definition: ui.h:2180
void uiOnShouldQuit(int(*f)(void *data), void *data)
uiArea * uiNewArea(uiAreaHandler *ah)
void uiDrawRestore(uiDrawContext *c)
void uiDrawMatrixTransformPoint(uiDrawMatrix *m, double *x, double *y)
void uiAttributedStringForEachAttribute(const uiAttributedString *s, uiAttributedStringForEachAttributeFunc f, void *data)
void uiDrawPathBezierTo(uiDrawPath *p, double c1x, double c1y, double c2x, double c2y, double endX, double endY)
uiTextStretch
Definition: ui.h:2444
@ uiTextStretchSemiCondensed
Definition: ui.h:2448
@ uiTextStretchExpanded
Definition: ui.h:2451
@ uiTextStretchExtraExpanded
Definition: ui.h:2452
@ uiTextStretchUltraExpanded
Definition: ui.h:2453
@ uiTextStretchExtraCondensed
Definition: ui.h:2446
@ uiTextStretchCondensed
Definition: ui.h:2447
@ uiTextStretchSemiExpanded
Definition: ui.h:2450
@ uiTextStretchNormal
Definition: ui.h:2449
@ uiTextStretchUltraCondensed
Definition: ui.h:2445
void uiDrawMatrixSkew(uiDrawMatrix *m, double x, double y, double xamount, double yamount)
void uiFreeAttribute(uiAttribute *a)
uiAttribute * uiNewStretchAttribute(uiTextStretch stretch)
int uiMainStep(int wait)
@ uiTableSelectionModeZeroOrMany
Allow zero or many (multiple) rows to be selected.
Definition: ui.h:4066
@ uiTableSelectionModeZeroOrOne
Allow zero or one row to be selected.
Definition: ui.h:4064
@ uiTableSelectionModeNone
Allow no row selection.
Definition: ui.h:4063
@ uiTableSelectionModeOne
Allow for exactly one row to be selected.
Definition: ui.h:4065
@ uiSortIndicatorNone
Definition: ui.h:3520
@ uiSortIndicatorDescending
Definition: ui.h:3522
@ uiSortIndicatorAscending
Definition: ui.h:3521