libui
A portable GUI library for C
Loading...
Searching...
No Matches
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
19
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 generated by cmake
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.
57
59
61 size_t Size;
62};
63
64_UI_EXTERN const char *uiInit(uiInitOptions *options);
66_UI_EXTERN void uiFreeInitError(const char *err);
67
68_UI_EXTERN void uiMain(void);
70_UI_EXTERN int uiMainStep(int wait);
71_UI_EXTERN void uiQuit(void);
72
73_UI_EXTERN void uiQueueMain(void (*f)(void *data), void *data);
74
75// TODO standardize the looping behavior return type, either with some enum or something, and the test expressions throughout the code
76// TODO figure out what to do about looping and the exact point that the timer is rescheduled so we can document it; see https://github.com/andlabs/libui/pull/277
77// TODO (also in the above link) document that this cannot be called from any thread, unlike uiQueueMain()
78// TODO document that the minimum exact timing, either accuracy (timer burst, etc.) or granularity (15ms on Windows, etc.), is OS-defined
79// TODO also figure out how long until the initial tick is registered on all platforms to document
80// TODO also add a comment about how useful this could be in bindings, depending on the language being bound to
81_UI_EXTERN void uiTimer(int milliseconds, int (*f)(void *data), void *data);
82
83_UI_EXTERN void uiOnShouldQuit(int (*f)(void *data), void *data);
84
85
95_UI_EXTERN void uiFreeText(char *text);
96
97
103typedef struct uiControl uiControl;
104struct uiControl {
105 uint32_t Signature;
106 uint32_t OSSignature;
108 void (*Destroy)(uiControl *);
109 uintptr_t (*Handle)(uiControl *);
110 uiControl *(*Parent)(uiControl *);
114 void (*Show)(uiControl *);
115 void (*Hide)(uiControl *);
117 void (*Enable)(uiControl *);
118 void (*Disable)(uiControl *);
119};
120// TOOD add argument names to all arguments
121#define uiControl(this) ((uiControl *) (this))
122
135
144
153
163
172
181
189
198
209
217
225
235_UI_EXTERN uiControl *uiAllocControl(size_t n, uint32_t OSsig, uint32_t typesig, const char *typenamestr);
236
246
257
270
271// TODO Move this to private API? According to old/new.md this should be used by toplevel controls.
273
274
290typedef struct uiWindow uiWindow;
291#define uiWindow(this) ((uiWindow *) (this))
292
303
314_UI_EXTERN void uiWindowSetTitle(uiWindow *w, const char *title);
315
327_UI_EXTERN void uiWindowPosition(uiWindow *w, int *x, int *y);
328
341
356 void (*f)(uiWindow *sender, void *senderData), void *data);
357
367_UI_EXTERN void uiWindowContentSize(uiWindow *w, int *width, int *height);
368
379_UI_EXTERN void uiWindowSetContentSize(uiWindow *w, int width, int height);
380
389
399
414 void (*f)(uiWindow *sender, void *senderData), void *data);
415
432 int (*f)(uiWindow *sender, void *senderData), void *data);
433
447 void (*f)(uiWindow *sender, void *senderData), void *data);
448
457
466
476
485
494
505
514
524
537_UI_EXTERN uiWindow *uiNewWindow(const char *title, int width, int height, int hasMenubar);
538
539
547typedef struct uiButton uiButton;
548#define uiButton(this) ((uiButton *) (this))
549
560
570_UI_EXTERN void uiButtonSetText(uiButton *b, const char *text);
571
585 void (*f)(uiButton *sender, void *senderData), void *data);
586
596_UI_EXTERN uiButton *uiNewButton(const char *text);
597
598
609typedef struct uiBox uiBox;
610#define uiBox(this) ((uiBox *) (this))
611
623_UI_EXTERN void uiBoxAppend(uiBox *b, uiControl *child, int stretchy);
624
633
642_UI_EXTERN void uiBoxDelete(uiBox *b, int index);
643
654
665_UI_EXTERN void uiBoxSetPadded(uiBox *b, int padded);
666
676
686
687
695typedef struct uiCheckbox uiCheckbox;
696#define uiCheckbox(this) ((uiCheckbox *) (this))
697
708
718_UI_EXTERN void uiCheckboxSetText(uiCheckbox *c, const char *text);
719
734 void (*f)(uiCheckbox *sender, void *senderData), void *data);
735
744
753
764
765
773typedef struct uiEntry uiEntry;
774#define uiEntry(this) ((uiEntry *) (this))
775
786
796_UI_EXTERN void uiEntrySetText(uiEntry *e, const char *text);
797
811 void (*f)(uiEntry *sender, void *senderData), void *data);
812
821
829_UI_EXTERN void uiEntrySetReadOnly(uiEntry *e, int readonly);
830
841
852_UI_EXTERN void uiEntrySetPlaceholder(uiEntry *e, const char *text);
853
861
871
882
883
891typedef struct uiLabel uiLabel;
892#define uiLabel(this) ((uiLabel *) (this))
893
904
914_UI_EXTERN void uiLabelSetText(uiLabel *l, const char *text);
915
925_UI_EXTERN uiLabel *uiNewLabel(const char *text);
926
927
938typedef struct uiTab uiTab;
939#define uiTab(this) ((uiTab *) (this))
940
949
958
973 void (*f)(uiTab *sender, void *senderData), void *data);
974
985_UI_EXTERN void uiTabAppend(uiTab *t, const char *name, uiControl *c);
986
998_UI_EXTERN void uiTabInsertAt(uiTab *t, const char *name, int index, uiControl *c);
999
1008_UI_EXTERN void uiTabDelete(uiTab *t, int index);
1009
1018
1027_UI_EXTERN int uiTabMargined(uiTab *t, int index);
1028
1039_UI_EXTERN void uiTabSetMargined(uiTab *t, int index, int margined);
1040
1048
1049
1063typedef struct uiGroup uiGroup;
1064#define uiGroup(this) ((uiGroup *) (this))
1065
1076
1086_UI_EXTERN void uiGroupSetTitle(uiGroup *g, const char *title);
1087
1096
1105
1116
1126_UI_EXTERN uiGroup *uiNewGroup(const char *title);
1127
1128
1144typedef struct uiSpinbox uiSpinbox;
1145#define uiSpinbox(this) ((uiSpinbox *) (this))
1146
1155
1165
1180 void (*f)(uiSpinbox *sender, void *senderData), void *data);
1181
1197
1198
1213typedef struct uiSlider uiSlider;
1214#define uiSlider(this) ((uiSlider *) (this))
1215
1224
1233
1242
1251
1266 void (*f)(uiSlider *sender, void *senderData), void *data);
1267
1281 void (*f)(uiSlider *sender, void *senderData), void *data);
1282
1293_UI_EXTERN void uiSliderSetRange(uiSlider *s, int min, int max);
1294
1310
1311
1322#define uiProgressBar(this) ((uiProgressBar *) (this))
1323
1332
1347
1355
1356
1365#define uiSeparator(this) ((uiSeparator *) (this))
1366
1374
1382
1383
1392typedef struct uiCombobox uiCombobox;
1393#define uiCombobox(this) ((uiCombobox *) (this))
1394
1404_UI_EXTERN void uiComboboxAppend(uiCombobox *c, const char *text);
1405
1416_UI_EXTERN void uiComboboxInsertAt(uiCombobox *c, int index, const char *text);
1417
1429
1437
1446
1455
1464
1480 void (*f)(uiCombobox *sender, void *senderData), void *data);
1481
1489
1490
1504#define uiEditableCombobox(this) ((uiEditableCombobox *) (this))
1505
1516
1530
1541
1542// TODO what do we call a function that sets the currently selected item and fills the text field with it?
1543// editable comboboxes have no consistent concept of selected item
1544
1559 void (*f)(uiEditableCombobox *sender, void *senderData), void *data);
1560
1571
1582
1590
1591
1600#define uiRadioButtons(this) ((uiRadioButtons *) (this))
1601
1612
1621
1630
1645 void (*f)(uiRadioButtons *sender, void *senderData), void *data);
1646
1654
1655struct tm;
1673#define uiDateTimePicker(this) ((uiDateTimePicker *) (this))
1674
1684
1695
1710 void (*f)(uiDateTimePicker *sender, void *senderData), void *data);
1711
1719
1727
1735
1736
1746#define uiMultilineEntry(this) ((uiMultilineEntry *) (this))
1747
1758
1769
1780
1796 void (*f)(uiMultilineEntry *sender, void *senderData), void *data);
1797
1806
1815
1823
1833
1834
1841typedef struct uiMenuItem uiMenuItem;
1842#define uiMenuItem(this) ((uiMenuItem *) (this))
1843
1851
1861
1876 void (*f)(uiMenuItem *sender, uiWindow *window, void *senderData), void *data);
1877
1888
1899
1928typedef struct uiMenu uiMenu;
1929#define uiMenu(this) ((uiMenu *) (this))
1930
1942
1954
1964
1974
1984
1992
2004_UI_EXTERN uiMenu *uiNewMenu(const char *name);
2005
2006
2019
2032
2048
2063_UI_EXTERN void uiMsgBox(uiWindow *parent, const char *title, const char *description);
2064
2080_UI_EXTERN void uiMsgBoxError(uiWindow *parent, const char *title, const char *description);
2081
2082typedef struct uiArea uiArea;
2087
2089
2092 // TODO document that resizes cause a full redraw for non-scrolling areas; implementation-defined for scrolling areas
2094 // TODO document that on first show if the mouse is already in the uiArea then one gets sent with left=0
2095 // TODO what about when the area is hidden and then shown again?
2096 void (*MouseCrossed)(uiAreaHandler *, uiArea *, int left);
2099};
2100
2101// TODO RTL layouts?
2102// TODO reconcile edge and corner naming
2112 // TODO have one for keyboard resizes?
2113 // TODO GDK doesn't seem to have any others, including for keyboards...
2114 // TODO way to bring up the system menu instead?
2115};
2116
2117#define uiArea(this) ((uiArea *) (this))
2118// TODO give a better name
2119// TODO document the types of width and height
2120_UI_EXTERN void uiAreaSetSize(uiArea *a, int width, int height);
2121// TODO uiAreaQueueRedraw()
2123_UI_EXTERN void uiAreaScrollTo(uiArea *a, double x, double y, double width, double height);
2124// TODO document these can only be called within Mouse() handlers
2125// TODO should these be allowed on scrolling areas?
2126// TODO decide which mouse events should be accepted; Down is the only one guaranteed to work right now
2127// TODO what happens to events after calling this up to and including the next mouse up?
2128// TODO release capture?
2133
2136
2137 // TODO document that this is only defined for nonscrolling areas
2140
2141 double ClipX;
2142 double ClipY;
2145};
2146
2147typedef struct uiDrawPath uiDrawPath;
2151
2153
2160
2166
2172
2173// this is the default for botoh cairo and Direct2D (in the latter case, from the C++ helper functions)
2174// Core Graphics doesn't explicitly specify a default, but NSBezierPath allows you to choose one, and this is the initial value
2175// so we're good to use it too!
2176#define uiDrawDefaultMiterLimit 10.0
2177
2182
2184 double M11;
2185 double M12;
2186 double M21;
2187 double M22;
2188 double M31;
2189 double M32;
2190};
2191
2194
2195 // solid brushes
2196 double R;
2197 double G;
2198 double B;
2199 double A;
2200
2201 // gradient brushes
2202 double X0; // linear: start X, radial: start X
2203 double Y0; // linear: start Y, radial: start Y
2204 double X1; // linear: end X, radial: outer circle center X
2205 double Y1; // linear: end Y, radial: outer circle center Y
2206 double OuterRadius; // radial gradients only
2208 size_t NumStops;
2209 // TODO extend mode
2210 // cairo: none, repeat, reflect, pad; no individual control
2211 // Direct2D: repeat, reflect, pad; no individual control
2212 // Core Graphics: none, pad; before and after individually
2213 // TODO cairo documentation is inconsistent about pad
2214
2215 // TODO images
2216
2217 // TODO transforms
2218};
2219
2221 double Pos;
2222 double R;
2223 double G;
2224 double B;
2225 double A;
2226};
2227
2231 // TODO what if this is 0? on windows there will be a crash with dashing
2234 double *Dashes;
2235 // TOOD what if this is 1 on Direct2D?
2236 // TODO what if a dash is 0 on Cairo or Quartz?
2239};
2240
2243
2244_UI_EXTERN void uiDrawPathNewFigure(uiDrawPath *p, double x, double y);
2245_UI_EXTERN void uiDrawPathNewFigureWithArc(uiDrawPath *p, double xCenter, double yCenter, double radius, double startAngle, double sweep, int negative);
2246_UI_EXTERN void uiDrawPathLineTo(uiDrawPath *p, double x, double y);
2247// notes: angles are both relative to 0 and go counterclockwise
2248// TODO is the initial line segment on cairo and OS X a proper join?
2249// TODO what if sweep < 0?
2250_UI_EXTERN void uiDrawPathArcTo(uiDrawPath *p, double xCenter, double yCenter, double radius, double startAngle, double sweep, int negative);
2251_UI_EXTERN void uiDrawPathBezierTo(uiDrawPath *p, double c1x, double c1y, double c2x, double c2y, double endX, double endY);
2252// TODO quadratic bezier
2254
2255// TODO effect of these when a figure is already started
2256_UI_EXTERN void uiDrawPathAddRectangle(uiDrawPath *p, double x, double y, double width, double height);
2257
2260
2263
2264// TODO primitives:
2265// - rounded rectangles
2266// - elliptical arcs
2267// - quadratic bezier curves
2268
2270_UI_EXTERN void uiDrawMatrixTranslate(uiDrawMatrix *m, double x, double y);
2271_UI_EXTERN void uiDrawMatrixScale(uiDrawMatrix *m, double xCenter, double yCenter, double x, double y);
2272_UI_EXTERN void uiDrawMatrixRotate(uiDrawMatrix *m, double x, double y, double amount);
2273_UI_EXTERN void uiDrawMatrixSkew(uiDrawMatrix *m, double x, double y, double xamount, double yamount);
2279
2281
2282// TODO add a uiDrawPathStrokeToFill() or something like that
2284
2287
2288// uiAttribute stores information about an attribute in a
2289// uiAttributedString.
2290//
2291// You do not create uiAttributes directly; instead, you create a
2292// uiAttribute of a given type using the specialized constructor
2293// functions. For every Unicode codepoint in the uiAttributedString,
2294// at most one value of each attribute type can be applied.
2295//
2296// uiAttributes are immutable and the uiAttributedString takes
2297// ownership of the uiAttribute object once assigned, copying its
2298// contents as necessary.
2299// TODO define whether all this, for both uiTableValue and uiAttribute, is undefined behavior or a caught error
2301
2302// @role uiAttribute destructor
2303// uiFreeAttribute() frees a uiAttribute. You generally do not need to
2304// call this yourself, as uiAttributedString does this for you. In fact,
2305// it is an error to call this function on a uiAttribute that has been
2306// given to a uiAttributedString. You can call this, however, if you
2307// created a uiAttribute that you aren't going to use later.
2309
2310// uiAttributeType holds the possible uiAttribute types that may be
2311// returned by uiAttributeGetType(). Refer to the documentation for
2312// each type's constructor function for details on each type.
2325
2326// uiAttributeGetType() returns the type of a.
2327// TODO I don't like this name
2329
2330// uiNewFamilyAttribute() creates a new uiAttribute that changes the
2331// font family of the text it is applied to. family is copied; you do not
2332// need to keep it alive after uiNewFamilyAttribute() returns. Font
2333// family names are case-insensitive.
2335
2336// uiAttributeFamily() returns the font family stored in a. The
2337// returned string is owned by a. It is an error to call this on a
2338// uiAttribute that does not hold a font family.
2340
2341// uiNewSizeAttribute() creates a new uiAttribute that changes the
2342// size of the text it is applied to, in typographical points.
2344
2345// uiAttributeSize() returns the font size stored in a. It is an error to
2346// call this on a uiAttribute that does not hold a font size.
2348
2349// uiTextWeight represents possible text weights. These roughly
2350// map to the OS/2 text weight field of TrueType and OpenType
2351// fonts, or to CSS weight numbers. The named constants are
2352// nominal values; the actual values may vary by font and by OS,
2353// though this isn't particularly likely. Any value between
2354// uiTextWeightMinimum and uiTextWeightMaximum, inclusive,
2355// is allowed.
2356//
2357// Note that due to restrictions in early versions of Windows, some
2358// fonts have "special" weights be exposed in many programs as
2359// separate font families. This is perhaps most notable with
2360// Arial Black. libui does not do this, even on Windows (because the
2361// DirectWrite API libui uses on Windows does not do this); to
2362// specify Arial Black, use family Arial and weight uiTextWeightBlack.
2378
2379// uiNewWeightAttribute() creates a new uiAttribute that changes the
2380// weight of the text it is applied to. It is an error to specify a weight
2381// outside the range [uiTextWeightMinimum,
2382// uiTextWeightMaximum].
2384
2385// uiAttributeWeight() returns the font weight stored in a. It is an error
2386// to call this on a uiAttribute that does not hold a font weight.
2388
2389// uiTextItalic represents possible italic modes for a font. Italic
2390// represents "true" italics where the slanted glyphs have custom
2391// shapes, whereas oblique represents italics that are merely slanted
2392// versions of the normal glyphs. Most fonts usually have one or the
2393// other.
2399
2400// uiNewItalicAttribute() creates a new uiAttribute that changes the
2401// italic mode of the text it is applied to. It is an error to specify an
2402// italic mode not specified in uiTextItalic.
2404
2405// uiAttributeItalic() returns the font italic mode stored in a. It is an
2406// error to call this on a uiAttribute that does not hold a font italic
2407// mode.
2409
2410// uiTextStretch represents possible stretches (also called "widths")
2411// of a font.
2412//
2413// Note that due to restrictions in early versions of Windows, some
2414// fonts have "special" stretches be exposed in many programs as
2415// separate font families. This is perhaps most notable with
2416// Arial Condensed. libui does not do this, even on Windows (because
2417// the DirectWrite API libui uses on Windows does not do this); to
2418// specify Arial Condensed, use family Arial and stretch
2419// uiTextStretchCondensed.
2431
2432// uiNewStretchAttribute() creates a new uiAttribute that changes the
2433// stretch of the text it is applied to. It is an error to specify a strech
2434// not specified in uiTextStretch.
2436
2437// uiAttributeStretch() returns the font stretch stored in a. It is an
2438// error to call this on a uiAttribute that does not hold a font stretch.
2440
2441// uiNewColorAttribute() creates a new uiAttribute that changes the
2442// color of the text it is applied to. It is an error to specify an invalid
2443// color.
2444_UI_EXTERN uiAttribute *uiNewColorAttribute(double r, double g, double b, double a);
2445
2446// uiAttributeColor() returns the text color stored in a. It is an
2447// error to call this on a uiAttribute that does not hold a text color.
2448_UI_EXTERN void uiAttributeColor(const uiAttribute *a, double *r, double *g, double *b, double *alpha);
2449
2450// uiNewBackgroundAttribute() creates a new uiAttribute that
2451// changes the background color of the text it is applied to. It is an
2452// error to specify an invalid color.
2453_UI_EXTERN uiAttribute *uiNewBackgroundAttribute(double r, double g, double b, double a);
2454
2455// TODO reuse uiAttributeColor() for background colors, or make a new function...
2456
2457// uiUnderline specifies a type of underline to use on text.
2462 uiUnderlineSuggestion, // wavy or dotted underlines used for spelling/grammar checkers
2463};
2464
2465// uiNewUnderlineAttribute() creates a new uiAttribute that changes
2466// the type of underline on the text it is applied to. It is an error to
2467// specify an underline type not specified in uiUnderline.
2469
2470// uiAttributeUnderline() returns the underline type stored in a. It is
2471// an error to call this on a uiAttribute that does not hold an underline
2472// style.
2474
2475// uiUnderlineColor specifies the color of any underline on the text it
2476// is applied to, regardless of the type of underline. In addition to
2477// being able to specify a custom color, you can explicitly specify
2478// platform-specific colors for suggestion underlines; to use them
2479// correctly, pair them with uiUnderlineSuggestion (though they can
2480// be used on other types of underline as well).
2481//
2482// If an underline type is applied but no underline color is
2483// specified, the text color is used instead. If an underline color
2484// is specified without an underline type, the underline color
2485// attribute is ignored, but not removed from the uiAttributedString.
2490 uiUnderlineColorAuxiliary, // for instance, the color used by smart replacements on macOS or in Microsoft Office
2491};
2492
2493// uiNewUnderlineColorAttribute() creates a new uiAttribute that
2494// changes the color of the underline on the text it is applied to.
2495// It is an error to specify an underline color not specified in
2496// uiUnderlineColor.
2497//
2498// If the specified color type is uiUnderlineColorCustom, it is an
2499// error to specify an invalid color value. Otherwise, the color values
2500// are ignored and should be specified as zero.
2501_UI_EXTERN uiAttribute *uiNewUnderlineColorAttribute(uiUnderlineColor u, double r, double g, double b, double a);
2502
2503// uiAttributeUnderlineColor() returns the underline color stored in
2504// a. It is an error to call this on a uiAttribute that does not hold an
2505// underline color.
2506_UI_EXTERN void uiAttributeUnderlineColor(const uiAttribute *a, uiUnderlineColor *u, double *r, double *g, double *b, double *alpha);
2507
2508// uiOpenTypeFeatures represents a set of OpenType feature
2509// tag-value pairs, for applying OpenType features to text.
2510// OpenType feature tags are four-character codes defined by
2511// OpenType that cover things from design features like small
2512// caps and swashes to language-specific glyph shapes and
2513// beyond. Each tag may only appear once in any given
2514// uiOpenTypeFeatures instance. Each value is a 32-bit integer,
2515// often used as a Boolean flag, but sometimes as an index to choose
2516// a glyph shape to use.
2517//
2518// If a font does not support a certain feature, that feature will be
2519// ignored. (TODO verify this on all OSs)
2520//
2521// See the OpenType specification at
2522// https://www.microsoft.com/typography/otspec/featuretags.htm
2523// for the complete list of available features, information on specific
2524// features, and how to use them.
2525// TODO invalid features
2527
2528// uiOpenTypeFeaturesForEachFunc is the type of the function
2529// invoked by uiOpenTypeFeaturesForEach() for every OpenType
2530// feature in otf. Refer to that function's documentation for more
2531// details.
2532typedef uiForEach (*uiOpenTypeFeaturesForEachFunc)(const uiOpenTypeFeatures *otf, char a, char b, char c, char d, uint32_t value, void *data);
2533
2534// @role uiOpenTypeFeatures constructor
2535// uiNewOpenTypeFeatures() returns a new uiOpenTypeFeatures
2536// instance, with no tags yet added.
2538
2539// @role uiOpenTypeFeatures destructor
2540// uiFreeOpenTypeFeatures() frees otf.
2542
2543// uiOpenTypeFeaturesClone() makes a copy of otf and returns it.
2544// Changing one will not affect the other.
2546
2547// uiOpenTypeFeaturesAdd() adds the given feature tag and value
2548// to otf. The feature tag is specified by a, b, c, and d. If there is
2549// already a value associated with the specified tag in otf, the old
2550// value is removed.
2551_UI_EXTERN void uiOpenTypeFeaturesAdd(uiOpenTypeFeatures *otf, char a, char b, char c, char d, uint32_t value);
2552
2553// uiOpenTypeFeaturesRemove() removes the given feature tag
2554// and value from otf. If the tag is not present in otf,
2555// uiOpenTypeFeaturesRemove() does nothing.
2556_UI_EXTERN void uiOpenTypeFeaturesRemove(uiOpenTypeFeatures *otf, char a, char b, char c, char d);
2557
2558// uiOpenTypeFeaturesGet() determines whether the given feature
2559// tag is present in otf. If it is, *value is set to the tag's value and
2560// nonzero is returned. Otherwise, zero is returned.
2561//
2562// Note that if uiOpenTypeFeaturesGet() returns zero, value isn't
2563// changed. This is important: if a feature is not present in a
2564// uiOpenTypeFeatures, the feature is NOT treated as if its
2565// value was zero anyway. Script-specific font shaping rules and
2566// font-specific feature settings may use a different default value
2567// for a feature. You should likewise not treat a missing feature as
2568// having a value of zero either. Instead, a missing feature should
2569// be treated as having some unspecified default value.
2570_UI_EXTERN int uiOpenTypeFeaturesGet(const uiOpenTypeFeatures *otf, char a, char b, char c, char d, uint32_t *value);
2571
2572// uiOpenTypeFeaturesForEach() executes f for every tag-value
2573// pair in otf. The enumeration order is unspecified. You cannot
2574// modify otf while uiOpenTypeFeaturesForEach() is running.
2576
2577// uiNewFeaturesAttribute() creates a new uiAttribute that changes
2578// the font family of the text it is applied to. otf is copied; you may
2579// free it after uiNewFeaturesAttribute() returns.
2581
2582// uiAttributeFeatures() returns the OpenType features stored in a.
2583// The returned uiOpenTypeFeatures object is owned by a. It is an
2584// error to call this on a uiAttribute that does not hold OpenType
2585// features.
2587
2588// uiAttributedString represents a string of UTF-8 text that can
2589// optionally be embellished with formatting attributes. libui
2590// provides the list of formatting attributes, which cover common
2591// formatting traits like boldface and color as well as advanced
2592// typographical features provided by OpenType like superscripts
2593// and small caps. These attributes can be combined in a variety of
2594// ways.
2595//
2596// Attributes are applied to runs of Unicode codepoints in the string.
2597// Zero-length runs are elided. Consecutive runs that have the same
2598// attribute type and value are merged. Each attribute is independent
2599// of each other attribute; overlapping attributes of different types
2600// do not split each other apart, but different values of the same
2601// attribute type do.
2602//
2603// The empty string can also be represented by uiAttributedString,
2604// but because of the no-zero-length-attribute rule, it will not have
2605// attributes.
2606//
2607// A uiAttributedString takes ownership of all attributes given to
2608// it, as it may need to duplicate or delete uiAttribute objects at
2609// any time. By extension, when you free a uiAttributedString,
2610// all uiAttributes within will also be freed. Each method will
2611// describe its own rules in more details.
2612//
2613// In addition, uiAttributedString provides facilities for moving
2614// between grapheme clusters, which represent a character
2615// from the point of view of the end user. The cursor of a text editor
2616// is always placed on a grapheme boundary, so you can use these
2617// features to move the cursor left or right by one "character".
2618// TODO does uiAttributedString itself need this
2619//
2620// uiAttributedString does not provide enough information to be able
2621// to draw itself onto a uiDrawContext or respond to user actions.
2622// In order to do that, you'll need to use a uiDrawTextLayout, which
2623// is built from the combination of a uiAttributedString and a set of
2624// layout-specific properties.
2626
2627// uiAttributedStringForEachAttributeFunc is the type of the function
2628// invoked by uiAttributedStringForEachAttribute() for every
2629// attribute in s. Refer to that function's documentation for more
2630// details.
2631typedef uiForEach (*uiAttributedStringForEachAttributeFunc)(const uiAttributedString *s, const uiAttribute *a, size_t start, size_t end, void *data);
2632
2633// @role uiAttributedString constructor
2634// uiNewAttributedString() creates a new uiAttributedString from
2635// initialString. The string will be entirely unattributed.
2637
2638// @role uiAttributedString destructor
2639// uiFreeAttributedString() destroys the uiAttributedString s.
2640// It will also free all uiAttributes within.
2642
2643// uiAttributedStringString() returns the textual content of s as a
2644// '\0'-terminated UTF-8 string. The returned pointer is valid until
2645// the next change to the textual content of s.
2647
2648// uiAttributedStringLength() returns the number of UTF-8 bytes in
2649// the textual content of s, excluding the terminating '\0'.
2651
2652// uiAttributedStringAppendUnattributed() adds the '\0'-terminated
2653// UTF-8 string str to the end of s. The new substring will be
2654// unattributed.
2656
2657// uiAttributedStringInsertAtUnattributed() adds the '\0'-terminated
2658// UTF-8 string str to s at the byte position specified by at. The new
2659// substring will be unattributed; existing attributes will be moved
2660// along with their text.
2662
2663// TODO add the Append and InsertAtExtendingAttributes functions
2664// TODO and add functions that take a string + length
2665
2666// uiAttributedStringDelete() deletes the characters and attributes of
2667// s in the byte range [start, end).
2668_UI_EXTERN void uiAttributedStringDelete(uiAttributedString *s, size_t start, size_t end);
2669
2670// 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
2671
2672// uiAttributedStringSetAttribute() sets a in the byte range [start, end)
2673// of s. Any existing attributes in that byte range of the same type are
2674// removed. s takes ownership of a; you should not use it after
2675// uiAttributedStringSetAttribute() returns.
2677
2678// uiAttributedStringForEachAttribute() enumerates all the
2679// uiAttributes in s. It is an error to modify s in f. Within f, s still
2680// owns the attribute; you can neither free it nor save it for later
2681// use.
2682// TODO reword the above for consistency (TODO and find out what I meant by that)
2683// TODO define an enumeration order (or mark it as undefined); also define how consecutive runs of identical attributes are handled here and sync with the definition of uiAttributedString itself
2685
2686// TODO const correct this somehow (the implementation needs to mutate the structure)
2688
2689// TODO const correct this somehow (the implementation needs to mutate the structure)
2691
2692// TODO const correct this somehow (the implementation needs to mutate the structure)
2694
2695// uiFontDescriptor provides a complete description of a font where
2696// one is needed. Currently, this means as the default font of a
2697// uiDrawTextLayout and as the data returned by uiFontButton.
2698// All the members operate like the respective uiAttributes.
2700
2702 // TODO const-correct this or figure out how to deal with this when getting a value
2703 char *Family;
2704 double Size;
2708};
2709
2712
2713// uiDrawTextLayout is a concrete representation of a
2714// uiAttributedString that can be displayed in a uiDrawContext.
2715// It includes information important for the drawing of a block of
2716// text, including the bounding box to wrap the text within, the
2717// alignment of lines of text within that box, areas to mark as
2718// being selected, and other things.
2719//
2720// Unlike uiAttributedString, the content of a uiDrawTextLayout is
2721// immutable once it has been created.
2722//
2723// TODO talk about OS-specific differences with text drawing that libui can't account for...
2725
2726// uiDrawTextAlign specifies the alignment of lines of text in a
2727// uiDrawTextLayout.
2728// TODO should this really have Draw in the name?
2734
2735// uiDrawTextLayoutParams describes a uiDrawTextLayout.
2736// DefaultFont is used to render any text that is not attributed
2737// sufficiently in String. Width determines the width of the bounding
2738// box of the text; the height is determined automatically.
2740
2741// TODO const-correct this somehow
2748
2749// @role uiDrawTextLayout constructor
2750// uiDrawNewTextLayout() creates a new uiDrawTextLayout from
2751// the given parameters.
2752//
2753// TODO
2754// - allow creating a layout out of a substring
2755// - allow marking compositon strings
2756// - allow marking selections, even after creation
2757// - add the following functions:
2758// - uiDrawTextLayoutHeightForWidth() (returns the height that a layout would need to be to display the entire string at a given width)
2759// - uiDrawTextLayoutRangeForSize() (returns what substring would fit in a given size)
2760// - uiDrawTextLayoutNewWithHeight() (limits amount of string used by the height)
2761// - some function to fix up a range (for text editing)
2763
2764// @role uiDrawFreeTextLayout destructor
2765// uiDrawFreeTextLayout() frees tl. The underlying
2766// uiAttributedString is not freed.
2768
2769// uiDrawText() draws tl in c with the top-left point of tl at (x, y).
2770_UI_EXTERN void uiDrawText(uiDrawContext *c, uiDrawTextLayout *tl, double x, double y);
2771
2772// uiDrawTextLayoutExtents() returns the width and height of tl
2773// in width and height. The returned width may be smaller than
2774// the width passed into uiDrawNewTextLayout() depending on
2775// how the text in tl is wrapped. Therefore, you can use this
2776// function to get the actual size of the text layout.
2777_UI_EXTERN void uiDrawTextLayoutExtents(uiDrawTextLayout *tl, double *width, double *height);
2778
2779// TODO metrics functions
2780
2781// TODO number of lines visible for clipping rect, range visible for clipping rect?
2782
2783
2795#define uiFontButton(this) ((uiFontButton *) (this))
2796
2807
2821 void (*f)(uiFontButton *sender, void *senderData), void *data);
2822
2832
2846
2860
2861// TODO document drag captures
2863 // TODO document what these mean for scrolling areas
2864 double X;
2865 double Y;
2866
2867 // TODO see draw above
2870
2871 int Down;
2872 int Up;
2873
2875
2877
2878 uint64_t Held1To64;
2879};
2880
2922
2932
2933
2947#define uiColorButton(this) ((uiColorButton *) (this))
2948
2959_UI_EXTERN void uiColorButtonColor(uiColorButton *b, double *r, double *g, double *bl, double *a);
2960
2971_UI_EXTERN void uiColorButtonSetColor(uiColorButton *b, double r, double g, double bl, double a);
2972
2986 void (*f)(uiColorButton *sender, void *senderData), void *data);
2987
2995
2996
3012typedef struct uiForm uiForm;
3013#define uiForm(this) ((uiForm *) (this))
3014
3029_UI_EXTERN void uiFormAppend(uiForm *f, const char *label, uiControl *c, int stretchy);
3030
3038
3047_UI_EXTERN void uiFormDelete(uiForm *f, int index);
3048
3059
3070_UI_EXTERN void uiFormSetPadded(uiForm *f, int padded);
3071
3079
3080
3093
3106
3128typedef struct uiGrid uiGrid;
3129#define uiGrid(this) ((uiGrid *) (this))
3130
3146_UI_EXTERN void uiGridAppend(uiGrid *g, uiControl *c, int left, int top, int xspan, int yspan, int hexpand, uiAlign halign, int vexpand, uiAlign valign);
3147
3163_UI_EXTERN void uiGridInsertAt(uiGrid *g, uiControl *c, uiControl *existing, uiAt at, int xspan, int yspan, int hexpand, uiAlign halign, int vexpand, uiAlign valign);
3164
3175
3186_UI_EXTERN void uiGridSetPadded(uiGrid *g, int padded);
3187
3195
3196
3217typedef struct uiImage uiImage;
3218
3230_UI_EXTERN uiImage *uiNewImage(double width, double height);
3231
3239
3256_UI_EXTERN void uiImageAppend(uiImage *i, void *pixels, int pixelWidth, int pixelHeight, int byteStride);
3257
3291
3307
3322
3336
3345
3356
3369
3385
3399
3413
3424
3435_UI_EXTERN uiTableValue *uiNewTableValueColor(double r, double g, double b, double a);
3436
3449_UI_EXTERN void uiTableValueColor(const uiTableValue *v, double *r, double *g, double *b, double *a);
3450
3451
3465
3488
3555
3564
3574
3587
3599
3612// TODO reordering/moving
3613
3615#define uiTableModelColumnNeverEditable (-1)
3617#define uiTableModelColumnAlwaysEditable (-2)
3618
3637
3660
3682typedef struct uiTable uiTable;
3683#define uiTable(this) ((uiTable *) (this))
3684
3703 const char *name,
3704 int textModelColumn,
3705 int textEditableModelColumn,
3707
3723 const char *name,
3724 int imageModelColumn);
3725
3748 const char *name,
3749 int imageModelColumn,
3750 int textModelColumn,
3751 int textEditableModelColumn,
3753
3770 const char *name,
3771 int checkboxModelColumn,
3772 int checkboxEditableModelColumn);
3773
3798 const char *name,
3799 int checkboxModelColumn,
3800 int checkboxEditableModelColumn,
3801 int textModelColumn,
3802 int textEditableModelColumn,
3804
3821 const char *name,
3822 int progressModelColumn);
3823
3845 const char *name,
3846 int buttonModelColumn,
3847 int buttonClickableModelColumn);
3848
3857
3866
3875
3876
3891 void (*f)(uiTable *t, int row, void *data),
3892 void *data);
3893
3911 void (*f)(uiTable *t, int row, void *data),
3912 void *data);
3913
3927 int column,
3928 uiSortIndicator indicator);
3929
3939
3954 void (*f)(uiTable *sender, int column, void *senderData), void *data);
3955
3965
3979_UI_EXTERN void uiTableColumnSetWidth(uiTable *t, int column, int width);
3980
4005
4015
4027
4042_UI_EXTERN void uiTableOnSelectionChanged(uiTable *t, void (*f)(uiTable *t, void *data), void *data);
4043
4052{
4054 int *Rows;
4055};
4056
4068
4081
4089
4100_UI_EXTERN void uiControlSetTooltip(uiControl *c, const char *tooltip);
4101
4102// Set an icon from an ICO icon buffer.
4103_UI_EXTERN void uiWindowSetIcon(uiWindow *w, const void *data, size_t length);
4104
4105// WIP - not supported on all platforms yet
4106typedef struct uiScroll uiScroll;
4109
4110// Experimental - use uiAttribute API on normal widgets
4112
4113
4114#ifdef __cplusplus
4115}
4116#endif
4117
4118#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:3993
uiSortIndicator
Sort indicators.
Definition ui.h:3460
Definition ui.h:2134
double AreaWidth
Definition ui.h:2138
double ClipWidth
Definition ui.h:2143
double ClipHeight
Definition ui.h:2144
double AreaHeight
Definition ui.h:2139
double ClipY
Definition ui.h:2142
uiDrawContext * Context
Definition ui.h:2135
double ClipX
Definition ui.h:2141
Definition ui.h:2090
void(* DragBroken)(uiAreaHandler *, uiArea *)
Definition ui.h:2097
int(* KeyEvent)(uiAreaHandler *, uiArea *, uiAreaKeyEvent *)
Definition ui.h:2098
void(* Draw)(uiAreaHandler *, uiArea *, uiAreaDrawParams *)
Definition ui.h:2091
void(* MouseCrossed)(uiAreaHandler *, uiArea *, int left)
Definition ui.h:2096
void(* MouseEvent)(uiAreaHandler *, uiArea *, uiAreaMouseEvent *)
Definition ui.h:2093
Definition ui.h:2923
char Key
Definition ui.h:2924
int Up
Definition ui.h:2930
uiExtKey ExtKey
Definition ui.h:2925
uiModifiers Modifier
Definition ui.h:2926
uiModifiers Modifiers
Definition ui.h:2928
Definition ui.h:2862
int Count
Definition ui.h:2874
double X
Definition ui.h:2864
double AreaHeight
Definition ui.h:2869
int Down
Definition ui.h:2871
uint64_t Held1To64
Definition ui.h:2878
int Up
Definition ui.h:2872
uiModifiers Modifiers
Definition ui.h:2876
double Y
Definition ui.h:2865
double AreaWidth
Definition ui.h:2868
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.
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.
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.
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.
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.
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:113
uint32_t OSSignature
Definition ui.h:106
int(* Toplevel)(uiControl *)
Definition ui.h:112
void(* SetParent)(uiControl *, uiControl *)
Definition ui.h:111
void uiControlSetTooltip(uiControl *c, const char *tooltip)
Sets the control tooltip.
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:118
void(* Show)(uiControl *)
Definition ui.h:114
void(* Destroy)(uiControl *)
Definition ui.h:108
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:115
void uiControlSetParent(uiControl *c, uiControl *parent)
Sets the control's parent.
uint32_t TypeSignature
Definition ui.h:107
int(* Enabled)(uiControl *)
Definition ui.h:116
uiControl * uiAllocControl(size_t n, uint32_t OSsig, uint32_t typesig, const char *typenamestr)
Allocates a uiControl.
uint32_t Signature
Definition ui.h:105
uiControl * uiControlParent(uiControl *c)
Returns the parent control.
uintptr_t(* Handle)(uiControl *)
Definition ui.h:109
void(* Enable)(uiControl *)
Definition ui.h:117
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:2220
double R
Definition ui.h:2222
double G
Definition ui.h:2223
double Pos
Definition ui.h:2221
double B
Definition ui.h:2224
double A
Definition ui.h:2225
Definition ui.h:2192
double Y1
Definition ui.h:2205
double B
Definition ui.h:2198
size_t NumStops
Definition ui.h:2208
double R
Definition ui.h:2196
double Y0
Definition ui.h:2203
double A
Definition ui.h:2199
uiDrawBrushGradientStop * Stops
Definition ui.h:2207
double X1
Definition ui.h:2204
double X0
Definition ui.h:2202
double OuterRadius
Definition ui.h:2206
double G
Definition ui.h:2197
uiDrawBrushType Type
Definition ui.h:2193
Definition ui.h:2183
double M32
Definition ui.h:2189
double M11
Definition ui.h:2184
double M22
Definition ui.h:2187
double M31
Definition ui.h:2188
double M21
Definition ui.h:2186
double M12
Definition ui.h:2185
Definition ui.h:2228
size_t NumDashes
Definition ui.h:2237
double DashPhase
Definition ui.h:2238
double * Dashes
Definition ui.h:2234
double Thickness
Definition ui.h:2232
double MiterLimit
Definition ui.h:2233
uiDrawLineJoin Join
Definition ui.h:2230
uiDrawLineCap Cap
Definition ui.h:2229
Definition ui.h:2742
uiAttributedString * String
Definition ui.h:2743
double Width
Definition ui.h:2745
uiFontDescriptor * DefaultFont
Definition ui.h:2744
uiDrawTextAlign Align
Definition ui.h:2746
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 uiEditableComboboxSetPlaceholder(uiEditableCombobox *c, const char *text)
Sets text to be displayed in the editable combo box when it is empty.
void uiEditableComboboxSetText(uiEditableCombobox *c, const char *text)
Sets the editable combo box text.
char * uiEditableComboboxPlaceholder(uiEditableCombobox *c)
Returns the editable combo box's placeholder.
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.
void uiEntrySetPlaceholder(uiEntry *e, const char *text)
Sets text to be displayed in the entry when it is empty.
uiEntry * uiNewEntry(void)
Creates a new entry.
char * uiEntryPlaceholder(uiEntry *e)
Returns the entry's placeholder.
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.
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)
Frees a uiFontDescriptor previously filled by uiFontButtonFont().
Definition ui.h:2701
uiTextItalic Italic
Definition ui.h:2706
uiTextWeight Weight
Definition ui.h:2705
char * Family
Definition ui.h:2703
uiTextStretch Stretch
Definition ui.h:2707
double Size
Definition ui.h:2704
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.
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.
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.
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.
uiImage * uiNewImage(double width, double height)
Creates a new image container.
void uiImageAppend(uiImage *i, void *pixels, int pixelWidth, int pixelHeight, int byteStride)
Appends a new image representation.
void uiFreeImage(uiImage *i)
Frees the image container and all associated resources.
Definition ui.h:60
size_t Size
Definition ui.h:61
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
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:3503
void(* SetCellValue)(uiTableModelHandler *, uiTableModel *, int, int, const uiTableValue *)
Sets the cell value for (row, column).
Definition ui.h:3553
int(* NumColumns)(uiTableModelHandler *, uiTableModel *)
Returns the number of columns in the uiTableModel.
Definition ui.h:3512
uiTableValueType(* ColumnType)(uiTableModelHandler *, uiTableModel *, int column)
Returns the column type in for of a uiTableValueType.
Definition ui.h:3520
int(* NumRows)(uiTableModelHandler *, uiTableModel *)
Returns the number of rows in the uiTableModel.
Definition ui.h:3525
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:3645
int RowBackgroundColorModelColumn
uiTableModel column that defines background color for each row,
Definition ui.h:3658
uiTableModel * Model
Model holding the data to be displayed.
Definition ui.h:3649
Holds an array of selected row indices for a table.
Definition ui.h:4052
void uiFreeTableSelection(uiTableSelection *s)
Frees the given uiTableSelection and all it's resources.
int * Rows
Array containing selected row indices, NULL on empty selection.
Definition ui.h:4054
int NumRows
Number of selected rows.
Definition ui.h:4053
Optional parameters to control the appearance of text columns.
Definition ui.h:3626
int ColorModelColumn
uiTableModel column that defines the text color for each cell.
Definition ui.h:3635
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.
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.
struct uiScroll uiScroll
Definition ui.h:4106
#define uiFontButton(this)
Definition ui.h:2795
#define uiSlider(this)
Definition ui.h:1214
void uiDrawMatrixMultiply(uiDrawMatrix *dest, uiDrawMatrix *src)
uiAttribute * uiNewUnderlineAttribute(uiUnderline u)
void uiFreeAttributedString(uiAttributedString *s)
uiWindowResizeEdge
Definition ui.h:2103
@ uiWindowResizeEdgeTop
Definition ui.h:2105
@ uiWindowResizeEdgeBottom
Definition ui.h:2107
@ uiWindowResizeEdgeBottomLeft
Definition ui.h:2110
@ uiWindowResizeEdgeLeft
Definition ui.h:2104
@ uiWindowResizeEdgeRight
Definition ui.h:2106
@ uiWindowResizeEdgeTopLeft
Definition ui.h:2108
@ uiWindowResizeEdgeBottomRight
Definition ui.h:2111
@ uiWindowResizeEdgeTopRight
Definition ui.h:2109
const uiOpenTypeFeatures * uiAttributeFeatures(const uiAttribute *a)
uiTableValueType
uiTableValue types.
Definition ui.h:3330
@ uiTableValueTypeImage
Definition ui.h:3332
@ uiTableValueTypeInt
Definition ui.h:3333
@ uiTableValueTypeColor
Definition ui.h:3334
@ uiTableValueTypeString
Definition ui.h:3331
uiOpenTypeFeatures * uiNewOpenTypeFeatures(void)
#define uiDateTimePicker(this)
Definition ui.h:1673
#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:3100
@ uiAtTop
Place above control.
Definition ui.h:3102
@ uiAtLeading
Place before control.
Definition ui.h:3101
@ uiAtBottom
Place below control.
Definition ui.h:3104
@ uiAtTrailing
Place behind control.
Definition ui.h:3103
#define uiMultilineEntry(this)
Definition ui.h:1746
void uiDrawPathNewFigureWithArc(uiDrawPath *p, double xCenter, double yCenter, double radius, double startAngle, double sweep, int negative)
struct uiAttributedString uiAttributedString
Definition ui.h:2625
uiAttribute * uiNewSizeAttribute(double size)
#define uiGroup(this)
Definition ui.h:1064
void uiLoadControlFont(uiFontDescriptor *f)
const char * uiInit(uiInitOptions *options)
void uiLabelSetAttribute(uiLabel *label, uiAttribute *attr)
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)
#define uiProgressBar(this)
Definition ui.h:1322
uiForEach(* uiAttributedStringForEachAttributeFunc)(const uiAttributedString *s, const uiAttribute *a, size_t start, size_t end, void *data)
Definition ui.h:2631
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)
#define uiSeparator(this)
Definition ui.h:1365
void uiAttributeColor(const uiAttribute *a, double *r, double *g, double *b, double *alpha)
uiTextItalic
Definition ui.h:2394
@ uiTextItalicOblique
Definition ui.h:2396
@ uiTextItalicItalic
Definition ui.h:2397
@ uiTextItalicNormal
Definition ui.h:2395
void uiDrawPathLineTo(uiDrawPath *p, double x, double y)
void uiDrawFreePath(uiDrawPath *p)
uiModifiers
Keyboard modifier keys.
Definition ui.h:2854
@ uiModifierAlt
Alternate/Option key.
Definition ui.h:2856
@ uiModifierSuper
Super/Command/Windows key.
Definition ui.h:2858
@ uiModifierShift
Shift key.
Definition ui.h:2857
@ uiModifierCtrl
Control key.
Definition ui.h:2855
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:2729
@ uiDrawTextAlignCenter
Definition ui.h:2731
@ uiDrawTextAlignLeft
Definition ui.h:2730
@ uiDrawTextAlignRight
Definition ui.h:2732
void uiFreeInitError(const char *err)
#define uiArea(this)
Definition ui.h:2117
uiForEach(* uiOpenTypeFeaturesForEachFunc)(const uiOpenTypeFeatures *otf, char a, char b, char c, char d, uint32_t value, void *data)
Definition ui.h:2532
struct uiAttribute uiAttribute
Definition ui.h:2300
int uiOpenTypeFeaturesGet(const uiOpenTypeFeatures *otf, char a, char b, char c, char d, uint32_t *value)
#define uiMenuItem(this)
Definition ui.h:1842
struct uiDrawPath uiDrawPath
Definition ui.h:2147
struct uiTableValue uiTableValue
Definition ui.h:3306
uiDrawTextLayout * uiDrawNewTextLayout(uiDrawTextLayoutParams *params)
uiAttributeType uiAttributeGetType(const uiAttribute *a)
struct uiTableModel uiTableModel
Definition ui.h:3487
uiTextWeight
Definition ui.h:2363
@ uiTextWeightMaximum
Definition ui.h:2376
@ uiTextWeightNormal
Definition ui.h:2369
@ uiTextWeightBook
Definition ui.h:2368
@ uiTextWeightMedium
Definition ui.h:2370
@ uiTextWeightUltraLight
Definition ui.h:2366
@ uiTextWeightBold
Definition ui.h:2372
@ uiTextWeightUltraBold
Definition ui.h:2373
@ uiTextWeightSemiBold
Definition ui.h:2371
@ uiTextWeightUltraHeavy
Definition ui.h:2375
@ uiTextWeightLight
Definition ui.h:2367
@ uiTextWeightThin
Definition ui.h:2365
@ uiTextWeightMinimum
Definition ui.h:2364
@ uiTextWeightHeavy
Definition ui.h:2374
struct uiDrawContext uiDrawContext
Definition ui.h:2088
int uiDrawMatrixInvertible(uiDrawMatrix *m)
void uiQuit(void)
void uiAreaQueueRedrawAll(uiArea *a)
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 uiWindowSetIcon(uiWindow *w, const void *data, size_t length)
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)
#define uiLabel(this)
Definition ui.h:892
uiAttribute * uiNewFeaturesAttribute(const uiOpenTypeFeatures *otf)
void uiDrawClip(uiDrawContext *c, uiDrawPath *path)
uiUnderline uiAttributeUnderline(const uiAttribute *a)
#define uiControl(this)
Definition ui.h:121
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)
#define uiRadioButtons(this)
Definition ui.h:1600
uiAttributeType
Definition ui.h:2313
@ uiAttributeTypeUnderline
Definition ui.h:2321
@ uiAttributeTypeBackground
Definition ui.h:2320
@ uiAttributeTypeFamily
Definition ui.h:2314
@ uiAttributeTypeItalic
Definition ui.h:2317
@ uiAttributeTypeColor
Definition ui.h:2319
@ uiAttributeTypeUnderlineColor
Definition ui.h:2322
@ uiAttributeTypeStretch
Definition ui.h:2318
@ uiAttributeTypeSize
Definition ui.h:2315
@ uiAttributeTypeFeatures
Definition ui.h:2323
@ uiAttributeTypeWeight
Definition ui.h:2316
void uiAreaBeginUserWindowMove(uiArea *a)
uiUnderline
Definition ui.h:2458
@ uiUnderlineSuggestion
Definition ui.h:2462
@ uiUnderlineSingle
Definition ui.h:2460
@ uiUnderlineDouble
Definition ui.h:2461
@ uiUnderlineNone
Definition ui.h:2459
#define uiWindow(this)
Definition ui.h:291
uiExtKey
Definition ui.h:2881
@ uiExtKeyF8
Definition ui.h:2900
@ uiExtKeyNSubtract
Definition ui.h:2918
@ uiExtKeyF5
Definition ui.h:2897
@ uiExtKeyF3
Definition ui.h:2895
@ uiExtKeyN3
Definition ui.h:2908
@ uiExtKeyPageUp
Definition ui.h:2887
@ uiExtKeyF12
Definition ui.h:2904
@ uiExtKeyF4
Definition ui.h:2896
@ uiExtKeyRight
Definition ui.h:2892
@ uiExtKeyNDot
Definition ui.h:2915
@ uiExtKeyDelete
Definition ui.h:2884
@ uiExtKeyNAdd
Definition ui.h:2917
@ uiExtKeyN6
Definition ui.h:2911
@ uiExtKeyNEnter
Definition ui.h:2916
@ uiExtKeyDown
Definition ui.h:2890
@ uiExtKeyF10
Definition ui.h:2902
@ uiExtKeyN8
Definition ui.h:2913
@ uiExtKeyN4
Definition ui.h:2909
@ uiExtKeyInsert
Definition ui.h:2883
@ uiExtKeyN0
Definition ui.h:2905
@ uiExtKeyN5
Definition ui.h:2910
@ uiExtKeyN1
Definition ui.h:2906
@ uiExtKeyF11
Definition ui.h:2903
@ uiExtKeyF1
Definition ui.h:2893
@ uiExtKeyF2
Definition ui.h:2894
@ uiExtKeyF6
Definition ui.h:2898
@ uiExtKeyLeft
Definition ui.h:2891
@ uiExtKeyUp
Definition ui.h:2889
@ uiExtKeyEscape
Definition ui.h:2882
@ uiExtKeyF7
Definition ui.h:2899
@ uiExtKeyN7
Definition ui.h:2912
@ uiExtKeyNDivide
Definition ui.h:2920
@ uiExtKeyEnd
Definition ui.h:2886
@ uiExtKeyN2
Definition ui.h:2907
@ uiExtKeyHome
Definition ui.h:2885
@ uiExtKeyF9
Definition ui.h:2901
@ uiExtKeyPageDown
Definition ui.h:2888
@ uiExtKeyN9
Definition ui.h:2914
@ uiExtKeyNMultiply
Definition ui.h:2919
#define uiForm(this)
Definition ui.h:3013
#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)
#define uiButton(this)
Definition ui.h:548
uiDrawLineJoin
Definition ui.h:2167
@ uiDrawLineJoinRound
Definition ui.h:2169
@ uiDrawLineJoinMiter
Definition ui.h:2168
@ uiDrawLineJoinBevel
Definition ui.h:2170
void uiFreeFontDescriptor(uiFontDescriptor *desc)
#define uiCombobox(this)
Definition ui.h:1393
const char * uiAttributeFamily(const uiAttribute *a)
void uiDrawPathArcTo(uiDrawPath *p, double xCenter, double yCenter, double radius, double startAngle, double sweep, int negative)
#define uiMenu(this)
Definition ui.h:1929
uiDrawFillMode
Definition ui.h:2178
@ uiDrawFillModeWinding
Definition ui.h:2179
@ uiDrawFillModeAlternate
Definition ui.h:2180
uiDrawLineCap
Definition ui.h:2161
@ uiDrawLineCapRound
Definition ui.h:2163
@ uiDrawLineCapFlat
Definition ui.h:2162
@ uiDrawLineCapSquare
Definition ui.h:2164
void uiOpenTypeFeaturesAdd(uiOpenTypeFeatures *otf, char a, char b, char c, char d, uint32_t value)
#define uiSpinbox(this)
Definition ui.h:1145
void uiDrawMatrixTransformSize(uiDrawMatrix *m, double *x, double *y)
void uiFreeOpenTypeFeatures(uiOpenTypeFeatures *otf)
uiTextItalic uiAttributeItalic(const uiAttribute *a)
void uiDrawMatrixSetIdentity(uiDrawMatrix *m)
#define uiCheckbox(this)
Definition ui.h:696
void uiAreaSetSize(uiArea *a, int width, int height)
void uiDrawPathCloseFigure(uiDrawPath *p)
uiScroll * uiNewScroll(void)
#define uiTable(this)
Definition ui.h:3683
struct uiOpenTypeFeatures uiOpenTypeFeatures
Definition ui.h:2526
void uiAttributedStringSetAttribute(uiAttributedString *s, uiAttribute *a, size_t start, size_t end)
#define uiGrid(this)
Definition ui.h:3129
void uiDrawMatrixRotate(uiDrawMatrix *m, double x, double y, double amount)
uiAttribute * uiNewItalicAttribute(uiTextItalic italic)
int uiDrawMatrixInvert(uiDrawMatrix *m)
#define uiBox(this)
Definition ui.h:610
void uiUserBugCannotSetParentOnToplevel(const char *type)
struct uiDrawTextLayout uiDrawTextLayout
Definition ui.h:2724
void uiScrollSetChild(uiScroll *scroll, uiControl *ctl)
#define uiTab(this)
Definition ui.h:939
#define uiEditableCombobox(this)
Definition ui.h:1504
uiUnderlineColor
Definition ui.h:2486
@ uiUnderlineColorCustom
Definition ui.h:2487
@ uiUnderlineColorAuxiliary
Definition ui.h:2490
@ uiUnderlineColorGrammar
Definition ui.h:2489
@ uiUnderlineColorSpelling
Definition ui.h:2488
void uiAreaScrollTo(uiArea *a, double x, double y, double width, double height)
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:3087
@ uiAlignStart
Place at start.
Definition ui.h:3089
@ uiAlignEnd
Place at end.
Definition ui.h:3091
@ uiAlignFill
Fill area.
Definition ui.h:3088
@ uiAlignCenter
Place in center.
Definition ui.h:3090
uiDrawBrushType
Definition ui.h:2154
@ uiDrawBrushTypeImage
Definition ui.h:2158
@ uiDrawBrushTypeSolid
Definition ui.h:2155
@ uiDrawBrushTypeLinearGradient
Definition ui.h:2156
@ uiDrawBrushTypeRadialGradient
Definition ui.h:2157
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:2420
@ uiTextStretchSemiCondensed
Definition ui.h:2424
@ uiTextStretchExpanded
Definition ui.h:2427
@ uiTextStretchExtraExpanded
Definition ui.h:2428
@ uiTextStretchUltraExpanded
Definition ui.h:2429
@ uiTextStretchExtraCondensed
Definition ui.h:2422
@ uiTextStretchCondensed
Definition ui.h:2423
@ uiTextStretchSemiExpanded
Definition ui.h:2426
@ uiTextStretchNormal
Definition ui.h:2425
@ uiTextStretchUltraCondensed
Definition ui.h:2421
void uiDrawMatrixSkew(uiDrawMatrix *m, double x, double y, double xamount, double yamount)
void uiFreeAttribute(uiAttribute *a)
uiAttribute * uiNewStretchAttribute(uiTextStretch stretch)
int uiMainStep(int wait)
#define uiEntry(this)
Definition ui.h:774
#define uiColorButton(this)
Definition ui.h:2947
@ uiTableSelectionModeZeroOrMany
Allow zero or many (multiple) rows to be selected.
Definition ui.h:4003
@ uiTableSelectionModeZeroOrOne
Allow zero or one row to be selected.
Definition ui.h:4001
@ uiTableSelectionModeNone
Allow no row selection.
Definition ui.h:4000
@ uiTableSelectionModeOne
Allow for exactly one row to be selected.
Definition ui.h:4002
@ uiSortIndicatorNone
Definition ui.h:3461
@ uiSortIndicatorDescending
Definition ui.h:3463
@ uiSortIndicatorAscending
Definition ui.h:3462