2015-09-04 13:51:10 -05:00
|
|
|
// 4 september 2015
|
|
|
|
|
|
|
|
typedef struct uiArea uiArea;
|
|
|
|
typedef struct uiAreaHandler uiAreaHandler;
|
|
|
|
typedef struct uiAreaDrawParams uiAreaDrawParams;
|
2015-09-10 22:00:29 -05:00
|
|
|
typedef struct uiAreaMouseEvent uiAreaMouseEvent;
|
2015-09-12 22:21:34 -05:00
|
|
|
typedef struct uiAreaKeyEvent uiAreaKeyEvent;
|
2015-09-04 13:51:10 -05:00
|
|
|
|
2015-09-06 15:55:43 -05:00
|
|
|
typedef struct uiDrawContext uiDrawContext;
|
|
|
|
|
2015-09-04 13:51:10 -05:00
|
|
|
struct uiAreaHandler {
|
2015-09-06 15:20:37 -05:00
|
|
|
void (*Draw)(uiAreaHandler *, uiArea *, uiAreaDrawParams *);
|
2015-09-05 19:05:48 -05:00
|
|
|
uintmax_t (*HScrollMax)(uiAreaHandler *, uiArea *);
|
|
|
|
uintmax_t (*VScrollMax)(uiAreaHandler *, uiArea *);
|
2015-09-10 20:17:00 -05:00
|
|
|
int (*RedrawOnResize)(uiAreaHandler *, uiArea *);
|
2015-09-10 22:00:29 -05:00
|
|
|
void (*MouseEvent)(uiAreaHandler *, uiArea *, uiAreaMouseEvent *);
|
2015-09-11 21:59:59 -05:00
|
|
|
void (*DragBroken)(uiAreaHandler *, uiArea *);
|
2015-09-12 22:21:34 -05:00
|
|
|
int (*KeyEvent)(uiAreaHandler *, uiArea *, uiAreaKeyEvent *);
|
2015-09-04 13:51:10 -05:00
|
|
|
};
|
|
|
|
|
2015-09-06 15:20:37 -05:00
|
|
|
struct uiAreaDrawParams {
|
2015-09-06 15:55:43 -05:00
|
|
|
uiDrawContext *Context;
|
2015-09-06 15:20:37 -05:00
|
|
|
|
|
|
|
intmax_t ClientWidth;
|
|
|
|
intmax_t ClientHeight;
|
|
|
|
|
|
|
|
intmax_t ClipX;
|
|
|
|
intmax_t ClipY;
|
|
|
|
intmax_t ClipWidth;
|
|
|
|
intmax_t ClipHeight;
|
|
|
|
|
2015-09-06 15:55:43 -05:00
|
|
|
int DPIX;
|
|
|
|
int DPIY;
|
2015-09-06 15:20:37 -05:00
|
|
|
|
|
|
|
intmax_t HScrollPos;
|
|
|
|
intmax_t VScrollPos;
|
|
|
|
};
|
2015-09-06 19:02:01 -05:00
|
|
|
|
2015-09-06 21:48:25 -05:00
|
|
|
// TODO proper sources
|
2015-09-06 19:02:01 -05:00
|
|
|
// TODO dotting/dashing
|
|
|
|
|
|
|
|
typedef struct uiDrawStrokeParams uiDrawStrokeParams;
|
|
|
|
typedef enum uiDrawLineCap uiDrawLineCap;
|
|
|
|
typedef enum uiDrawLineJoin uiDrawLineJoin;
|
2015-09-06 21:48:25 -05:00
|
|
|
typedef enum uiDrawFillMode uiDrawFillMode;
|
2015-09-06 19:02:01 -05:00
|
|
|
|
|
|
|
enum uiDrawLineCap {
|
|
|
|
uiDrawLineCapFlat,
|
|
|
|
uiDrawLineCapRound,
|
|
|
|
uiDrawLineCapSquare,
|
|
|
|
};
|
|
|
|
|
|
|
|
enum uiDrawLineJoin {
|
|
|
|
uiDrawLineJoinMiter,
|
|
|
|
uiDrawLineJoinRound,
|
|
|
|
uiDrawLineJoinBevel,
|
|
|
|
};
|
|
|
|
|
2015-09-06 21:48:25 -05:00
|
|
|
// this is the default for botoh cairo and GDI
|
|
|
|
// Core Graphics doesn't explicitly specify a default, but NSBezierPath allows you to choose one, and this is the initial value
|
|
|
|
// so we're good to use it too!
|
|
|
|
#define uiDrawDefaultMiterLimit 10.0
|
|
|
|
|
|
|
|
enum uiDrawFillMode {
|
|
|
|
uiDrawFillModeWinding,
|
|
|
|
uiDrawFillModeAlternate,
|
|
|
|
};
|
|
|
|
|
2015-09-06 19:02:01 -05:00
|
|
|
struct uiDrawStrokeParams {
|
|
|
|
uiDrawLineCap Cap;
|
|
|
|
uiDrawLineJoin Join;
|
|
|
|
intmax_t Thickness;
|
2015-09-06 21:48:25 -05:00
|
|
|
double MiterLimit;
|
|
|
|
};
|
|
|
|
|
2015-09-07 09:13:15 -05:00
|
|
|
void uiDrawBeginPathRGB(uiDrawContext *, uint8_t, uint8_t, uint8_t);
|
2015-09-08 22:00:13 -05:00
|
|
|
// TODO verify these aren't alpha premultiplied anywhere
|
2015-09-07 09:25:59 -05:00
|
|
|
void uiDrawBeginPathRGBA(uiDrawContext *, uint8_t, uint8_t, uint8_t, uint8_t);
|
2015-09-06 19:02:01 -05:00
|
|
|
|
|
|
|
void uiDrawMoveTo(uiDrawContext *, intmax_t, intmax_t);
|
|
|
|
void uiDrawLineTo(uiDrawContext *, intmax_t, intmax_t);
|
2015-09-07 09:25:59 -05:00
|
|
|
void uiDrawRectangle(uiDrawContext *, intmax_t, intmax_t, intmax_t, intmax_t);
|
2015-09-07 14:34:14 -05:00
|
|
|
// notes: angles are both relative to 0 and go counterclockwise
|
2015-09-08 15:28:08 -05:00
|
|
|
void uiDrawArcTo(uiDrawContext *, intmax_t, intmax_t, intmax_t, double, double, int);
|
2015-09-07 18:29:42 -05:00
|
|
|
// TODO behavior when there is no initial point on Windows and OS X
|
|
|
|
void uiDrawBezierTo(uiDrawContext *, intmax_t, intmax_t, intmax_t, intmax_t, intmax_t, intmax_t);
|
2015-09-06 21:48:25 -05:00
|
|
|
void uiDrawCloseFigure(uiDrawContext *);
|
2015-09-07 09:13:15 -05:00
|
|
|
|
2015-09-06 19:02:01 -05:00
|
|
|
void uiDrawStroke(uiDrawContext *, uiDrawStrokeParams *);
|
2015-09-07 09:25:59 -05:00
|
|
|
void uiDrawFill(uiDrawContext *, uiDrawFillMode);
|
2015-09-06 22:37:05 -05:00
|
|
|
|
2015-09-14 19:02:52 -05:00
|
|
|
// TODO primitives:
|
|
|
|
// - rounded rectangles
|
|
|
|
// - elliptical arcs
|
|
|
|
// - quadratic bezier curves
|
|
|
|
|
2015-09-10 22:00:29 -05:00
|
|
|
typedef enum uiModifiers uiModifiers;
|
|
|
|
|
|
|
|
enum uiModifiers {
|
|
|
|
uiModifierCtrl = 1 << 0,
|
|
|
|
uiModifierAlt = 1 << 1,
|
|
|
|
uiModifierShift = 1 << 2,
|
|
|
|
uiModifierSuper = 1 << 3,
|
|
|
|
};
|
|
|
|
|
|
|
|
struct uiAreaMouseEvent {
|
|
|
|
intmax_t X;
|
|
|
|
intmax_t Y;
|
|
|
|
|
2015-09-11 20:24:39 -05:00
|
|
|
intmax_t ClientWidth;
|
|
|
|
intmax_t ClientHeight;
|
2015-09-10 22:00:29 -05:00
|
|
|
intmax_t HScrollPos;
|
|
|
|
intmax_t VScrollPos;
|
|
|
|
|
|
|
|
uintmax_t Down;
|
|
|
|
uintmax_t Up;
|
|
|
|
|
2015-09-11 12:07:27 -05:00
|
|
|
uintmax_t Count;
|
|
|
|
|
2015-09-10 22:00:29 -05:00
|
|
|
uiModifiers Modifiers;
|
|
|
|
|
|
|
|
uint64_t Held1To64;
|
|
|
|
};
|
2015-09-12 22:21:34 -05:00
|
|
|
|
|
|
|
typedef enum uiExtKey uiExtKey;
|
|
|
|
|
|
|
|
enum uiExtKey {
|
|
|
|
uiExtKeyEscape = 1,
|
|
|
|
uiExtKeyInsert, // equivalent to "Help" on Apple keyboards
|
|
|
|
uiExtKeyDelete,
|
|
|
|
uiExtKeyHome,
|
|
|
|
uiExtKeyEnd,
|
|
|
|
uiExtKeyPageUp,
|
|
|
|
uiExtKeyPageDown,
|
|
|
|
uiExtKeyUp,
|
|
|
|
uiExtKeyDown,
|
|
|
|
uiExtKeyLeft,
|
|
|
|
uiExtKeyRight,
|
|
|
|
uiExtKeyF1, // F1..F12 are guaranteed to be consecutive
|
|
|
|
uiExtKeyF2,
|
|
|
|
uiExtKeyF3,
|
|
|
|
uiExtKeyF4,
|
|
|
|
uiExtKeyF5,
|
|
|
|
uiExtKeyF6,
|
|
|
|
uiExtKeyF7,
|
|
|
|
uiExtKeyF8,
|
|
|
|
uiExtKeyF9,
|
|
|
|
uiExtKeyF10,
|
|
|
|
uiExtKeyF11,
|
|
|
|
uiExtKeyF12,
|
|
|
|
uiExtKeyN0, // numpad keys; independent of Num Lock state
|
|
|
|
uiExtKeyN1, // N0..N9 are guaranteed to be consecutive
|
|
|
|
uiExtKeyN2,
|
|
|
|
uiExtKeyN3,
|
|
|
|
uiExtKeyN4,
|
|
|
|
uiExtKeyN5,
|
|
|
|
uiExtKeyN6,
|
|
|
|
uiExtKeyN7,
|
|
|
|
uiExtKeyN8,
|
|
|
|
uiExtKeyN9,
|
|
|
|
uiExtKeyNDot,
|
|
|
|
uiExtKeyNEnter,
|
|
|
|
uiExtKeyNAdd,
|
|
|
|
uiExtKeyNSubtract,
|
|
|
|
uiExtKeyNMultiply,
|
|
|
|
uiExtKeyNDivide,
|
|
|
|
};
|
|
|
|
|
|
|
|
struct uiAreaKeyEvent {
|
|
|
|
char Key;
|
|
|
|
uiExtKey ExtKey;
|
|
|
|
uiModifiers Modifier;
|
|
|
|
|
|
|
|
uiModifiers Modifiers;
|
|
|
|
|
|
|
|
int Up;
|
|
|
|
};
|