34 lines
1.2 KiB
C
34 lines
1.2 KiB
C
#ifndef NUKE_H
|
|
#define NUKE_H
|
|
#define NK_INCLUDE_FIXED_TYPES
|
|
#include "nuklear.h"
|
|
|
|
|
|
extern struct nk_context *ctx;
|
|
|
|
struct window;
|
|
|
|
void nuke_init(struct window *win);
|
|
void nuke_start();
|
|
void nuke_end();
|
|
|
|
void nk_property_float3(struct nk_context *ctx, const char *label, float min, float *val, float max, float step, float dragstep);
|
|
void nk_property_float2(struct nk_context *ctx, const char *label, float min, float *val, float max, float step, float dragstep);
|
|
void nuke_property_float(const char *lbl, float min, float *val, float max, float step, float dragstep);
|
|
|
|
void nuke_property_int(const char *lbl, int min, int *val, int max, int step);
|
|
void nk_radio_button_label(struct nk_context *ctx, const char *label, int *val, int cmp);
|
|
void nuke_radio_btn(const char *lbl, int *val, int cmp);
|
|
void nuke_checkbox(const char *lbl, int *val);
|
|
void nuke_nel(int cols);
|
|
void nuke_label(const char *s);
|
|
void nuke_prop_float(const char *label, float min, float *val, float max, float step, float dragstep);
|
|
void nuke_edit_str(char *str);
|
|
|
|
int nuke_btn(const char *lbl);
|
|
|
|
#define nuke_labelf(STR, ...) nk_labelf(ctx, NK_TEXT_LEFT, STR, __VA_ARGS__)
|
|
#define nuke_prop_float(LABEL, MIN, VAL, MAX, STEP, DRAG) nk_property_float(ctx, LABEL, MIN, VAL, MAX, STEP, DRAG)
|
|
|
|
#endif
|