2015-03-03 19:24:02 +03:00
|
|
|
/*
|
|
|
|
Copyright (c) 2015
|
|
|
|
vurtun <polygone@gmx.net>
|
|
|
|
MIT licence
|
2015-06-06 13:45:18 +03:00
|
|
|
|
|
|
|
GUI
|
|
|
|
-----------------------
|
|
|
|
This file provides both the interface and implementation for a bloat free
|
|
|
|
minimal state immediate mode graphical user interface toolkit. The Toolkit
|
|
|
|
does not have any library or runtine dependencies like libc but does not
|
|
|
|
handle os window/input management, have a render backend or a font library which
|
|
|
|
need to be provided by the user.
|
|
|
|
|
|
|
|
USAGE
|
|
|
|
------------------------
|
|
|
|
To instantiate the implementation part of the library you have to define
|
|
|
|
#define GUI_IMPLEMENTATION
|
|
|
|
in *ONE* of your source files, before #include'ing this file. This expands out the
|
|
|
|
actual implementation into that C/C++ file.
|
|
|
|
To make the implementation private to the file that generates the implementation use
|
|
|
|
#define GUI_STATIC
|
|
|
|
|
2015-03-03 19:24:02 +03:00
|
|
|
*/
|
2015-03-09 22:04:45 +03:00
|
|
|
#ifndef GUI_H_
|
|
|
|
#define GUI_H_
|
2015-03-20 12:58:11 +03:00
|
|
|
|
2015-06-03 01:58:57 +03:00
|
|
|
#ifdef GUI_STATIC
|
|
|
|
#define GUI_API static
|
|
|
|
#else
|
|
|
|
#define GUI_API extern
|
|
|
|
#endif
|
|
|
|
|
2015-04-10 19:35:17 +03:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2015-05-11 13:45:22 +03:00
|
|
|
/* Constants */
|
2015-03-03 19:24:02 +03:00
|
|
|
#define GUI_UTF_SIZE 4
|
2015-06-04 23:17:54 +03:00
|
|
|
/* describes the number of bytes a glyph consists of*/
|
2015-03-07 19:02:37 +03:00
|
|
|
#define GUI_INPUT_MAX 16
|
2015-06-06 13:45:18 +03:00
|
|
|
/* defines the max number of bytes to be added as text input in one frame */
|
2015-05-29 15:18:23 +03:00
|
|
|
#define GUI_MAX_COLOR_STACK 32
|
2015-06-04 23:17:54 +03:00
|
|
|
/* defines the number of temporary configuration color changes that can be stored */
|
2015-05-29 15:18:23 +03:00
|
|
|
#define GUI_MAX_ATTRIB_STACK 32
|
2015-06-04 23:17:54 +03:00
|
|
|
/* defines the number of temporary configuration attribute changes that can be stored */
|
2015-04-10 19:35:17 +03:00
|
|
|
|
2015-06-04 23:17:54 +03:00
|
|
|
/*
|
|
|
|
Since the gui uses ANSI C which does not guarantee to have fixed types, you need
|
|
|
|
to set the appropriate size of each type. However if your developer environment
|
|
|
|
supports fixed size types over the <stdint> header you can just use
|
|
|
|
#define GUI_USE_FIXED_TYPES
|
|
|
|
to automatically set the correct size for each type in the library.
|
|
|
|
*/
|
2015-04-10 19:35:17 +03:00
|
|
|
#ifdef GUI_USE_FIXED_TYPES
|
|
|
|
#include <stdint.h>
|
2015-05-31 15:41:46 +03:00
|
|
|
typedef int8_t gui_char;
|
2015-04-10 19:35:17 +03:00
|
|
|
typedef int32_t gui_int;
|
|
|
|
typedef int32_t gui_bool;
|
|
|
|
typedef int16_t gui_short;
|
|
|
|
typedef int64_t gui_long;
|
|
|
|
typedef float gui_float;
|
2015-04-27 17:22:56 +03:00
|
|
|
typedef uint16_t gui_ushort;
|
2015-04-10 19:35:17 +03:00
|
|
|
typedef uint32_t gui_uint;
|
|
|
|
typedef uint64_t gui_ulong;
|
|
|
|
typedef uint32_t gui_flags;
|
|
|
|
typedef uint8_t gui_byte;
|
|
|
|
typedef uint32_t gui_flag;
|
|
|
|
typedef uint64_t gui_size;
|
|
|
|
#else
|
2015-03-03 19:24:02 +03:00
|
|
|
typedef int gui_int;
|
2015-04-10 19:35:17 +03:00
|
|
|
typedef int gui_bool;
|
2015-05-31 15:41:46 +03:00
|
|
|
typedef char gui_char;
|
2015-03-05 21:50:56 +03:00
|
|
|
typedef short gui_short;
|
|
|
|
typedef long gui_long;
|
2015-04-10 19:35:17 +03:00
|
|
|
typedef float gui_float;
|
2015-04-27 17:22:56 +03:00
|
|
|
typedef unsigned short gui_ushort;
|
2015-04-10 19:35:17 +03:00
|
|
|
typedef unsigned int gui_uint;
|
2015-03-20 12:58:11 +03:00
|
|
|
typedef unsigned long gui_ulong;
|
2015-03-05 17:37:11 +03:00
|
|
|
typedef unsigned int gui_flags;
|
2015-03-03 19:24:02 +03:00
|
|
|
typedef unsigned char gui_byte;
|
2015-03-07 19:02:37 +03:00
|
|
|
typedef unsigned int gui_flag;
|
2015-03-03 19:24:02 +03:00
|
|
|
typedef unsigned long gui_size;
|
2015-04-10 19:35:17 +03:00
|
|
|
#endif
|
|
|
|
|
2015-05-11 13:45:22 +03:00
|
|
|
/* Utilities */
|
2015-03-03 19:24:02 +03:00
|
|
|
enum {gui_false, gui_true};
|
2015-03-17 16:42:49 +03:00
|
|
|
enum gui_heading {GUI_UP, GUI_RIGHT, GUI_DOWN, GUI_LEFT};
|
2015-03-03 19:24:02 +03:00
|
|
|
struct gui_color {gui_byte r,g,b,a;};
|
|
|
|
struct gui_vec2 {gui_float x,y;};
|
|
|
|
struct gui_rect {gui_float x,y,w,h;};
|
2015-04-04 19:26:22 +03:00
|
|
|
struct gui_key {gui_bool down, clicked;};
|
2015-04-19 23:12:37 +03:00
|
|
|
typedef gui_char gui_glyph[GUI_UTF_SIZE];
|
2015-06-06 21:13:28 +03:00
|
|
|
typedef union {void *ptr; gui_int id;} gui_handle;
|
|
|
|
struct gui_image {gui_handle handle; struct gui_rect region;};
|
2015-06-04 23:17:54 +03:00
|
|
|
|
|
|
|
/* Callbacks */
|
|
|
|
struct gui_font;
|
2015-05-10 21:27:13 +03:00
|
|
|
typedef gui_bool(*gui_filter)(gui_long unicode);
|
2015-05-31 15:41:46 +03:00
|
|
|
typedef gui_size(*gui_text_width_f)(gui_handle, const gui_char*, gui_size);
|
2015-05-29 15:18:23 +03:00
|
|
|
/*
|
|
|
|
* ==============================================================
|
|
|
|
*
|
|
|
|
* Input
|
|
|
|
*
|
|
|
|
* ===============================================================
|
|
|
|
*/
|
2015-06-04 23:17:54 +03:00
|
|
|
/* INPUT
|
|
|
|
----------------------------
|
|
|
|
The input API is responsible for holding input state by keeping track of
|
|
|
|
mouse, key and text input state. The core of the API is the persistent
|
2015-06-06 13:45:18 +03:00
|
|
|
gui_input struct which holds the input state over the runtime.
|
2015-06-04 23:17:54 +03:00
|
|
|
It is important to note that no direct os or window handling is done by the input
|
|
|
|
API, instead all the input state has to be provided from the user. This in one hand
|
|
|
|
expects more work from the user and complicates the usage but on the other hand
|
|
|
|
provides simple abstraction over a big number of platforms, libraries and other
|
|
|
|
already provided functionality.
|
|
|
|
|
|
|
|
USAGE
|
|
|
|
----------------------------
|
|
|
|
To instantiate the Input API the gui_input structure has to be zeroed at
|
|
|
|
the beginning of the program by either using memset or setting it to {0},
|
|
|
|
since the internal state is persistent over all frames.
|
|
|
|
|
|
|
|
To modify the internal input state you have to first set the gui_input struct
|
|
|
|
into a modifiable state with gui_input_begin. After the gui_input struct is
|
|
|
|
now ready you can add input state changes until everything is up to date.
|
|
|
|
Finally to revert back into a read state you have to call gui_input_end.
|
|
|
|
|
|
|
|
Input function API
|
|
|
|
gui_input_begin() -- begins the modification state
|
|
|
|
gui_input_motion() -- notifies of a cursor motion update
|
|
|
|
gui_input_key() -- notifies of a keyboard key update
|
|
|
|
gui_input_button() -- notifies of a action event
|
|
|
|
gui_input_char() -- adds a text glyph to gui_input
|
|
|
|
gui_input_end() -- ends the modification state
|
|
|
|
|
|
|
|
*/
|
|
|
|
#if 0
|
|
|
|
/* Example */
|
|
|
|
#define GUI_IMPLEMENTATION
|
|
|
|
#include "gui.h"
|
|
|
|
int main(void)
|
|
|
|
{
|
|
|
|
struct gui_input input;
|
|
|
|
memset(&input, 0, sizeof(input));
|
|
|
|
while (1) {
|
|
|
|
gui_input_begin(&in);
|
|
|
|
if (Key_state_changed)
|
|
|
|
gui_input_key(&input, key, is_down);
|
|
|
|
else if (button_state_changed)
|
|
|
|
gui_input_button(&in, mouse_x, mouse_y, is_down);
|
|
|
|
else if (mouse_position_changed)
|
|
|
|
gui_input_motion(&input, mouse_x, mouse_y);
|
|
|
|
else if (text_input)
|
|
|
|
gui_input_char(&input, glyph);
|
|
|
|
gui_input_end(&in);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* every key that is being used inside the library */
|
2015-03-23 19:18:18 +03:00
|
|
|
enum gui_keys {
|
|
|
|
GUI_KEY_SHIFT,
|
|
|
|
GUI_KEY_DEL,
|
|
|
|
GUI_KEY_ENTER,
|
|
|
|
GUI_KEY_BACKSPACE,
|
|
|
|
GUI_KEY_ESCAPE,
|
|
|
|
GUI_KEY_SPACE,
|
|
|
|
GUI_KEY_MAX
|
|
|
|
};
|
|
|
|
|
|
|
|
struct gui_input {
|
|
|
|
struct gui_key keys[GUI_KEY_MAX];
|
2015-06-04 23:17:54 +03:00
|
|
|
/* state of every used key */
|
2015-03-23 19:18:18 +03:00
|
|
|
gui_char text[GUI_INPUT_MAX];
|
2015-06-04 23:17:54 +03:00
|
|
|
/* utf8 text input frame buffer */
|
2015-03-23 19:18:18 +03:00
|
|
|
gui_size text_len;
|
2015-06-04 23:17:54 +03:00
|
|
|
/* text input frame buffer length in bytes */
|
2015-03-23 19:18:18 +03:00
|
|
|
struct gui_vec2 mouse_pos;
|
2015-06-04 23:17:54 +03:00
|
|
|
/* current mouse position */
|
2015-03-23 19:18:18 +03:00
|
|
|
struct gui_vec2 mouse_prev;
|
2015-06-04 23:17:54 +03:00
|
|
|
/* mouse position in the last frame */
|
2015-03-23 19:18:18 +03:00
|
|
|
struct gui_vec2 mouse_delta;
|
2015-06-04 23:17:54 +03:00
|
|
|
/* mouse travelling distance over the last and current frame */
|
2015-03-23 19:18:18 +03:00
|
|
|
gui_bool mouse_down;
|
2015-06-04 23:17:54 +03:00
|
|
|
/* current mouse button state */
|
2015-03-23 19:18:18 +03:00
|
|
|
gui_uint mouse_clicked;
|
2015-06-04 23:17:54 +03:00
|
|
|
/* number of mouse button state transistion between frames */
|
2015-03-23 19:18:18 +03:00
|
|
|
struct gui_vec2 mouse_clicked_pos;
|
2015-06-04 23:17:54 +03:00
|
|
|
/* mouse position of the last mouse button state change */
|
2015-03-23 19:18:18 +03:00
|
|
|
};
|
|
|
|
|
2015-06-03 01:58:57 +03:00
|
|
|
GUI_API void gui_input_begin(struct gui_input*);
|
2015-06-04 23:17:54 +03:00
|
|
|
/* this function sets the input state to writeable
|
|
|
|
Input:
|
|
|
|
- Input structure to set modfifiable
|
|
|
|
*/
|
2015-06-03 01:58:57 +03:00
|
|
|
GUI_API void gui_input_motion(struct gui_input*, gui_int x, gui_int y);
|
2015-06-04 23:17:54 +03:00
|
|
|
/* this function updates the current mouse position
|
|
|
|
Input:
|
|
|
|
- Input structure to update to mouse state
|
|
|
|
- local os window X position inside of the mouse
|
|
|
|
- local os window Y position inside of the mouse
|
|
|
|
*/
|
2015-06-03 01:58:57 +03:00
|
|
|
GUI_API void gui_input_key(struct gui_input*, enum gui_keys, gui_bool down);
|
2015-06-04 23:17:54 +03:00
|
|
|
/* this function updates the current state of a key
|
|
|
|
Input:
|
|
|
|
- Input structure to update to key state
|
|
|
|
- key identifies whose state has been changed
|
|
|
|
- the new state of the key
|
|
|
|
*/
|
2015-06-03 01:58:57 +03:00
|
|
|
GUI_API void gui_input_button(struct gui_input*, gui_int x, gui_int y, gui_bool down);
|
2015-06-04 23:17:54 +03:00
|
|
|
/* this function updates the current state of the button
|
|
|
|
Input:
|
|
|
|
- Input structure to update to key state
|
|
|
|
- local os window X position inside of the mouse
|
|
|
|
- local os window Y position inside of the mouse
|
|
|
|
- the new state of the button
|
|
|
|
*/
|
2015-06-03 01:58:57 +03:00
|
|
|
GUI_API void gui_input_char(struct gui_input*, const gui_glyph);
|
2015-06-04 23:17:54 +03:00
|
|
|
/* this function adds a utf8 glpyh into the internal text frame buffer
|
|
|
|
Input:
|
|
|
|
- Input structure to add the glyph to
|
|
|
|
- utf8 glyph to add
|
|
|
|
*/
|
2015-06-03 01:58:57 +03:00
|
|
|
GUI_API void gui_input_end(struct gui_input*);
|
2015-06-04 23:17:54 +03:00
|
|
|
/* this function sets the input state to readable
|
|
|
|
Input:
|
|
|
|
- Input structure to set readable
|
|
|
|
*/
|
2015-05-29 15:18:23 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* ==============================================================
|
|
|
|
*
|
|
|
|
* Buffer
|
|
|
|
*
|
|
|
|
* ===============================================================
|
|
|
|
*/
|
2015-06-04 23:17:54 +03:00
|
|
|
/* BUFFER
|
|
|
|
----------------------------
|
|
|
|
A basic buffer API with linear allocation and resetting as only freeing policy.
|
|
|
|
The buffer main purpose is to control all memory management inside
|
|
|
|
the GUI toolkit and still leave memory control as much as possible in the hand
|
2015-06-06 13:45:18 +03:00
|
|
|
of the user. The memory control is herby achievable over three different ways
|
|
|
|
of memory handling from the user.
|
2015-06-04 23:17:54 +03:00
|
|
|
The first way is to use a fixed size block of memory to be filled up.
|
|
|
|
Biggest advantage of using a fixed size block is a simple memory model.
|
2015-06-06 13:45:18 +03:00
|
|
|
Downside is that if the buffer is full there is no way to accesses more memory,
|
|
|
|
which fits target application with a GUI with roughly known memory consumptions.
|
2015-06-04 23:17:54 +03:00
|
|
|
The second way to mnamge memory is by extending the fixed size block by querying
|
|
|
|
the buffer for information about the used size and needed size and allocate new
|
|
|
|
memory if the buffer is full. While this approach is still better than just using
|
|
|
|
a fixed size memory block the reallocation still has one invalid frame as consquence
|
|
|
|
since the used memory information is only available at the end of the frame which leads
|
|
|
|
to the last way of handling memory.
|
|
|
|
The last and most complicated way of handling memory is by allocator callbacks.
|
|
|
|
The user herby registers callbacks to be called to allocate, free and reallocate
|
|
|
|
memory if needed. While this solves most allocation problems it causes some
|
|
|
|
loss of flow control on the user side.
|
|
|
|
|
|
|
|
USAGE
|
|
|
|
----------------------------
|
2015-06-06 13:45:18 +03:00
|
|
|
To instantiate the buffer you either have to call the fixed size or allocator
|
2015-06-04 23:17:54 +03:00
|
|
|
initialization function and provide a memory block in the first case and
|
|
|
|
an allocator in the second case.
|
|
|
|
To allocate memory from the buffer you would call gui_buffer_alloc with a request
|
|
|
|
memory block size aswell as an alignment for the block. Finally to reset the memory
|
|
|
|
at the end of the frame and when the memory buffer inside the buffer is no longer
|
|
|
|
needed you would call gui_buffer_reset. To free all memory that has been allocated
|
|
|
|
by an allocator if the buffer is no longer being used you have to call gui_buffer_clear.
|
|
|
|
|
|
|
|
Buffer function API
|
|
|
|
gui_buffer_init -- initializes a dynamic buffer
|
|
|
|
gui_buffer_init_fixed -- initializes a static buffer
|
|
|
|
gui_buffer_info -- provides memory information about a buffer
|
|
|
|
gui_buffer_alloc -- allocates a block of memory from the buffer
|
|
|
|
gui_buffer_reset -- resets the buffer back to an empty state
|
|
|
|
gui_buffer_clear -- frees all memory if the buffer is dynamic
|
|
|
|
|
|
|
|
*/
|
2015-05-29 15:18:23 +03:00
|
|
|
struct gui_memory_status {
|
|
|
|
void *memory;
|
2015-06-04 23:17:54 +03:00
|
|
|
/* pointer to the currently used memory block inside the referenced buffer */
|
2015-05-29 15:18:23 +03:00
|
|
|
gui_uint type;
|
2015-06-04 23:17:54 +03:00
|
|
|
/* type of the buffer which is either fixed size or dynamic */
|
2015-05-29 15:18:23 +03:00
|
|
|
gui_size size;
|
2015-06-04 23:17:54 +03:00
|
|
|
/* total size of the memory block */
|
2015-05-29 15:18:23 +03:00
|
|
|
gui_size allocated;
|
2015-06-04 23:17:54 +03:00
|
|
|
/* allocated amount of memory */
|
2015-05-29 15:18:23 +03:00
|
|
|
gui_size needed;
|
2015-06-04 23:17:54 +03:00
|
|
|
/* memory size that would have been allocated if enough memory was present */
|
2015-05-29 15:18:23 +03:00
|
|
|
gui_size calls;
|
2015-06-04 23:17:54 +03:00
|
|
|
/* number of allocation calls referencing this buffer */
|
2015-05-29 15:18:23 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
struct gui_allocator {
|
2015-05-31 15:41:46 +03:00
|
|
|
gui_handle userdata;
|
2015-06-04 23:17:54 +03:00
|
|
|
/* handle to your own allocator */
|
2015-05-31 15:41:46 +03:00
|
|
|
void*(*alloc)(gui_handle, gui_size);
|
2015-06-04 23:17:54 +03:00
|
|
|
/* allocation function pointer */
|
2015-05-31 15:41:46 +03:00
|
|
|
void*(*realloc)(gui_handle, void*, gui_size);
|
2015-06-04 23:17:54 +03:00
|
|
|
/* reallocation pointer of a previously allocated memory block */
|
2015-05-31 15:41:46 +03:00
|
|
|
void(*free)(gui_handle, void*);
|
2015-06-04 23:17:54 +03:00
|
|
|
/* callback function pointer to finally free all allocated memory */
|
2015-05-29 15:18:23 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
enum gui_buffer_type {
|
|
|
|
GUI_BUFFER_FIXED,
|
2015-06-04 23:17:54 +03:00
|
|
|
/* fixed size memory buffer */
|
2015-05-29 15:18:23 +03:00
|
|
|
GUI_BUFFER_DYNAMIC
|
2015-06-05 23:32:44 +03:00
|
|
|
/* dynamically growing buffer */
|
2015-05-29 15:18:23 +03:00
|
|
|
};
|
|
|
|
|
2015-06-04 23:17:54 +03:00
|
|
|
struct gui_memory {void *ptr;gui_size size;};
|
2015-05-29 15:18:23 +03:00
|
|
|
struct gui_buffer {
|
|
|
|
struct gui_allocator pool;
|
2015-06-04 23:17:54 +03:00
|
|
|
/* allocator callback for dynamic buffers */
|
2015-05-29 15:18:23 +03:00
|
|
|
enum gui_buffer_type type;
|
2015-06-04 23:17:54 +03:00
|
|
|
/* memory type management type */
|
2015-05-29 15:18:23 +03:00
|
|
|
struct gui_memory memory;
|
2015-06-04 23:17:54 +03:00
|
|
|
/* memory and size of the current memory block */
|
2015-05-29 15:18:23 +03:00
|
|
|
gui_float grow_factor;
|
2015-06-04 23:17:54 +03:00
|
|
|
/* growing factor for dynamic memory management */
|
2015-05-29 15:18:23 +03:00
|
|
|
gui_size allocated;
|
2015-06-04 23:17:54 +03:00
|
|
|
/* total amount of memory allocated */
|
2015-05-29 15:18:23 +03:00
|
|
|
gui_size needed;
|
2015-06-04 23:17:54 +03:00
|
|
|
/* total amount of memory allocated if enough memory would have been present */
|
2015-05-29 15:18:23 +03:00
|
|
|
gui_size calls;
|
2015-06-04 23:17:54 +03:00
|
|
|
/* number of allcation calls */
|
2015-05-29 15:18:23 +03:00
|
|
|
};
|
|
|
|
|
2015-06-03 01:58:57 +03:00
|
|
|
GUI_API void gui_buffer_init(struct gui_buffer*, const struct gui_allocator*,
|
2015-06-04 23:17:54 +03:00
|
|
|
gui_size initial_size, gui_float grow_factor);
|
|
|
|
/* this function initializes a growing buffer
|
|
|
|
Input:
|
|
|
|
- allocator holding your own alloctator and memory allocation callbacks
|
|
|
|
- initial size of the buffer
|
|
|
|
- factor to grow the buffer with if the buffer is full
|
|
|
|
Output:
|
|
|
|
- dynamically growing buffer
|
|
|
|
*/
|
2015-06-03 01:58:57 +03:00
|
|
|
GUI_API void gui_buffer_init_fixed(struct gui_buffer*, void *memory, gui_size size);
|
2015-06-04 23:17:54 +03:00
|
|
|
/* this function initializes a fixed size buffer
|
|
|
|
Input:
|
|
|
|
- fixed size previously allocated memory block
|
|
|
|
- size of the memory block
|
|
|
|
Output:
|
|
|
|
- fixed size buffer
|
|
|
|
*/
|
2015-06-03 01:58:57 +03:00
|
|
|
GUI_API void gui_buffer_info(struct gui_memory_status*, struct gui_buffer*);
|
2015-06-04 23:17:54 +03:00
|
|
|
/* this function requests memory information from a buffer
|
|
|
|
Input:
|
|
|
|
- buffer to get the inforamtion from
|
|
|
|
Output:
|
|
|
|
- buffer memory information
|
|
|
|
*/
|
2015-06-03 01:58:57 +03:00
|
|
|
GUI_API void *gui_buffer_alloc(struct gui_buffer*, gui_size size, gui_size align);
|
2015-06-04 23:17:54 +03:00
|
|
|
/* this functions allocated a aligned memory block from a buffer
|
|
|
|
Input:
|
|
|
|
- buffer to allocate memory from
|
|
|
|
- size of the requested memory block
|
|
|
|
- alignment requirement for the memory block
|
|
|
|
Output:
|
|
|
|
- memory block with given size and alignment requirement
|
|
|
|
*/
|
2015-06-03 01:58:57 +03:00
|
|
|
GUI_API void gui_buffer_reset(struct gui_buffer*);
|
2015-06-04 23:17:54 +03:00
|
|
|
/* this functions resets the buffer back into a empty state
|
|
|
|
Input:
|
|
|
|
- buffer to reset
|
|
|
|
*/
|
2015-06-03 01:58:57 +03:00
|
|
|
GUI_API void gui_buffer_clear(struct gui_buffer*);
|
2015-06-04 23:17:54 +03:00
|
|
|
/* this functions frees all memory inside a dynamically growing buffer
|
|
|
|
Input:
|
|
|
|
- buffer to clear
|
|
|
|
*/
|
2015-06-05 23:32:44 +03:00
|
|
|
|
2015-06-04 23:17:54 +03:00
|
|
|
#if 0
|
|
|
|
/* Example fixed size buffer */
|
|
|
|
#define GUI_IMPLEMENTATION
|
|
|
|
#include "gui.h"
|
|
|
|
int main(void)
|
|
|
|
{
|
|
|
|
struct gui_buffer buffer;
|
|
|
|
void *memory = calloc(4*1024);
|
|
|
|
gui_buffer_init_fixed(&buffer, memory, 4*1024);
|
|
|
|
void *ptr = gui_buffer_alloc(&buffer, 256, 4);
|
|
|
|
gui_buffer_reset(&buffer);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
/* Example fixed size buffer */
|
|
|
|
#define GUI_IMPLEMENTATION
|
|
|
|
#include "gui.h"
|
|
|
|
|
|
|
|
int main(void)
|
|
|
|
{
|
|
|
|
struct gui_allocator alloc;
|
|
|
|
alloc.userdata = your_allocator;
|
|
|
|
alloc.alloc = your_allocation_callback;
|
|
|
|
alloc.realloc = your_reallocation_callback;
|
|
|
|
alloc.free = your_free_callback;
|
|
|
|
|
|
|
|
struct gui_buffer buffer;
|
|
|
|
gui_buffer_init(&buffer, &alloc, 4*1024, 2.7f);
|
|
|
|
void *ptr = gui_buffer_alloc(&buffer, 256, 4);
|
|
|
|
gui_buffer_reset(&buffer);
|
|
|
|
gui_buffer_clear(&buffer);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|
2015-05-29 15:18:23 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* ==============================================================
|
|
|
|
*
|
|
|
|
* Commands
|
|
|
|
*
|
|
|
|
* ===============================================================
|
|
|
|
*/
|
2015-06-04 23:17:54 +03:00
|
|
|
/* DRAW COMMAND QUEUE
|
|
|
|
----------------------------
|
2015-06-06 13:45:18 +03:00
|
|
|
The command buffer API enqueues draw calls as commands in to a buffer and
|
|
|
|
therefore abstracts over drawing routines and enables defered drawing.
|
|
|
|
The API offers a number of drawing primitives like lines, rectangles, circles,
|
|
|
|
triangles, images, text and clipping rectangles, that have to be drawn by the user.
|
|
|
|
Therefore the command buffer is the main toolkit output besides the actual widget output.
|
2015-06-04 23:17:54 +03:00
|
|
|
The actual draw command execution is done by the user and is build up in a
|
|
|
|
interpreter like fashion by iterating over all commands and executing each
|
|
|
|
command differently depending on the command type.
|
|
|
|
|
|
|
|
USAGE
|
|
|
|
----------------------------
|
|
|
|
To use the command buffer you first have to initiate the buffer either as fixed
|
|
|
|
size or growing buffer. After the initilization you can add primitives by
|
|
|
|
calling the appropriate gui_command_buffer_XXX for each primitive.
|
|
|
|
To iterate over each commands inside the buffer gui_foreach_command is
|
|
|
|
provided. Finally to reuse the buffer after the frame use the
|
|
|
|
gui_command_buffer_reset function.
|
|
|
|
|
|
|
|
command buffer function API
|
|
|
|
gui_command_buffer_init -- initializes a dynamic command buffer
|
|
|
|
gui_command_buffer_init_fixed -- initializes a static command buffer
|
|
|
|
gui_command_buffer_reset -- resets the command buffer back to an empty state
|
|
|
|
gui_command_buffer_clear -- frees all memory if the command buffer is dynamic
|
|
|
|
|
|
|
|
command queue function API
|
|
|
|
gui_command_buffer_push -- pushes and enqueues a command into the buffer
|
|
|
|
gui_command_buffer_push_scissor -- pushes a clipping rectangle into the command queue
|
|
|
|
gui_command_buffer_push_line -- pushes a line into the command queue
|
|
|
|
gui_command_buffer_push_rect -- pushes a rectange into the command queue
|
|
|
|
gui_command_buffer_push_circle -- pushes a circle into the command queue
|
|
|
|
gui_command_buffer_push_triangle-- pushes a triangle command into the queue
|
|
|
|
gui_command_buffer_push_image -- pushes a image draw command into the queue
|
|
|
|
gui_command_buffer_push_text -- pushes a text draw command into the queue
|
|
|
|
|
|
|
|
command iterator function API
|
|
|
|
gui_command_buffer_begin -- returns the first command in a queue
|
|
|
|
gui_command_buffer_next -- returns the next command in a queue
|
|
|
|
gui_foreach_command -- iterates over all commands in a queue
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* command type of every used drawing primitive */
|
2015-05-29 15:18:23 +03:00
|
|
|
enum gui_command_type {
|
|
|
|
GUI_COMMAND_NOP,
|
|
|
|
GUI_COMMAND_SCISSOR,
|
|
|
|
GUI_COMMAND_LINE,
|
|
|
|
GUI_COMMAND_RECT,
|
|
|
|
GUI_COMMAND_CIRCLE,
|
|
|
|
GUI_COMMAND_TRIANGLE,
|
|
|
|
GUI_COMMAND_TEXT,
|
|
|
|
GUI_COMMAND_IMAGE,
|
|
|
|
GUI_COMMAND_MAX
|
|
|
|
};
|
|
|
|
|
2015-06-04 23:17:54 +03:00
|
|
|
/* command base and header of every comand inside the buffer */
|
2015-05-29 15:18:23 +03:00
|
|
|
struct gui_command {
|
|
|
|
enum gui_command_type type;
|
2015-06-04 23:17:54 +03:00
|
|
|
/* the type of the current command */
|
2015-05-29 15:18:23 +03:00
|
|
|
gui_size offset;
|
2015-06-04 23:17:54 +03:00
|
|
|
/* offset to the next command */
|
2015-05-29 15:18:23 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
struct gui_command_scissor {
|
|
|
|
struct gui_command header;
|
|
|
|
gui_short x, y;
|
|
|
|
gui_ushort w, h;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct gui_command_line {
|
|
|
|
struct gui_command header;
|
|
|
|
gui_short begin[2];
|
|
|
|
gui_short end[2];
|
2015-06-04 23:17:54 +03:00
|
|
|
gui_byte color[4];
|
2015-05-29 15:18:23 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
struct gui_command_rect {
|
|
|
|
struct gui_command header;
|
2015-05-31 22:49:20 +03:00
|
|
|
gui_uint r;
|
2015-05-29 15:18:23 +03:00
|
|
|
gui_short x, y;
|
|
|
|
gui_ushort w, h;
|
2015-06-04 23:17:54 +03:00
|
|
|
gui_byte color[4];
|
2015-05-29 15:18:23 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
struct gui_command_circle {
|
|
|
|
struct gui_command header;
|
|
|
|
gui_short x, y;
|
|
|
|
gui_ushort w, h;
|
2015-06-04 23:17:54 +03:00
|
|
|
gui_byte color[4];
|
2015-05-29 15:18:23 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
struct gui_command_image {
|
|
|
|
struct gui_command header;
|
|
|
|
gui_short x, y;
|
|
|
|
gui_ushort w, h;
|
2015-06-06 21:13:28 +03:00
|
|
|
struct gui_image img;
|
2015-05-29 15:18:23 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
struct gui_command_triangle {
|
|
|
|
struct gui_command header;
|
|
|
|
gui_short a[2];
|
|
|
|
gui_short b[2];
|
|
|
|
gui_short c[2];
|
2015-06-04 23:17:54 +03:00
|
|
|
gui_byte color[4];
|
2015-05-29 15:18:23 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
struct gui_command_text {
|
|
|
|
struct gui_command header;
|
2015-05-31 15:41:46 +03:00
|
|
|
gui_handle font;
|
2015-06-04 23:17:54 +03:00
|
|
|
gui_byte bg[4];
|
|
|
|
gui_byte fg[4];
|
2015-05-31 15:41:46 +03:00
|
|
|
gui_short x, y;
|
|
|
|
gui_ushort w, h;
|
2015-05-29 15:18:23 +03:00
|
|
|
gui_size length;
|
|
|
|
gui_char string[1];
|
|
|
|
};
|
|
|
|
|
2015-06-03 01:58:57 +03:00
|
|
|
enum gui_command_clipping {
|
|
|
|
GUI_NOCLIP = gui_false,
|
|
|
|
GUI_CLIP = gui_true
|
|
|
|
};
|
|
|
|
|
|
|
|
struct gui_command_buffer {
|
|
|
|
struct gui_buffer base;
|
2015-06-04 23:17:54 +03:00
|
|
|
/* memory buffer */
|
2015-06-03 01:58:57 +03:00
|
|
|
struct gui_rect clip;
|
2015-06-04 23:17:54 +03:00
|
|
|
/* current clipping rectangle */
|
2015-06-03 01:58:57 +03:00
|
|
|
gui_bool use_clipping;
|
2015-06-04 23:17:54 +03:00
|
|
|
/* flag if the command buffer should clip commands */
|
2015-06-03 01:58:57 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#define gui_command_buffer_init(b, a, i, g, c)\
|
|
|
|
{gui_buffer_init(&(b)->base, a, i, g), (b)->use_clipping=c; (b)->clip=gui_null_rect;}
|
2015-06-04 23:17:54 +03:00
|
|
|
/* this function initializes a growing buffer
|
|
|
|
Input:
|
|
|
|
- allocator holding your own alloctator and memory allocation callbacks
|
|
|
|
- initial size of the buffer
|
|
|
|
- factor to grow the buffer with if the buffer is full
|
|
|
|
- clipping flag for draw command clipping
|
|
|
|
Output:
|
|
|
|
- dynamically growing command buffer
|
|
|
|
*/
|
2015-06-03 01:58:57 +03:00
|
|
|
#define gui_command_buffer_init_fixed(b, m, s,c)\
|
|
|
|
{gui_buffer_init_fixed(&(b)->base, m ,s); (b)->use_clipping=c; (b)->clip=gui_null_rect;}
|
2015-06-04 23:17:54 +03:00
|
|
|
/* this function initializes a fixed size buffer
|
|
|
|
Input:
|
|
|
|
- memory block to fill
|
|
|
|
- size of the memory block
|
|
|
|
- clipping flag for draw command clipping
|
|
|
|
Output:
|
|
|
|
- fixed size command buffer
|
|
|
|
*/
|
|
|
|
#define gui_command_buffer_reset(b)\
|
|
|
|
gui_buffer_reset(&(b)->base)
|
|
|
|
/* this function resets the buffer back to an empty state
|
|
|
|
Input:
|
|
|
|
- buffer to reset
|
|
|
|
*/
|
|
|
|
#define gui_command_buffer_clear(b)\
|
|
|
|
gui_buffer_clear(&(b)->base)
|
|
|
|
/* this function frees the memory of a dynamic buffer
|
|
|
|
Input:
|
|
|
|
- buffer to reset
|
|
|
|
*/
|
2015-06-03 01:58:57 +03:00
|
|
|
GUI_API void *gui_command_buffer_push(struct gui_command_buffer*, gui_uint type, gui_size size);
|
2015-06-04 23:17:54 +03:00
|
|
|
/* this function push enqueues a command into the buffer
|
|
|
|
Input:
|
|
|
|
- buffer to push the command into
|
|
|
|
- type of the command
|
|
|
|
- amount of memory that is needed for the specified command
|
|
|
|
*/
|
2015-06-03 01:58:57 +03:00
|
|
|
GUI_API void gui_command_buffer_push_scissor(struct gui_command_buffer*, gui_float,
|
2015-06-04 23:17:54 +03:00
|
|
|
gui_float, gui_float, gui_float);
|
|
|
|
/* this function push a clip rectangle command into the buffer
|
|
|
|
Input:
|
|
|
|
- buffer to push the clip rectangle command into
|
|
|
|
- x,y and width and height of the clip rectangle
|
|
|
|
*/
|
2015-06-03 01:58:57 +03:00
|
|
|
GUI_API void gui_command_buffer_push_line(struct gui_command_buffer*, gui_float, gui_float,
|
2015-06-04 23:17:54 +03:00
|
|
|
gui_float, gui_float, struct gui_color);
|
|
|
|
/* this function pushes a line draw command into the buffer
|
|
|
|
Input:
|
|
|
|
- buffer to push the clip rectangle command into
|
|
|
|
- starting position of the line
|
|
|
|
- ending position of the line
|
|
|
|
- color of the line to draw
|
|
|
|
*/
|
2015-06-03 01:58:57 +03:00
|
|
|
GUI_API void gui_command_buffer_push_rect(struct gui_command_buffer *buffer, gui_float x,
|
2015-06-04 23:17:54 +03:00
|
|
|
gui_float y, gui_float w, gui_float h,
|
|
|
|
gui_float r, struct gui_color c);
|
|
|
|
/* this function pushes a rectangle draw command into the buffer
|
|
|
|
Input:
|
|
|
|
- buffer to push the draw rectangle command into
|
|
|
|
- rectangle position
|
|
|
|
- rectangle size
|
|
|
|
- rectangle rounding
|
|
|
|
- color of the rectangle to draw
|
|
|
|
*/
|
2015-06-03 01:58:57 +03:00
|
|
|
GUI_API void gui_command_buffer_push_circle(struct gui_command_buffer*, gui_float, gui_float,
|
2015-06-04 23:17:54 +03:00
|
|
|
gui_float, gui_float, struct gui_color);
|
|
|
|
/* this function pushes a circle draw command into the buffer
|
|
|
|
Input:
|
|
|
|
- buffer to push the circle draw command into
|
|
|
|
- x position of the top left of the circle
|
|
|
|
- y position of the top left of the circle
|
|
|
|
- rectangle diameter of the circle
|
|
|
|
- color of the circle to draw
|
|
|
|
*/
|
2015-06-03 01:58:57 +03:00
|
|
|
GUI_API void gui_command_buffer_push_triangle(struct gui_command_buffer*, gui_float, gui_float,
|
2015-06-04 23:17:54 +03:00
|
|
|
gui_float, gui_float, gui_float, gui_float,
|
|
|
|
struct gui_color);
|
|
|
|
/* this function pushes a triangle draw command into the buffer
|
|
|
|
Input:
|
|
|
|
- buffer to push the draw triangle command into
|
|
|
|
- (x,y) coordinates of all three points
|
|
|
|
- rectangle diameter of the circle
|
|
|
|
- color of the triangle to draw
|
|
|
|
*/
|
2015-06-03 01:58:57 +03:00
|
|
|
GUI_API void gui_command_buffer_push_image(struct gui_command_buffer*, gui_float,
|
2015-06-06 21:13:28 +03:00
|
|
|
gui_float, gui_float, gui_float,
|
|
|
|
struct gui_image*);
|
2015-06-04 23:17:54 +03:00
|
|
|
/* this function pushes a image draw command into the buffer
|
|
|
|
Input:
|
|
|
|
- buffer to push the draw image command into
|
|
|
|
- position of the image with x,y position
|
|
|
|
- size of the image to draw with width and height
|
|
|
|
- rectangle diameter of the circle
|
|
|
|
- color of the triangle to draw
|
|
|
|
*/
|
2015-06-03 01:58:57 +03:00
|
|
|
GUI_API void gui_command_buffer_push_text(struct gui_command_buffer*, gui_float, gui_float,
|
2015-06-04 23:17:54 +03:00
|
|
|
gui_float, gui_float, const gui_char*, gui_size,
|
|
|
|
const struct gui_font*, struct gui_color,
|
|
|
|
struct gui_color);
|
|
|
|
/* this function pushes a text draw command into the buffer
|
|
|
|
Input:
|
|
|
|
- buffer to push the draw text command into
|
|
|
|
- top left position of the text with x,y position
|
|
|
|
- maixmal size of the text to draw with width and height
|
|
|
|
- color of the triangle to draw
|
|
|
|
*/
|
2015-06-05 16:01:15 +03:00
|
|
|
|
2015-06-04 23:17:54 +03:00
|
|
|
#define gui_ptr_add(t, p, i) ((t*)((void*)((gui_size)(p) + (i))))
|
|
|
|
#define gui_ptr_sub(t, p, i) ((t*)((void*)((gui_size)(p) - (i))))
|
2015-05-29 15:18:23 +03:00
|
|
|
#define gui_command(t, c) ((const struct gui_command_##t*)c)
|
|
|
|
#define gui_command_buffer_begin(b)\
|
2015-06-03 01:58:57 +03:00
|
|
|
((const struct gui_command*)(b)->base.memory.ptr)
|
2015-05-29 15:18:23 +03:00
|
|
|
#define gui_command_buffer_end(b)\
|
2015-06-04 23:17:54 +03:00
|
|
|
(gui_ptr_add(const struct gui_command, (b)->base.memory.ptr, (b)->base.allocated))
|
2015-05-29 15:18:23 +03:00
|
|
|
#define gui_command_buffer_next(b, c)\
|
2015-06-04 23:17:54 +03:00
|
|
|
((gui_ptr_add(const struct gui_command,c,c->offset)<gui_command_buffer_end(b))?\
|
|
|
|
gui_ptr_add(const struct gui_command,c,c->offset):NULL)
|
2015-05-29 15:18:23 +03:00
|
|
|
#define gui_foreach_command(i, b)\
|
2015-06-03 01:58:57 +03:00
|
|
|
for((i)=gui_command_buffer_begin(b); (i)!=NULL; (i)=gui_command_buffer_next(b,i))
|
2015-05-29 15:18:23 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* ==============================================================
|
|
|
|
*
|
|
|
|
* Widgets
|
|
|
|
*
|
|
|
|
* ===============================================================
|
|
|
|
*/
|
2015-06-04 23:17:54 +03:00
|
|
|
/* WIDGETS
|
|
|
|
----------------------------
|
|
|
|
The Widget API supports a number of basic widgets like buttons, sliders or
|
|
|
|
editboxes and stores no widget state. Instead the state of each widget has to
|
|
|
|
be managed by the user.
|
|
|
|
|
|
|
|
USAGE
|
|
|
|
----------------------------
|
|
|
|
Most widgets takes an input struct, font and widget specific data and a command
|
|
|
|
buffer to push draw command into and return the updated widget state.
|
|
|
|
Important to note is that there is no actual state that is being stored inside
|
|
|
|
the toolkit so everything has to be stored byte the user.
|
|
|
|
|
|
|
|
Widget function API
|
|
|
|
gui_text -- draws a string inside a box
|
|
|
|
gui_button_text -- button widget with text content
|
|
|
|
gui_button_image -- button widget with icon content
|
|
|
|
gui_button_triangle -- button widget with triangle content
|
|
|
|
gui_toggle -- either a checkbox or radiobutton widget
|
|
|
|
gui_slider -- floating point slider widget
|
|
|
|
gui_progress -- unsigned integer progressbar widget
|
|
|
|
gui_edit -- Editbox wiget for user input
|
|
|
|
gui_edit_filtered -- Editbox with utf8 gylph filter capabilities
|
|
|
|
gui_spinner -- unsigned integer spinner widget
|
|
|
|
gui_selector -- string selector widget
|
|
|
|
gui_scroll -- scrollbar widget imeplementation
|
|
|
|
*/
|
2015-06-05 16:01:15 +03:00
|
|
|
|
2015-06-04 23:17:54 +03:00
|
|
|
/* Example */
|
|
|
|
#if 0
|
|
|
|
gui_command_buffer buffer;
|
|
|
|
void *memory = malloc(MEMORY_SIZE)
|
|
|
|
gui_buffer_init_fixed(buffer, memory, MEMORY_SIZE);
|
|
|
|
|
|
|
|
struct gui_font font = {...};
|
|
|
|
const struct gui_slider slider = {...};
|
|
|
|
const struct gui_progress progress = {...};
|
|
|
|
gui_float value = 5.0f
|
|
|
|
gui_size prog = 20;
|
|
|
|
|
|
|
|
struct gui_input input = {0};
|
|
|
|
while (1) {
|
|
|
|
gui_input_begin(&input);
|
|
|
|
/* record input */
|
|
|
|
gui_input_end(&input);
|
|
|
|
|
|
|
|
gui_command_buffer_reset(&buffer);
|
|
|
|
value = gui_slider(&buffer, 50, 50, 100, 30, 0, value, 10, 1, &slider, &input);
|
|
|
|
prog = gui_progress(&buffer, 50, 100, 100, 30, prog, 100, gui_false, &progress, &input);
|
|
|
|
|
|
|
|
const struct gui_command *cmd;
|
|
|
|
gui_foreach_command(cmd, buffer) {
|
|
|
|
/* execute draw call command */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2015-05-29 15:18:23 +03:00
|
|
|
struct gui_font {
|
2015-05-31 15:41:46 +03:00
|
|
|
gui_handle userdata;
|
2015-06-04 23:17:54 +03:00
|
|
|
/* user provided font handle */
|
2015-05-29 15:18:23 +03:00
|
|
|
gui_float height;
|
2015-06-04 23:17:54 +03:00
|
|
|
/* max height of the font */
|
2015-05-29 15:18:23 +03:00
|
|
|
gui_text_width_f width;
|
2015-06-04 23:17:54 +03:00
|
|
|
/* font string width in pixel callback */
|
2015-05-29 15:18:23 +03:00
|
|
|
};
|
2015-05-11 13:45:22 +03:00
|
|
|
|
2015-04-08 12:54:33 +03:00
|
|
|
enum gui_text_align {
|
|
|
|
GUI_TEXT_LEFT,
|
|
|
|
GUI_TEXT_CENTERED,
|
|
|
|
GUI_TEXT_RIGHT
|
|
|
|
};
|
|
|
|
|
2015-03-13 00:53:28 +03:00
|
|
|
struct gui_text {
|
2015-04-19 23:12:37 +03:00
|
|
|
struct gui_vec2 padding;
|
2015-06-04 23:17:54 +03:00
|
|
|
/* padding between bounds and text */
|
2015-04-15 15:37:19 +03:00
|
|
|
struct gui_color foreground;
|
2015-06-04 23:17:54 +03:00
|
|
|
/*text color */
|
2015-03-13 00:53:28 +03:00
|
|
|
struct gui_color background;
|
2015-06-04 23:17:54 +03:00
|
|
|
/* text background color */
|
2015-03-13 22:01:31 +03:00
|
|
|
};
|
|
|
|
|
2015-03-14 19:05:30 +03:00
|
|
|
enum gui_button_behavior {
|
2015-04-10 19:35:17 +03:00
|
|
|
GUI_BUTTON_DEFAULT,
|
2015-06-04 23:17:54 +03:00
|
|
|
/* buton only returns on activation */
|
2015-05-10 21:27:13 +03:00
|
|
|
GUI_BUTTON_REPEATER,
|
2015-06-04 23:17:54 +03:00
|
|
|
/* button returns as long as the button is pressed */
|
2015-05-10 21:27:13 +03:00
|
|
|
GUI_BUTTON_MAX
|
2015-03-14 19:05:30 +03:00
|
|
|
};
|
|
|
|
|
2015-03-09 22:04:45 +03:00
|
|
|
struct gui_button {
|
2015-04-15 15:37:19 +03:00
|
|
|
gui_float border;
|
2015-06-04 23:17:54 +03:00
|
|
|
/* size of the border */
|
2015-05-31 22:49:20 +03:00
|
|
|
gui_float rounding;
|
2015-06-04 23:17:54 +03:00
|
|
|
/* buttong rectangle rounding */
|
2015-04-19 23:12:37 +03:00
|
|
|
struct gui_vec2 padding;
|
2015-06-04 23:17:54 +03:00
|
|
|
/* padding between bounds and content */
|
2015-03-09 22:04:45 +03:00
|
|
|
struct gui_color background;
|
2015-06-04 23:17:54 +03:00
|
|
|
/* button color */
|
2015-03-09 22:04:45 +03:00
|
|
|
struct gui_color foreground;
|
2015-06-04 23:17:54 +03:00
|
|
|
/* button border color */
|
2015-03-20 12:58:11 +03:00
|
|
|
struct gui_color content;
|
2015-06-04 23:17:54 +03:00
|
|
|
/* button content color */
|
2015-03-17 16:42:49 +03:00
|
|
|
struct gui_color highlight;
|
2015-06-04 23:17:54 +03:00
|
|
|
/* background color if mouse is over */
|
2015-03-20 12:58:11 +03:00
|
|
|
struct gui_color highlight_content;
|
2015-06-04 23:17:54 +03:00
|
|
|
/* content color if mouse is over */
|
2015-03-20 12:58:11 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
enum gui_toggle_type {
|
|
|
|
GUI_TOGGLE_CHECK,
|
2015-06-04 23:17:54 +03:00
|
|
|
/* checkbox toggle */
|
2015-03-20 12:58:11 +03:00
|
|
|
GUI_TOGGLE_OPTION
|
2015-06-04 23:17:54 +03:00
|
|
|
/* radiobutton toggle */
|
2015-03-09 22:04:45 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
struct gui_toggle {
|
2015-05-31 22:49:20 +03:00
|
|
|
gui_float rounding;
|
2015-06-04 23:17:54 +03:00
|
|
|
/* checkbox rectangle rounding */
|
2015-04-19 23:12:37 +03:00
|
|
|
struct gui_vec2 padding;
|
2015-06-04 23:17:54 +03:00
|
|
|
/* padding between bounds and content */
|
2015-03-09 22:04:45 +03:00
|
|
|
struct gui_color font;
|
2015-06-04 23:17:54 +03:00
|
|
|
/* text color */
|
2015-03-09 22:04:45 +03:00
|
|
|
struct gui_color background;
|
2015-06-04 23:17:54 +03:00
|
|
|
/* toggle background color*/
|
2015-03-09 22:04:45 +03:00
|
|
|
struct gui_color foreground;
|
2015-06-04 23:17:54 +03:00
|
|
|
/* toggle foreground color*/
|
2015-05-02 22:18:45 +03:00
|
|
|
struct gui_color cursor;
|
2015-06-04 23:17:54 +03:00
|
|
|
/* toggle cursor color*/
|
2015-03-09 22:04:45 +03:00
|
|
|
};
|
|
|
|
|
2015-05-23 01:11:58 +03:00
|
|
|
struct gui_progress {
|
2015-05-31 22:49:20 +03:00
|
|
|
gui_float rounding;
|
2015-06-04 23:17:54 +03:00
|
|
|
/* prgressbar rectangle rounding */
|
2015-04-19 23:12:37 +03:00
|
|
|
struct gui_vec2 padding;
|
2015-06-04 23:17:54 +03:00
|
|
|
/* padding between bounds and content */
|
2015-03-09 22:04:45 +03:00
|
|
|
struct gui_color background;
|
2015-06-04 23:17:54 +03:00
|
|
|
/* progressbar background color */
|
2015-03-09 22:04:45 +03:00
|
|
|
struct gui_color foreground;
|
2015-06-04 23:17:54 +03:00
|
|
|
/* pgressbar cursor color */
|
2015-03-09 22:04:45 +03:00
|
|
|
};
|
|
|
|
|
2015-05-31 21:00:00 +03:00
|
|
|
enum gui_slider_cursor {
|
|
|
|
GUI_SLIDER_RECT,
|
|
|
|
GUI_SLIDER_CIRCLE
|
|
|
|
};
|
|
|
|
|
2015-05-23 01:11:58 +03:00
|
|
|
struct gui_slider {
|
2015-05-31 21:00:00 +03:00
|
|
|
enum gui_slider_cursor cursor;
|
2015-06-04 23:17:54 +03:00
|
|
|
/* slider cursor shape */
|
2015-05-23 01:11:58 +03:00
|
|
|
struct gui_vec2 padding;
|
2015-06-04 23:17:54 +03:00
|
|
|
/* padding between bounds and content */
|
2015-05-23 01:11:58 +03:00
|
|
|
struct gui_color bar;
|
2015-06-04 23:17:54 +03:00
|
|
|
/* slider background bar color */
|
2015-05-23 01:11:58 +03:00
|
|
|
struct gui_color border;
|
2015-06-04 23:17:54 +03:00
|
|
|
/* slider cursor border color */
|
2015-05-23 01:11:58 +03:00
|
|
|
struct gui_color bg;
|
2015-06-04 23:17:54 +03:00
|
|
|
/* slider background color */
|
2015-05-23 01:11:58 +03:00
|
|
|
struct gui_color fg;
|
2015-06-04 23:17:54 +03:00
|
|
|
/* slider cursor color */
|
2015-05-23 01:11:58 +03:00
|
|
|
};
|
|
|
|
|
2015-03-09 22:04:45 +03:00
|
|
|
struct gui_scroll {
|
2015-05-31 22:49:20 +03:00
|
|
|
gui_float rounding;
|
2015-06-04 23:17:54 +03:00
|
|
|
/* scrolbar rectangle rounding */
|
2015-03-09 22:04:45 +03:00
|
|
|
struct gui_color background;
|
2015-06-04 23:17:54 +03:00
|
|
|
/* scrollbar background color */
|
2015-03-09 22:04:45 +03:00
|
|
|
struct gui_color foreground;
|
2015-06-04 23:17:54 +03:00
|
|
|
/* scrollbar cursor color */
|
2015-03-16 16:02:47 +03:00
|
|
|
struct gui_color border;
|
2015-06-04 23:17:54 +03:00
|
|
|
/* scrollbar border color */
|
2015-03-09 22:04:45 +03:00
|
|
|
};
|
|
|
|
|
2015-03-14 19:05:30 +03:00
|
|
|
enum gui_input_filter {
|
|
|
|
GUI_INPUT_DEFAULT,
|
2015-05-21 18:09:22 +03:00
|
|
|
GUI_INPUT_ASCII,
|
2015-03-14 19:05:30 +03:00
|
|
|
GUI_INPUT_FLOAT,
|
|
|
|
GUI_INPUT_DEC,
|
|
|
|
GUI_INPUT_HEX,
|
|
|
|
GUI_INPUT_OCT,
|
2015-03-20 12:58:11 +03:00
|
|
|
GUI_INPUT_BIN
|
2015-03-13 22:01:31 +03:00
|
|
|
};
|
|
|
|
|
2015-05-09 20:42:31 +03:00
|
|
|
struct gui_edit {
|
2015-06-03 01:58:57 +03:00
|
|
|
gui_float border_size;
|
2015-06-04 23:17:54 +03:00
|
|
|
/* editbox border line size */
|
2015-05-31 22:49:20 +03:00
|
|
|
gui_float rounding;
|
2015-06-04 23:17:54 +03:00
|
|
|
/* editbox rectangle rounding */
|
2015-04-19 23:12:37 +03:00
|
|
|
struct gui_vec2 padding;
|
2015-06-04 23:17:54 +03:00
|
|
|
/* padding between bounds and content*/
|
2015-03-16 11:51:33 +03:00
|
|
|
gui_bool show_cursor;
|
2015-06-04 23:17:54 +03:00
|
|
|
/* flag indication if the cursor should be drawn */
|
2015-03-13 22:01:31 +03:00
|
|
|
struct gui_color background;
|
2015-06-04 23:17:54 +03:00
|
|
|
/* editbox background */
|
2015-06-03 01:58:57 +03:00
|
|
|
struct gui_color border;
|
2015-06-04 23:17:54 +03:00
|
|
|
/* editbox border color */
|
2015-06-03 01:58:57 +03:00
|
|
|
struct gui_color cursor;
|
2015-06-04 23:17:54 +03:00
|
|
|
/* editbox cursor color */
|
2015-06-03 01:58:57 +03:00
|
|
|
struct gui_color text;
|
2015-06-04 23:17:54 +03:00
|
|
|
/* editbox text color */
|
2015-03-13 22:01:31 +03:00
|
|
|
};
|
|
|
|
|
2015-05-31 16:41:09 +03:00
|
|
|
struct gui_spinner {
|
|
|
|
gui_size border_button;
|
2015-06-04 23:17:54 +03:00
|
|
|
/* border line width */
|
2015-05-31 16:41:09 +03:00
|
|
|
struct gui_color button_color;
|
2015-06-04 23:17:54 +03:00
|
|
|
/* spinner button background color */
|
2015-05-31 16:41:09 +03:00
|
|
|
struct gui_color button_border;
|
2015-06-04 23:17:54 +03:00
|
|
|
/* spinner button border color */
|
2015-05-31 16:41:09 +03:00
|
|
|
struct gui_color button_triangle;
|
2015-06-04 23:17:54 +03:00
|
|
|
/* spinner up and down button triangle color */
|
2015-05-31 16:41:09 +03:00
|
|
|
struct gui_color color;
|
2015-06-04 23:17:54 +03:00
|
|
|
/* spinner background color */
|
2015-05-31 16:41:09 +03:00
|
|
|
struct gui_color border;
|
2015-06-04 23:17:54 +03:00
|
|
|
/* spinner border color */
|
2015-06-03 01:58:57 +03:00
|
|
|
struct gui_color text;
|
2015-06-04 23:17:54 +03:00
|
|
|
/* spinner text color */
|
2015-05-31 16:41:09 +03:00
|
|
|
struct gui_vec2 padding;
|
2015-06-04 23:17:54 +03:00
|
|
|
/* spinner padding between bounds and content*/
|
2015-05-31 16:41:09 +03:00
|
|
|
gui_bool show_cursor;
|
2015-06-04 23:17:54 +03:00
|
|
|
/* flag indicating if the cursor should be drawn */
|
2015-03-09 22:04:45 +03:00
|
|
|
};
|
|
|
|
|
2015-05-31 17:02:48 +03:00
|
|
|
struct gui_selector {
|
|
|
|
gui_size border_button;
|
2015-06-04 23:17:54 +03:00
|
|
|
/* border line width */
|
2015-05-31 17:02:48 +03:00
|
|
|
struct gui_color button_color;
|
2015-06-04 23:17:54 +03:00
|
|
|
/* selector button background color */
|
2015-05-31 17:02:48 +03:00
|
|
|
struct gui_color button_border;
|
2015-06-04 23:17:54 +03:00
|
|
|
/* selector button border color */
|
2015-05-31 17:02:48 +03:00
|
|
|
struct gui_color button_triangle;
|
2015-06-04 23:17:54 +03:00
|
|
|
/* selector button content color */
|
2015-05-31 17:02:48 +03:00
|
|
|
struct gui_color color;
|
2015-06-04 23:17:54 +03:00
|
|
|
/* spinner background color */
|
2015-05-31 17:02:48 +03:00
|
|
|
struct gui_color border;
|
2015-06-04 23:17:54 +03:00
|
|
|
/* spinner border color */
|
2015-05-31 17:02:48 +03:00
|
|
|
struct gui_color text;
|
2015-06-04 23:17:54 +03:00
|
|
|
/* spinner text color */
|
2015-05-31 17:02:48 +03:00
|
|
|
struct gui_color text_bg;
|
2015-06-04 23:17:54 +03:00
|
|
|
/* spinner text background color */
|
2015-05-31 17:02:48 +03:00
|
|
|
struct gui_vec2 padding;
|
2015-06-04 23:17:54 +03:00
|
|
|
/* padding between bounds and content*/
|
2015-05-31 17:02:48 +03:00
|
|
|
};
|
|
|
|
|
2015-06-03 01:58:57 +03:00
|
|
|
GUI_API void gui_text(struct gui_command_buffer*, gui_float, gui_float, gui_float, gui_float,
|
2015-05-29 15:18:23 +03:00
|
|
|
const char *text, gui_size len, const struct gui_text*, enum gui_text_align,
|
|
|
|
const struct gui_font*);
|
2015-06-04 23:17:54 +03:00
|
|
|
/* this function execute a text widget with alignment
|
|
|
|
Input:
|
|
|
|
- output command buffer for draw commands
|
|
|
|
- (x,y) coordinates for the button bounds
|
|
|
|
- (width, height) size for the button bounds
|
|
|
|
- string to draw
|
|
|
|
- length of the string
|
|
|
|
- visual widget style structure describing the text
|
|
|
|
- text alignment with either left, center and right
|
|
|
|
- font structure for text drawing
|
|
|
|
*/
|
2015-06-03 01:58:57 +03:00
|
|
|
GUI_API gui_bool gui_button_text(struct gui_command_buffer*, gui_float x, gui_float y,
|
2015-06-04 23:17:54 +03:00
|
|
|
gui_float w, gui_float h, const char*, enum gui_button_behavior,
|
|
|
|
const struct gui_button*, const struct gui_input*,
|
|
|
|
const struct gui_font*);
|
|
|
|
/* this function executes a text button widget
|
|
|
|
Input:
|
|
|
|
- output command buffer for draw commands
|
|
|
|
- (x,y) coordinates for the button bounds
|
|
|
|
- (width, height) size for the button bounds
|
|
|
|
- button text
|
|
|
|
- button behavior with either repeating or transition state event
|
|
|
|
- visual widget style structure describing the button
|
|
|
|
- input structure to update the button with
|
|
|
|
- font structure for text drawing
|
|
|
|
Output:
|
|
|
|
- returns gui_true if the button was pressed gui_false otherwise
|
|
|
|
*/
|
2015-06-03 01:58:57 +03:00
|
|
|
GUI_API gui_bool gui_button_image(struct gui_command_buffer*, gui_float x, gui_float y,
|
2015-06-06 21:13:28 +03:00
|
|
|
gui_float w, gui_float h, struct gui_image img, enum gui_button_behavior,
|
2015-06-04 23:17:54 +03:00
|
|
|
const struct gui_button*, const struct gui_input*);
|
|
|
|
/* this function executes a image button widget
|
|
|
|
Input:
|
|
|
|
- output command buffer for draw commands
|
|
|
|
- (x,y) coordinates for the button bounds
|
|
|
|
- (width, height) size for the button bounds
|
|
|
|
- user provided image handle which is either a pointer or a id
|
|
|
|
- button behavior with either repeating or transition state event
|
|
|
|
- visual widget style structure describing the button
|
|
|
|
- input structure to update the button with
|
|
|
|
Output:
|
|
|
|
- returns gui_true if the button was pressed gui_false otherwise
|
|
|
|
*/
|
2015-06-03 01:58:57 +03:00
|
|
|
GUI_API gui_bool gui_button_triangle(struct gui_command_buffer*, gui_float x, gui_float y,
|
2015-06-04 23:17:54 +03:00
|
|
|
gui_float w, gui_float h, enum gui_heading,
|
|
|
|
enum gui_button_behavior, const struct gui_button*,
|
|
|
|
const struct gui_input*);
|
|
|
|
/* this function executes a triangle button widget
|
|
|
|
Input:
|
|
|
|
- output command buffer for draw commands
|
|
|
|
- (x,y) coordinates for the button bounds
|
|
|
|
- (width, height) size for the button bounds
|
|
|
|
- triangle direction with either left, top, right xor bottom
|
|
|
|
- button behavior with either repeating or transition state event
|
|
|
|
- visual widget style structure describing the button
|
|
|
|
- input structure to update the button with
|
|
|
|
Output:
|
|
|
|
- returns gui_true if the button was pressed gui_false otherwise
|
|
|
|
*/
|
2015-06-06 21:13:28 +03:00
|
|
|
GUI_API gui_bool gui_button_text_triangle(struct gui_command_buffer*, gui_float x, gui_float y,
|
|
|
|
gui_float w, gui_float h, enum gui_heading,
|
|
|
|
const char*,enum gui_text_align, enum gui_button_behavior,
|
|
|
|
const struct gui_button*, const struct gui_font*,
|
|
|
|
const struct gui_input*);
|
|
|
|
/* this function executes a button with text and a triangle widget
|
|
|
|
Input:
|
|
|
|
- output command buffer for draw commands
|
|
|
|
- (x,y) coordinates for the button bounds
|
|
|
|
- (width, height) size for the button bounds
|
|
|
|
- triangle direction with either left, top, right xor bottom
|
|
|
|
- button text
|
|
|
|
- text alignment with either left, center and right
|
|
|
|
- button behavior with either repeating or transition state event
|
|
|
|
- visual widget style structure describing the button
|
|
|
|
- font structure for text drawing
|
|
|
|
- input structure to update the button with
|
|
|
|
Output:
|
|
|
|
- returns gui_true if the button was pressed gui_false otherwise
|
|
|
|
*/
|
|
|
|
gui_bool gui_button_text_image(struct gui_command_buffer *out, gui_float x, gui_float y,
|
|
|
|
gui_float w, gui_float h, struct gui_image img,
|
|
|
|
const char* text, enum gui_text_align align,
|
|
|
|
enum gui_button_behavior behavior,
|
|
|
|
const struct gui_button *button, const struct gui_font *f,
|
|
|
|
const struct gui_input *i);
|
|
|
|
/* this function executes a button widget with text and an icon
|
|
|
|
Input:
|
|
|
|
- output command buffer for draw commands
|
|
|
|
- (x,y) coordinates for the button bounds
|
|
|
|
- (width, height) size for the button bounds
|
|
|
|
- user provided image handle which is either a pointer or a id
|
|
|
|
- button text
|
|
|
|
- text alignment with either left, center and right
|
|
|
|
- button behavior with either repeating or transition state event
|
|
|
|
- visual widget style structure describing the button
|
|
|
|
- font structure for text drawing
|
|
|
|
- input structure to update the button with
|
|
|
|
Output:
|
|
|
|
- returns gui_true if the button was pressed gui_false otherwise
|
|
|
|
*/
|
2015-06-03 01:58:57 +03:00
|
|
|
GUI_API gui_bool gui_toggle(struct gui_command_buffer*, gui_float x, gui_float y, gui_float w,
|
2015-06-08 11:55:35 +03:00
|
|
|
gui_float h, gui_bool, const char*, enum gui_toggle_type,
|
|
|
|
const struct gui_toggle*, const struct gui_input*, const struct gui_font*);
|
2015-06-04 23:17:54 +03:00
|
|
|
/* this function executes a toggle (checkbox, radiobutton) widget
|
|
|
|
Input:
|
|
|
|
- output command buffer for draw commands
|
|
|
|
- (x,y) coordinates for the button bounds
|
|
|
|
- (width, height) size for the button bounds
|
|
|
|
- active or inactive flag describing the state of the toggle
|
|
|
|
- visual widget style structure describing the toggle
|
|
|
|
- input structure to update the toggle with
|
|
|
|
- font structure for text drawing
|
|
|
|
Output:
|
|
|
|
- returns the update state of the toggle
|
|
|
|
*/
|
2015-06-03 01:58:57 +03:00
|
|
|
GUI_API gui_float gui_slider(struct gui_command_buffer*, gui_float x, gui_float y, gui_float,
|
2015-06-04 23:17:54 +03:00
|
|
|
gui_float h, gui_float min, gui_float val, gui_float max, gui_float step,
|
|
|
|
const struct gui_slider*, const struct gui_input*);
|
|
|
|
/* this function executes a slider widget
|
|
|
|
Input:
|
|
|
|
- output command buffer for draw commands
|
|
|
|
- (x,y) coordinates for the button bounds
|
|
|
|
- (width, height) size for the button bounds
|
|
|
|
- minimal slider value that will not be underflown
|
|
|
|
- slider value to be updated by the user
|
|
|
|
- maximal slider value that will not be overflown
|
|
|
|
- step interval the value will be updated with
|
|
|
|
- visual widget style structure describing the slider
|
|
|
|
- input structure to update the slider with
|
|
|
|
Output:
|
|
|
|
- returns the from the user input updated value
|
|
|
|
*/
|
2015-06-03 01:58:57 +03:00
|
|
|
GUI_API gui_size gui_progress(struct gui_command_buffer*, gui_float x, gui_float y,
|
2015-06-04 23:17:54 +03:00
|
|
|
gui_float w, gui_float h, gui_size value, gui_size max,
|
|
|
|
gui_bool modifyable, const struct gui_progress*,
|
|
|
|
const struct gui_input*);
|
|
|
|
/* this function executes a progressbar widget
|
|
|
|
Input:
|
|
|
|
- output command buffer for draw commands
|
|
|
|
- (x,y) coordinates for the button bounds
|
|
|
|
- (width, height) size for the button bounds
|
|
|
|
- progressbar value to be updated by the user
|
|
|
|
- maximal progressbar value that will not be overflown
|
|
|
|
- flag if the progressbar is modifyable by the user
|
|
|
|
- visual widget style structure describing the progressbar
|
|
|
|
- input structure to update the slider with
|
|
|
|
Output:
|
|
|
|
- returns the from the user input updated value
|
|
|
|
*/
|
2015-06-03 01:58:57 +03:00
|
|
|
GUI_API gui_size gui_edit(struct gui_command_buffer*, gui_float x, gui_float y, gui_float w,
|
2015-06-04 23:17:54 +03:00
|
|
|
gui_float h, gui_char*, gui_size, gui_size max, gui_bool*,
|
|
|
|
const struct gui_edit*, enum gui_input_filter filter,
|
|
|
|
const struct gui_input*, const struct gui_font*);
|
|
|
|
/* this function executes a editbox widget
|
|
|
|
Input:
|
|
|
|
- output command buffer for draw commands
|
|
|
|
- (x,y) coordinates for the button bounds
|
|
|
|
- (width, height) size for the button bounds
|
|
|
|
- char buffer to add or remove glyphes from/to
|
|
|
|
- buffer text length in bytes
|
|
|
|
- maximal buffer size
|
|
|
|
- current state of the editbox with either active or inactive
|
|
|
|
- visual widget style structure describing the editbox
|
|
|
|
- glyph input filter type to only let specified glyph through
|
|
|
|
- input structure to update the editbox with
|
|
|
|
- font structure for text drawing
|
|
|
|
Output:
|
|
|
|
- state of the editbox with either active or inactive
|
|
|
|
- returns the size of the buffer in bytes after the modification
|
|
|
|
*/
|
2015-06-03 01:58:57 +03:00
|
|
|
GUI_API gui_size gui_edit_filtered(struct gui_command_buffer*, gui_float x, gui_float y,
|
2015-06-04 23:37:47 +03:00
|
|
|
gui_float w, gui_float h, gui_char*, gui_size,
|
|
|
|
gui_size max, gui_bool*, const struct gui_edit*,
|
|
|
|
gui_filter filter, const struct gui_input*,
|
|
|
|
const struct gui_font*);
|
2015-06-04 23:17:54 +03:00
|
|
|
/* this function executes a editbox widget
|
|
|
|
Input:
|
|
|
|
- output command buffer for draw commands
|
|
|
|
- (x,y) coordinates for the button bounds
|
|
|
|
- (width, height) size for the button bounds
|
|
|
|
- char buffer to add or remove glyphes from/to
|
|
|
|
- buffer text length in bytes
|
|
|
|
- maximal buffer size
|
|
|
|
- current state of the editbox with either active or inactive
|
|
|
|
- visual widget style structure describing the editbox
|
|
|
|
- glyph input filter callback to only let specified glyph through
|
|
|
|
- input structure to update the editbox with
|
|
|
|
- font structure for text drawing
|
|
|
|
Output:
|
|
|
|
- state of the editbox with either active or inactive
|
|
|
|
- returns the size of the buffer in bytes after the modification
|
|
|
|
*/
|
2015-06-03 01:58:57 +03:00
|
|
|
GUI_API gui_int gui_spinner(struct gui_command_buffer*, gui_float x, gui_float y, gui_float w,
|
2015-06-04 23:17:54 +03:00
|
|
|
gui_float h, const struct gui_spinner*, gui_int min, gui_int value,
|
|
|
|
gui_int max, gui_int step, gui_bool *active, const struct gui_input*,
|
|
|
|
const struct gui_font*);
|
|
|
|
/* this function executes a spinner widget
|
|
|
|
Input:
|
|
|
|
- output command buffer for draw commands
|
|
|
|
- (x,y) coordinates for the button bounds
|
|
|
|
- (width, height) size for the button bounds
|
|
|
|
- visual widget style structure describing the spinner
|
|
|
|
- minimal spinner value that will no be underflown
|
|
|
|
- spinner value that will be updated
|
|
|
|
- maximal spinner value that will no be overflown
|
|
|
|
- spinner input state with either active or inactive
|
|
|
|
- input structure to update the slider with
|
|
|
|
- font structure for text drawing
|
|
|
|
Output:
|
|
|
|
- returns the from the user input updated spinner value
|
|
|
|
*/
|
2015-06-03 01:58:57 +03:00
|
|
|
GUI_API gui_size gui_selector(struct gui_command_buffer*, gui_float x, gui_float y,
|
2015-06-04 23:17:54 +03:00
|
|
|
gui_float w, gui_float h, const struct gui_selector*,
|
|
|
|
const char *items[], gui_size item_count,
|
|
|
|
gui_size item_current, const struct gui_input*,
|
|
|
|
const struct gui_font*);
|
|
|
|
/* this function executes a selector widget
|
|
|
|
Input:
|
|
|
|
- output command buffer for draw commands
|
|
|
|
- (x,y) coordinates for the button bounds
|
|
|
|
- (width, height) size for the button bounds
|
|
|
|
- visual widget style structure describing the selector
|
|
|
|
- selection of string array to select from
|
|
|
|
- size of the selection array
|
|
|
|
- input structure to update the slider with
|
|
|
|
- font structure for text drawing
|
|
|
|
Output:
|
|
|
|
- returns the from the user input updated spinner value
|
|
|
|
*/
|
2015-06-03 01:58:57 +03:00
|
|
|
GUI_API gui_float gui_scroll(struct gui_command_buffer*, gui_float x, gui_float y,
|
2015-06-04 23:17:54 +03:00
|
|
|
gui_float w, gui_float h, gui_float offset, gui_float target,
|
|
|
|
gui_float step, const struct gui_scroll*, const struct gui_input*);
|
|
|
|
/* this function executes a scrollbar widget
|
|
|
|
Input:
|
|
|
|
- output command buffer for draw commands
|
|
|
|
- (x,y) coordinates for the button bounds
|
|
|
|
- (width, height) size for the button bounds
|
|
|
|
- scrollbar offset in source pixel
|
|
|
|
- destination pixel size
|
|
|
|
- step pixel size if the scrollbar up- or down button is pressed
|
|
|
|
- visual widget style structure describing the selector
|
|
|
|
- input structure to update the slider with
|
|
|
|
Output:
|
2015-06-04 23:37:47 +03:00
|
|
|
- returns the from the user input updated scrollbar offset in pixels
|
2015-06-04 23:17:54 +03:00
|
|
|
*/
|
2015-05-29 15:18:23 +03:00
|
|
|
/*
|
|
|
|
* ==============================================================
|
|
|
|
*
|
|
|
|
* Config
|
|
|
|
*
|
|
|
|
* ===============================================================
|
|
|
|
*/
|
2015-06-04 23:17:54 +03:00
|
|
|
/* CONFIG
|
|
|
|
----------------------------
|
2015-06-04 23:50:22 +03:00
|
|
|
The panel configuration consists of style and color information that is used for
|
2015-06-04 23:37:47 +03:00
|
|
|
the general style and looks of panel. In addition for temporary modification
|
|
|
|
the configuration structure consists of a stack for pushing and pop either
|
|
|
|
color or property values.
|
2015-06-04 23:17:54 +03:00
|
|
|
|
|
|
|
USAGE
|
|
|
|
----------------------------
|
2015-06-04 23:50:22 +03:00
|
|
|
To use the configuration file you either initialize every value yourself besides
|
2015-06-04 23:37:47 +03:00
|
|
|
the internal stack which needs to be initialized to zero or use the default
|
|
|
|
configuration by calling the function gui_config_default.
|
|
|
|
To add and remove temporary configuration states the gui_config_push_xxxx
|
|
|
|
for adding and gui_config_pop_xxxx for removing either color or property values
|
|
|
|
from the stack. To reset all previously modified values the gui_config_reset_xxx
|
|
|
|
were added.
|
|
|
|
|
2015-06-04 23:17:54 +03:00
|
|
|
Configuration function API
|
|
|
|
gui_config_default -- initializes a default panel configuration
|
|
|
|
gui_config_property -- returns the property value from an id
|
|
|
|
gui_config_color -- returns the color value from an id
|
|
|
|
gui_config_push_property -- push an old property onto a interal stack and sets a new value
|
|
|
|
gui_config_push_color -- push an old color onto a internal stack and sets a new value
|
|
|
|
gui_config_pop_color -- resets an old color value from the internal stack
|
|
|
|
gui_config_pop_property -- resets an old property value from the internal stack
|
|
|
|
gui_config_reset_colors -- reverts back all temporary color changes from the config
|
|
|
|
gui_config_reset_properties -- reverts back all temporary property changes from the config
|
|
|
|
gui_config_reset -- reverts back all temporary all changes from the config
|
|
|
|
*/
|
2015-05-29 15:18:23 +03:00
|
|
|
enum gui_config_colors {
|
2015-03-08 21:19:07 +03:00
|
|
|
GUI_COLOR_TEXT,
|
|
|
|
GUI_COLOR_PANEL,
|
2015-05-07 14:41:55 +03:00
|
|
|
GUI_COLOR_HEADER,
|
2015-03-08 21:19:07 +03:00
|
|
|
GUI_COLOR_BORDER,
|
|
|
|
GUI_COLOR_BUTTON,
|
|
|
|
GUI_COLOR_BUTTON_BORDER,
|
2015-03-17 16:42:49 +03:00
|
|
|
GUI_COLOR_BUTTON_HOVER,
|
2015-04-26 23:38:55 +03:00
|
|
|
GUI_COLOR_BUTTON_TOGGLE,
|
2015-03-17 16:42:49 +03:00
|
|
|
GUI_COLOR_BUTTON_HOVER_FONT,
|
2015-03-20 12:58:11 +03:00
|
|
|
GUI_COLOR_CHECK,
|
2015-05-02 22:18:45 +03:00
|
|
|
GUI_COLOR_CHECK_BACKGROUND,
|
2015-03-20 12:58:11 +03:00
|
|
|
GUI_COLOR_CHECK_ACTIVE,
|
|
|
|
GUI_COLOR_OPTION,
|
2015-05-02 22:18:45 +03:00
|
|
|
GUI_COLOR_OPTION_BACKGROUND,
|
2015-03-20 12:58:11 +03:00
|
|
|
GUI_COLOR_OPTION_ACTIVE,
|
2015-03-08 21:19:07 +03:00
|
|
|
GUI_COLOR_SLIDER,
|
2015-05-23 01:11:58 +03:00
|
|
|
GUI_COLOR_SLIDER_BAR,
|
|
|
|
GUI_COLOR_SLIDER_BORDER,
|
2015-03-08 21:19:07 +03:00
|
|
|
GUI_COLOR_SLIDER_CURSOR,
|
|
|
|
GUI_COLOR_PROGRESS,
|
|
|
|
GUI_COLOR_PROGRESS_CURSOR,
|
2015-03-10 15:50:27 +03:00
|
|
|
GUI_COLOR_INPUT,
|
2015-05-12 16:57:53 +03:00
|
|
|
GUI_COLOR_INPUT_CURSOR,
|
2015-03-10 15:50:27 +03:00
|
|
|
GUI_COLOR_INPUT_BORDER,
|
2015-06-03 01:58:57 +03:00
|
|
|
GUI_COLOR_INPUT_TEXT,
|
2015-03-14 19:05:30 +03:00
|
|
|
GUI_COLOR_SPINNER,
|
|
|
|
GUI_COLOR_SPINNER_BORDER,
|
2015-05-24 21:32:22 +03:00
|
|
|
GUI_COLOR_SPINNER_TRIANGLE,
|
2015-06-03 01:58:57 +03:00
|
|
|
GUI_COLOR_SPINNER_TEXT,
|
2015-03-20 12:58:11 +03:00
|
|
|
GUI_COLOR_SELECTOR,
|
|
|
|
GUI_COLOR_SELECTOR_BORDER,
|
2015-05-24 21:32:22 +03:00
|
|
|
GUI_COLOR_SELECTOR_TRIANGLE,
|
2015-06-03 01:58:57 +03:00
|
|
|
GUI_COLOR_SELECTOR_TEXT,
|
2015-03-10 15:50:27 +03:00
|
|
|
GUI_COLOR_HISTO,
|
|
|
|
GUI_COLOR_HISTO_BARS,
|
|
|
|
GUI_COLOR_HISTO_NEGATIVE,
|
|
|
|
GUI_COLOR_HISTO_HIGHLIGHT,
|
|
|
|
GUI_COLOR_PLOT,
|
|
|
|
GUI_COLOR_PLOT_LINES,
|
2015-03-11 20:17:37 +03:00
|
|
|
GUI_COLOR_PLOT_HIGHLIGHT,
|
2015-03-16 11:51:33 +03:00
|
|
|
GUI_COLOR_SCROLLBAR,
|
|
|
|
GUI_COLOR_SCROLLBAR_CURSOR,
|
2015-03-16 16:02:47 +03:00
|
|
|
GUI_COLOR_SCROLLBAR_BORDER,
|
2015-05-02 22:18:45 +03:00
|
|
|
GUI_COLOR_TABLE_LINES,
|
2015-05-14 22:00:18 +03:00
|
|
|
GUI_COLOR_SHELF,
|
|
|
|
GUI_COLOR_SHELF_TEXT,
|
|
|
|
GUI_COLOR_SHELF_ACTIVE,
|
|
|
|
GUI_COLOR_SHELF_ACTIVE_TEXT,
|
2015-04-07 19:20:28 +03:00
|
|
|
GUI_COLOR_SCALER,
|
2015-03-08 21:19:07 +03:00
|
|
|
GUI_COLOR_COUNT
|
|
|
|
};
|
|
|
|
|
2015-05-31 22:49:20 +03:00
|
|
|
enum gui_config_rounding {
|
|
|
|
GUI_ROUNDING_PANEL,
|
|
|
|
GUI_ROUNDING_BUTTON,
|
|
|
|
GUI_ROUNDING_CHECK,
|
|
|
|
GUI_ROUNDING_PROGRESS,
|
|
|
|
GUI_ROUNDING_INPUT,
|
|
|
|
GUI_ROUNDING_GRAPH,
|
|
|
|
GUI_ROUNDING_SCROLLBAR,
|
|
|
|
GUI_ROUNDING_MAX
|
|
|
|
};
|
|
|
|
|
2015-05-29 15:18:23 +03:00
|
|
|
enum gui_config_properties {
|
2015-05-20 18:05:28 +03:00
|
|
|
GUI_PROPERTY_ITEM_SPACING,
|
|
|
|
GUI_PROPERTY_ITEM_PADDING,
|
|
|
|
GUI_PROPERTY_PADDING,
|
|
|
|
GUI_PROPERTY_SCALER_SIZE,
|
|
|
|
GUI_PROPERTY_SCROLLBAR_WIDTH,
|
|
|
|
GUI_PROPERTY_SIZE,
|
|
|
|
GUI_PROPERTY_MAX
|
|
|
|
};
|
|
|
|
|
|
|
|
struct gui_saved_property {
|
2015-05-29 15:18:23 +03:00
|
|
|
enum gui_config_properties type;
|
2015-06-04 23:50:22 +03:00
|
|
|
/* identifier of the current modified property */
|
2015-05-20 18:05:28 +03:00
|
|
|
struct gui_vec2 value;
|
2015-06-04 23:50:22 +03:00
|
|
|
/* property value that has been saveed */
|
2015-05-20 18:05:28 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
struct gui_saved_color {
|
2015-05-29 15:18:23 +03:00
|
|
|
enum gui_config_colors type;
|
2015-06-04 23:50:22 +03:00
|
|
|
/* identifier of the current modified color */
|
2015-05-20 18:05:28 +03:00
|
|
|
struct gui_color value;
|
2015-06-04 23:50:22 +03:00
|
|
|
/* color value that has been saveed */
|
2015-05-20 18:05:28 +03:00
|
|
|
};
|
|
|
|
|
2015-05-31 22:49:20 +03:00
|
|
|
enum gui_config_components {
|
|
|
|
GUI_DEFAULT_COLOR = 0x01,
|
|
|
|
GUI_DEFAULT_PROPERTIES = 0x02,
|
|
|
|
GUI_DEFAULT_ROUNDING = 0x04,
|
2015-06-03 01:58:57 +03:00
|
|
|
GUI_DEFAULT_ALL = 0xFFFF
|
2015-05-31 22:49:20 +03:00
|
|
|
};
|
|
|
|
|
2015-06-04 23:17:54 +03:00
|
|
|
struct gui_config_stack {
|
|
|
|
gui_size property;
|
2015-06-04 23:50:22 +03:00
|
|
|
/* current property stack pushing index */
|
2015-06-04 23:17:54 +03:00
|
|
|
struct gui_saved_property properties[GUI_MAX_ATTRIB_STACK];
|
2015-06-04 23:50:22 +03:00
|
|
|
/* saved property stack */
|
2015-06-04 23:17:54 +03:00
|
|
|
struct gui_saved_color colors[GUI_MAX_COLOR_STACK];
|
2015-06-04 23:50:22 +03:00
|
|
|
/* saved color stack */
|
2015-06-04 23:17:54 +03:00
|
|
|
gui_size color;
|
2015-06-04 23:50:22 +03:00
|
|
|
/* current color stack pushing index */
|
2015-06-04 23:17:54 +03:00
|
|
|
};
|
|
|
|
|
2015-03-08 21:19:07 +03:00
|
|
|
struct gui_config {
|
2015-05-29 15:18:23 +03:00
|
|
|
struct gui_font font;
|
2015-06-04 23:50:22 +03:00
|
|
|
/* the from the user provided font */
|
2015-05-31 21:00:00 +03:00
|
|
|
enum gui_slider_cursor slider_cursor;
|
2015-06-04 23:50:22 +03:00
|
|
|
/* slider cursor type identifier */
|
2015-05-31 22:49:20 +03:00
|
|
|
gui_float rounding[GUI_ROUNDING_MAX];
|
2015-06-04 23:50:22 +03:00
|
|
|
/* rectangle widget rounding */
|
2015-05-20 18:05:28 +03:00
|
|
|
struct gui_vec2 properties[GUI_PROPERTY_MAX];
|
2015-06-04 23:50:22 +03:00
|
|
|
/* configuration properties to modify the panel style */
|
2015-03-08 21:19:07 +03:00
|
|
|
struct gui_color colors[GUI_COLOR_COUNT];
|
2015-06-04 23:50:22 +03:00
|
|
|
/* configuration color to modify the panel color */
|
2015-06-04 23:17:54 +03:00
|
|
|
struct gui_config_stack stack;
|
2015-06-04 23:50:22 +03:00
|
|
|
/* modification stack */
|
2015-03-05 17:37:11 +03:00
|
|
|
};
|
|
|
|
|
2015-06-03 01:58:57 +03:00
|
|
|
GUI_API void gui_config_default(struct gui_config*, gui_flags, const struct gui_font*);
|
2015-06-05 16:01:15 +03:00
|
|
|
/* this function load the panel configuration with default values
|
|
|
|
Input:
|
|
|
|
- configuration flags indicating which part of the configuration should be loaded with default values
|
|
|
|
- user font reference structure describing the font used inside the panel
|
|
|
|
Output:
|
|
|
|
- configuration structure holding the default panel style
|
|
|
|
*/
|
2015-06-04 23:17:54 +03:00
|
|
|
GUI_API struct gui_vec2 gui_config_property(const struct gui_config*,
|
2015-06-05 16:01:15 +03:00
|
|
|
enum gui_config_properties);
|
|
|
|
/* this function accesses a configuration property over an identifier
|
|
|
|
Input:
|
|
|
|
- Configuration the get the property from
|
|
|
|
- Configuration property idenfifier describing the property to get
|
|
|
|
Output:
|
|
|
|
- Property value that has been asked for
|
|
|
|
*/
|
2015-06-03 01:58:57 +03:00
|
|
|
GUI_API struct gui_color gui_config_color(const struct gui_config*, enum gui_config_colors);
|
2015-06-05 16:01:15 +03:00
|
|
|
/* this function accesses a configuration color over an identifier
|
|
|
|
Input:
|
|
|
|
- Configuration the get the color from
|
|
|
|
- Configuration color idenfifier describing the color to get
|
|
|
|
Output:
|
|
|
|
- color value that has been asked for
|
|
|
|
*/
|
2015-06-03 01:58:57 +03:00
|
|
|
GUI_API void gui_config_push_property(struct gui_config*, enum gui_config_properties,
|
2015-06-05 16:01:15 +03:00
|
|
|
gui_float, gui_float);
|
|
|
|
/* this function temporarily changes a property in a stack like fashion to be reseted later
|
|
|
|
Input:
|
|
|
|
- Configuration structure to push the change to
|
|
|
|
- Property idenfifier to change
|
|
|
|
- first value of the property most of the time the x position
|
|
|
|
- second value of the property most of the time the y position
|
|
|
|
*/
|
2015-06-03 01:58:57 +03:00
|
|
|
GUI_API void gui_config_push_color(struct gui_config*, enum gui_config_colors,
|
2015-06-05 16:01:15 +03:00
|
|
|
gui_byte, gui_byte, gui_byte, gui_byte);
|
|
|
|
/* this function temporarily changes a color in a stack like fashion to be reseted later
|
|
|
|
Input:
|
|
|
|
- Configuration structure to push the change to
|
|
|
|
- color idenfifier to change
|
|
|
|
- red color component
|
|
|
|
- green color component
|
|
|
|
- blue color component
|
|
|
|
- alpha color component
|
|
|
|
*/
|
2015-06-03 01:58:57 +03:00
|
|
|
GUI_API void gui_config_pop_color(struct gui_config*);
|
2015-06-05 16:01:15 +03:00
|
|
|
/* this function reverts back a previously pushed temporary color change
|
|
|
|
Input:
|
|
|
|
- Configuration structure to pop the change from and to
|
|
|
|
*/
|
2015-06-03 01:58:57 +03:00
|
|
|
GUI_API void gui_config_pop_property(struct gui_config*);
|
2015-06-05 16:01:15 +03:00
|
|
|
/* this function reverts back a previously pushed temporary property change
|
|
|
|
Input:
|
|
|
|
- Configuration structure to pop the change from and to
|
|
|
|
*/
|
2015-06-03 01:58:57 +03:00
|
|
|
GUI_API void gui_config_reset_colors(struct gui_config*);
|
2015-06-05 16:01:15 +03:00
|
|
|
/* this function reverts back all previously pushed temporary color changes
|
|
|
|
Input:
|
|
|
|
- Configuration structure to pop the change from and to
|
|
|
|
*/
|
2015-06-03 01:58:57 +03:00
|
|
|
GUI_API void gui_config_reset_properties(struct gui_config*);
|
2015-06-05 16:01:15 +03:00
|
|
|
/* this function reverts back all previously pushed temporary color changes
|
|
|
|
Input:
|
|
|
|
- Configuration structure to pop the change from and to
|
|
|
|
*/
|
2015-06-03 01:58:57 +03:00
|
|
|
GUI_API void gui_config_reset(struct gui_config*);
|
2015-06-05 16:01:15 +03:00
|
|
|
/* this function reverts back all previously pushed temporary color and
|
|
|
|
* property changes
|
|
|
|
Input:
|
|
|
|
- Configuration structure to pop the change from and to
|
|
|
|
*/
|
2015-05-29 15:18:23 +03:00
|
|
|
/*
|
|
|
|
* ==============================================================
|
|
|
|
*
|
|
|
|
* Panel
|
|
|
|
*
|
|
|
|
* ===============================================================
|
|
|
|
*/
|
2015-06-04 23:17:54 +03:00
|
|
|
/* PANEL
|
|
|
|
----------------------------
|
2015-06-05 16:01:15 +03:00
|
|
|
The Panel function API is based on the widget API and is almost in its
|
2015-06-06 13:45:18 +03:00
|
|
|
entirety based on positioning of groups of widgets. Almost each widget inside the
|
2015-06-05 16:01:15 +03:00
|
|
|
panel API uses the widget API for drawing and manipulation/input logic
|
|
|
|
but offers a uniform style over a single configuration structure as well as
|
|
|
|
widget group base moving, spacing and structuring. The panel references
|
|
|
|
a basic configuration file, an output commmand buffer and input structure which
|
|
|
|
need to share the same or greater life time than the panel since they are relied
|
|
|
|
on by the panel.
|
2015-06-04 23:17:54 +03:00
|
|
|
|
|
|
|
USAGE
|
|
|
|
----------------------------
|
2015-06-05 16:01:15 +03:00
|
|
|
To setup the Panel API you have to initiate the panel first with position, size
|
2015-06-06 13:45:18 +03:00
|
|
|
and behavior flags. The flags inside the panel describe the behavior of the panel
|
|
|
|
and can be set or modified directly over the public panel struture
|
2015-06-05 16:01:15 +03:00
|
|
|
or at the beginning in the initialization phase. Just like the flags the position
|
|
|
|
and size of the panel is made directly modifiable at any given time given single
|
|
|
|
threaded access while changes are only visible outside the layout buildup process.
|
|
|
|
|
|
|
|
To finally use the panel a panel layout has to be created over gui_panle_begin_xxx
|
|
|
|
which sets up the panel layout build up process. The panel layout has to be kept
|
|
|
|
valid over the course of the build process until gui_panel_end is called, which
|
2015-06-06 13:45:18 +03:00
|
|
|
makes the layout perfectly fit for either a stack object or a single instance for
|
|
|
|
every panel. The begin sequence pont of the panel layout also gives the opportunity to
|
2015-06-05 16:01:15 +03:00
|
|
|
add the panel either into a panel stack for overlapping panels or a tiled border
|
|
|
|
layout for automated window independend panel positing and sizing.
|
|
|
|
|
|
|
|
To add widgets into the panel layout a number of basic widget are provided
|
|
|
|
which can be added by calling the appropriate function inside both panel
|
|
|
|
layout sequene points gui_panel_begin and gui_panel_end. All calls outside
|
|
|
|
both sequence points are invalid and can cause undefined behavior.
|
|
|
|
|
|
|
|
Since the panel has no information about the structuring of widgets a
|
|
|
|
row layout has to be set with row height and number of columns which can
|
|
|
|
be changed and set by calling the gui_panel_row function.
|
|
|
|
IMPORTANT: !IF YOUR LAYOUT IS WRONG FIRST CHECK IF YOU CALLED gui_panel_row CORRECTLY XOR AT ALL!
|
|
|
|
|
2015-06-04 23:17:54 +03:00
|
|
|
Panel function API
|
|
|
|
gui_panel_init -- initializes the panel with position, size and flags
|
|
|
|
gui_panel_begin -- begin sequence point in the panel layout build up process
|
|
|
|
gui_panel_begin_stacked -- extends gui_panel_begin by adding the panel into a panel stack
|
2015-06-05 16:01:15 +03:00
|
|
|
gui_panel_begin_tiled -- extends gui_panel_begin by adding the panel into a tiled layout
|
2015-06-04 23:17:54 +03:00
|
|
|
gui_panel_row -- defines the current row layout with row height and number of columns
|
2015-06-05 16:01:15 +03:00
|
|
|
gui_panel_widget -- base function for all widgets to allocate space on the panel
|
|
|
|
gui_panel_spacing -- create a column seperator and is basically an empty widget
|
2015-06-04 23:17:54 +03:00
|
|
|
gui_panel_text -- text widget for printing text with length
|
|
|
|
gui_panel_text_colored -- colored text widget for printing colored text width length
|
|
|
|
gui_panel_label -- text widget for printing zero terminated strings
|
|
|
|
gui_panel_label_colored -- text wicget for printing colored zero terminiated strings
|
|
|
|
gui_panel_check -- add a checkbox widget with either active or inactive state
|
|
|
|
gui_panel_option -- radiobutton widget with either active or inactive state
|
|
|
|
gui_panel_option_group -- radiobutton group with automates the process of having only one active
|
|
|
|
gui_panel_button_text -- button widget with text content
|
|
|
|
gui_panel_button_color -- colored button widget without content
|
|
|
|
gui_panel_button_triangle --button with triangle pointing either up-/down-/left- or right
|
|
|
|
gui_panel_button_image -- button widget width icon content
|
|
|
|
gui_panel_button_toggle -- toggle button with either active or inactive state
|
|
|
|
gui_panel_slider -- slider widget with min and max value as well as stepping range
|
|
|
|
gui_panel_progress -- either modifyable or static progressbar
|
|
|
|
gui_panel_edit -- edit textbox widget for text input
|
|
|
|
gui_panel_edit_filtered -- edit textbox widget for text input with filter input
|
|
|
|
gui_panel_spinner -- spinner widget with either keyboard or mouse modification
|
|
|
|
gui_panel_selector -- selector widget for combobox like selection of types
|
|
|
|
gui_panel_graph_begin -- immediate mode graph building begin sequence point
|
|
|
|
gui_panel_graph_push -- push a value into a graph
|
|
|
|
gui_panel_graph_end -- immediate mode graph building end sequence point
|
|
|
|
gui_panel_graph -- retained mode graph with array of values
|
|
|
|
gui_panel_graph_ex -- ratained mode graph with getter callback
|
|
|
|
gui_panel_end -- end squeunce point which finializes the panel build up
|
|
|
|
*/
|
2015-06-05 16:01:15 +03:00
|
|
|
#if 0
|
|
|
|
#define GUI_IMPLEMENTATION
|
|
|
|
#include "gui.h"
|
|
|
|
|
|
|
|
int main(void)
|
|
|
|
{
|
|
|
|
/* allocate memory to hold the draw commands */
|
|
|
|
gui_command_buffer buffer;
|
|
|
|
void *memory = malloc(MEMORY_SIZE)
|
|
|
|
gui_command_buffer_init_fixed(buffer, memory, MEMORY_SIZE);
|
|
|
|
|
|
|
|
/* setup configuration */
|
|
|
|
struct gui_config config;
|
|
|
|
struct gui_font font = {...};
|
|
|
|
gui_config_default(&config, GUI_DEFAULT_ALL, &font);
|
|
|
|
|
|
|
|
/* initialize panel */
|
|
|
|
struct gui_panel panel;
|
|
|
|
gui_panel_init(&panel, 50, 50, 220, 170,
|
|
|
|
GUI_PANEL_BORDER|GUI_PANEL_MOVEABLE|
|
|
|
|
GUI_PANEL_CLOSEABLE|GUI_PANEL_SCALEABLE|
|
|
|
|
GUI_PANEL_MINIMIZABLE, &config, &buffer);
|
|
|
|
|
|
|
|
struct gui_input input = {0};
|
|
|
|
while (1) {
|
|
|
|
gui_input_begin(&input);
|
|
|
|
/* record input */
|
|
|
|
gui_input_end(&input);
|
|
|
|
|
|
|
|
/* GUI */
|
|
|
|
struct gui_panel_layout layout;
|
|
|
|
gui_panel_begin(&layout, &panel, "Demo", &input);
|
|
|
|
gui_panel_row(&layout, 30, 1);
|
|
|
|
if (gui_panel_button_text(&layout, "button", GUI_BUTTON_DEFAULT)) {
|
|
|
|
/* event handling */
|
|
|
|
}
|
|
|
|
gui_panel_row(&layout, 30, 2);
|
|
|
|
if (gui_panel_option(&layout, "easy", option == 0)) option = 0;
|
|
|
|
if (gui_panel_option(&layout, "hard", option == 1)) option = 1;
|
|
|
|
gui_panel_label(&layout, "input:", GUI_TEXT_LEFT);
|
|
|
|
len = gui_panel_edit(&layout, buffer, len, 256, &active, GUI_INPUT_DEFAULT);
|
|
|
|
gui_panel_end(&layout, &panel);
|
|
|
|
|
|
|
|
/* draw */
|
|
|
|
const struct gui_command *cmd;
|
|
|
|
gui_foreach_command(cmd, buffer) {
|
|
|
|
/* execute draw call command */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2015-05-29 15:18:23 +03:00
|
|
|
enum gui_table_lines {
|
|
|
|
GUI_TABLE_HHEADER = 0x01,
|
2015-06-05 16:01:15 +03:00
|
|
|
/* Horizontal table header lines */
|
2015-05-29 15:18:23 +03:00
|
|
|
GUI_TABLE_VHEADER = 0x02,
|
2015-06-05 16:01:15 +03:00
|
|
|
/* Vertical table header lines */
|
2015-05-29 15:18:23 +03:00
|
|
|
GUI_TABLE_HBODY = 0x04,
|
2015-06-05 16:01:15 +03:00
|
|
|
/* Horizontal table body lines */
|
2015-05-29 15:18:23 +03:00
|
|
|
GUI_TABLE_VBODY = 0x08
|
2015-06-05 16:01:15 +03:00
|
|
|
/* Vertical table body lines */
|
2015-05-29 15:18:23 +03:00
|
|
|
};
|
2015-05-20 18:05:28 +03:00
|
|
|
|
2015-05-31 16:41:09 +03:00
|
|
|
enum gui_graph_type {
|
|
|
|
GUI_GRAPH_LINES,
|
2015-06-05 16:01:15 +03:00
|
|
|
/* Line graph with each data point being connected with its previous and next node */
|
2015-05-31 16:41:09 +03:00
|
|
|
GUI_GRAPH_COLUMN,
|
2015-06-05 16:01:15 +03:00
|
|
|
/* Column graph/Histogram with value represented as bars */
|
2015-05-31 16:41:09 +03:00
|
|
|
GUI_GRAPH_MAX
|
|
|
|
};
|
|
|
|
|
|
|
|
struct gui_graph {
|
|
|
|
gui_bool valid;
|
2015-06-05 16:01:15 +03:00
|
|
|
/* graph valid flag to make sure that the graph is visible */
|
2015-05-31 16:41:09 +03:00
|
|
|
enum gui_graph_type type;
|
2015-06-05 16:01:15 +03:00
|
|
|
/* graph type with either line or column graph */
|
2015-05-31 16:41:09 +03:00
|
|
|
gui_float x, y;
|
2015-06-05 16:01:15 +03:00
|
|
|
/* graph canvas space position */
|
2015-05-31 16:41:09 +03:00
|
|
|
gui_float w, h;
|
2015-06-05 16:01:15 +03:00
|
|
|
/* graph canvas space size */
|
2015-05-31 16:41:09 +03:00
|
|
|
gui_float min, max;
|
2015-06-05 16:01:15 +03:00
|
|
|
/* min and max value for correct scaling of values */
|
2015-05-31 16:41:09 +03:00
|
|
|
struct gui_vec2 last;
|
2015-06-05 16:01:15 +03:00
|
|
|
/* last line graph point to connect to. Only used by the line graph */
|
2015-05-31 16:41:09 +03:00
|
|
|
gui_size index;
|
2015-06-05 16:01:15 +03:00
|
|
|
/* current graph value index*/
|
2015-05-31 16:41:09 +03:00
|
|
|
gui_size count;
|
2015-06-05 16:01:15 +03:00
|
|
|
/* number of values inside the graph */
|
2015-05-31 16:41:09 +03:00
|
|
|
};
|
|
|
|
|
2015-05-13 15:47:11 +03:00
|
|
|
enum gui_panel_tab {
|
|
|
|
GUI_MAXIMIZED = gui_false,
|
2015-06-05 16:01:15 +03:00
|
|
|
/* Flag indicating that the panel tab is open */
|
2015-05-13 15:47:11 +03:00
|
|
|
GUI_MINIMIZED = gui_true
|
2015-06-05 16:01:15 +03:00
|
|
|
/* Flag indicating that the panel tab is closed */
|
2015-05-13 15:47:11 +03:00
|
|
|
};
|
|
|
|
|
2015-03-10 15:50:27 +03:00
|
|
|
enum gui_panel_flags {
|
2015-04-07 19:47:32 +03:00
|
|
|
GUI_PANEL_HIDDEN = 0x01,
|
2015-06-05 16:01:15 +03:00
|
|
|
/* Hiddes the panel and stops any panel interaction and drawing can be set
|
|
|
|
* by user input or by closing the panel */
|
2015-04-03 19:59:24 +03:00
|
|
|
GUI_PANEL_BORDER = 0x02,
|
2015-06-05 16:01:15 +03:00
|
|
|
/* Draws a border around the panel to visually seperate the panel from the
|
|
|
|
* background */
|
2015-05-09 18:44:27 +03:00
|
|
|
GUI_PANEL_MINIMIZABLE = 0x04,
|
2015-06-05 16:01:15 +03:00
|
|
|
/* Enables the panel to be minimized/collapsed and adds a minimizing icon
|
|
|
|
* in the panel header to be clicked by GUI user */
|
2015-05-09 18:44:27 +03:00
|
|
|
GUI_PANEL_CLOSEABLE = 0x08,
|
2015-06-05 16:01:15 +03:00
|
|
|
/* Enables the panel to be closed, hidden and made non interactive for the
|
|
|
|
* user over a closing icon in the panel header */
|
2015-04-07 19:47:32 +03:00
|
|
|
GUI_PANEL_MOVEABLE = 0x10,
|
2015-06-05 16:01:15 +03:00
|
|
|
/* The moveable flag inidicates that a panel can be move by user input by
|
|
|
|
* dragging the panel header */
|
2015-04-07 19:47:32 +03:00
|
|
|
GUI_PANEL_SCALEABLE = 0x20,
|
2015-06-05 16:01:15 +03:00
|
|
|
/* The scaleable flag indicates that a panel can be scaled by user input
|
|
|
|
* by dragging a scaler icon at the button of the panel */
|
2015-05-17 14:38:37 +03:00
|
|
|
GUI_PANEL_NO_HEADER = 0x40,
|
2015-06-05 16:01:15 +03:00
|
|
|
/* To remove the header from the panel and invalidate all panel header flags
|
|
|
|
* the NO HEADER flags was added */
|
2015-05-17 14:38:37 +03:00
|
|
|
GUI_PANEL_BORDER_HEADER = 0x80,
|
2015-06-05 16:01:15 +03:00
|
|
|
/* Draw a border inside the panel for the panel header seperating the body
|
|
|
|
* and header of the panel */
|
2015-05-17 14:38:37 +03:00
|
|
|
GUI_PANEL_ACTIVE = 0x100,
|
2015-06-05 16:01:15 +03:00
|
|
|
/* INTERNAL ONLY!: marks the panel as active, used by the panel stack */
|
2015-05-17 14:38:37 +03:00
|
|
|
GUI_PANEL_SCROLLBAR = 0x200,
|
2015-06-05 16:01:15 +03:00
|
|
|
/* INTERNAL ONLY!: adds a scrollbar to the panel which enables fixed size
|
|
|
|
* panels with unlimited amount of space to fill */
|
2015-05-17 14:38:37 +03:00
|
|
|
GUI_PANEL_TAB = 0x400
|
2015-06-05 16:01:15 +03:00
|
|
|
/* INTERNAL ONLY!: Marks the panel as an subpanel of another panel(Groups/Tabs/Shelf)*/
|
2015-03-23 19:18:18 +03:00
|
|
|
};
|
|
|
|
|
2015-03-05 17:37:11 +03:00
|
|
|
struct gui_panel {
|
2015-03-11 16:00:59 +03:00
|
|
|
gui_float x, y;
|
2015-06-05 16:01:15 +03:00
|
|
|
/* position in the os window */
|
2015-04-19 23:12:37 +03:00
|
|
|
gui_float w, h;
|
2015-06-05 16:01:15 +03:00
|
|
|
/* size with width and height of the panel */
|
2015-04-25 16:30:51 +03:00
|
|
|
gui_flags flags;
|
2015-06-05 16:01:15 +03:00
|
|
|
/* panel flags modifing its behavior */
|
2015-04-25 16:30:51 +03:00
|
|
|
gui_float offset;
|
2015-06-05 16:01:15 +03:00
|
|
|
/* panel scrollbar offset in pixel */
|
2015-04-25 16:30:51 +03:00
|
|
|
gui_bool minimized;
|
2015-06-05 16:01:15 +03:00
|
|
|
/* flag indicating if the panel is collapsed */
|
2015-04-25 16:30:51 +03:00
|
|
|
const struct gui_config *config;
|
2015-06-05 16:01:15 +03:00
|
|
|
/* configuration reference describing the panel style */
|
2015-06-03 01:58:57 +03:00
|
|
|
struct gui_command_buffer *buffer;
|
2015-06-05 16:01:15 +03:00
|
|
|
/* output command buffer queuing all drawing calls */
|
2015-05-29 15:18:23 +03:00
|
|
|
struct gui_panel* next;
|
2015-06-05 16:01:15 +03:00
|
|
|
/* next panel pointer for the panel stack*/
|
2015-05-29 15:18:23 +03:00
|
|
|
struct gui_panel* prev;
|
2015-06-05 16:01:15 +03:00
|
|
|
/* prev panel pointer for the panel stack*/
|
2015-05-07 16:52:35 +03:00
|
|
|
};
|
|
|
|
|
2015-06-09 18:05:05 +03:00
|
|
|
#define GUI_UNDEFINED (-1.0f)
|
|
|
|
struct gui_panel_row_layout {
|
|
|
|
gui_float height;
|
|
|
|
/* height of the current row */
|
|
|
|
gui_size columns;
|
|
|
|
/* number of columns in the current row */
|
|
|
|
const gui_float *ratio;
|
|
|
|
/* row widget width ratio */
|
|
|
|
gui_float item_ratio;
|
|
|
|
/* current with of very item */
|
|
|
|
};
|
|
|
|
|
2015-04-25 16:30:51 +03:00
|
|
|
struct gui_panel_layout {
|
|
|
|
gui_float x, y, w, h;
|
2015-06-05 16:01:15 +03:00
|
|
|
/* position and size of the panel in the os window */
|
2015-04-25 16:30:51 +03:00
|
|
|
gui_float offset;
|
2015-06-05 16:01:15 +03:00
|
|
|
/* panel scrollbar offset */
|
2015-05-02 22:18:45 +03:00
|
|
|
gui_bool is_table;
|
2015-06-05 16:01:15 +03:00
|
|
|
/* flag indicating if the panel is currently creating a table */
|
2015-05-02 22:18:45 +03:00
|
|
|
gui_flags tbl_flags;
|
2015-06-05 16:01:15 +03:00
|
|
|
/* flags describing the line drawing for every row in the table */
|
2015-04-25 16:30:51 +03:00
|
|
|
gui_bool valid;
|
2015-06-05 16:01:15 +03:00
|
|
|
/* flag inidicaing if the panel is visible */
|
|
|
|
gui_float at_x, at_y;
|
|
|
|
/* index position of the current widget row and column */
|
2015-04-25 16:30:51 +03:00
|
|
|
gui_float width, height;
|
2015-06-05 16:01:15 +03:00
|
|
|
/* size of the actual useable space inside the panel */
|
2015-03-16 11:51:33 +03:00
|
|
|
gui_float header_height;
|
2015-06-05 16:01:15 +03:00
|
|
|
/* height of the panel header space */
|
2015-06-09 18:05:05 +03:00
|
|
|
gui_size index;
|
|
|
|
/* index of the current widget in the current panel row */
|
|
|
|
struct gui_panel_row_layout row;
|
|
|
|
/* currently used panel row layout */
|
2015-04-19 23:12:37 +03:00
|
|
|
struct gui_rect clip;
|
2015-06-05 16:01:15 +03:00
|
|
|
/* panel clipping rect needed by scrolling */
|
2015-03-09 22:04:45 +03:00
|
|
|
const struct gui_config *config;
|
2015-06-05 16:01:15 +03:00
|
|
|
/* configuration data describing the visual style of the panel */
|
2015-04-25 16:30:51 +03:00
|
|
|
const struct gui_input *input;
|
2015-06-05 16:01:15 +03:00
|
|
|
/* current input state for updating the panel and all its widgets */
|
2015-06-03 01:58:57 +03:00
|
|
|
struct gui_command_buffer *buffer;
|
2015-06-05 16:01:15 +03:00
|
|
|
/* command draw call output command buffer */
|
2015-05-16 13:26:39 +03:00
|
|
|
};
|
|
|
|
|
2015-03-09 22:04:45 +03:00
|
|
|
/* Panel */
|
2015-05-31 15:41:46 +03:00
|
|
|
struct gui_layout;
|
2015-06-03 01:58:57 +03:00
|
|
|
GUI_API void gui_panel_init(struct gui_panel*, gui_float x, gui_float y, gui_float w,
|
2015-06-05 16:01:15 +03:00
|
|
|
gui_float h, gui_flags, struct gui_command_buffer*,
|
|
|
|
const struct gui_config*);
|
|
|
|
/* this function initilizes and setups the panel
|
|
|
|
Input:
|
|
|
|
- bounds of the panel with x,y position and widht and height
|
|
|
|
- panel flags for modified panel behavior
|
|
|
|
- reference to a output command buffer to push draw calls to
|
|
|
|
- configuration file containing the style, color and font for the panel
|
|
|
|
Output:
|
|
|
|
- a newly initialized panel
|
|
|
|
*/
|
2015-06-03 01:58:57 +03:00
|
|
|
GUI_API gui_bool gui_panel_begin(struct gui_panel_layout *layout, struct gui_panel*,
|
2015-06-05 16:01:15 +03:00
|
|
|
const char *title, const struct gui_input*);
|
|
|
|
/* this function begins the panel build up process
|
|
|
|
Input:
|
|
|
|
- title of the panel visible in th header
|
|
|
|
- input structure holding all user generated state changes
|
|
|
|
Output:
|
|
|
|
- panel layout to fill up with widgets
|
|
|
|
*/
|
|
|
|
struct gui_stack;
|
2015-06-03 01:58:57 +03:00
|
|
|
GUI_API gui_bool gui_panel_begin_stacked(struct gui_panel_layout*, struct gui_panel*,
|
2015-06-05 16:01:15 +03:00
|
|
|
struct gui_stack*, const char*,
|
|
|
|
const struct gui_input*);
|
|
|
|
/* this function begins the panel build up process and push the panel into a panel stack
|
|
|
|
Input:
|
|
|
|
- panel stack to push the panel into
|
|
|
|
- title of the panel visible in th header
|
|
|
|
- input structure holding all user generated state changes
|
|
|
|
Output:
|
|
|
|
- panel layout to fill up with widgets
|
|
|
|
*/
|
2015-06-03 01:58:57 +03:00
|
|
|
GUI_API gui_bool gui_panel_begin_tiled(struct gui_panel_layout*, struct gui_panel*,
|
2015-06-05 16:01:15 +03:00
|
|
|
struct gui_layout*, gui_uint slot, gui_size index,
|
|
|
|
const char*, const struct gui_input*);
|
2015-06-09 18:05:05 +03:00
|
|
|
/* this function begins the panel build up process and push the panel into a tiled
|
|
|
|
* layout container
|
2015-06-05 16:01:15 +03:00
|
|
|
Input:
|
|
|
|
- tiled layout container to push the panel into
|
|
|
|
- slot inside the panel with either top,button,center,left or right position
|
|
|
|
- index inside the slot to position the panel into
|
|
|
|
- title of the panel visible in th header
|
|
|
|
- input structure holding all user generated state changes
|
|
|
|
Output:
|
|
|
|
- panel layout to fill up with widgets
|
|
|
|
*/
|
2015-06-03 01:58:57 +03:00
|
|
|
GUI_API void gui_panel_row(struct gui_panel_layout*, gui_float height, gui_size cols);
|
2015-06-05 16:01:15 +03:00
|
|
|
/* this function set the current panel row layout
|
|
|
|
Input:
|
|
|
|
- panel row layout height in pixel
|
|
|
|
- panel row layout column count
|
|
|
|
*/
|
2015-06-09 18:05:05 +03:00
|
|
|
GUI_API void gui_panel_row_templated(struct gui_panel_layout*, gui_float height,
|
|
|
|
gui_size cols, const gui_float *ratio);
|
|
|
|
/* this function set the current panel row layout
|
|
|
|
Input:
|
|
|
|
- panel row layout height in pixel
|
|
|
|
- panel row layout column count
|
|
|
|
*/
|
2015-06-05 16:01:15 +03:00
|
|
|
GUI_API gui_size gui_panel_row_columns(const struct gui_panel_layout *layout,
|
|
|
|
gui_size widget_size);
|
|
|
|
/* this function calculates the number of widget with the same width into the
|
|
|
|
current row layout.
|
|
|
|
Input:
|
|
|
|
- size of all widgets that need to fit into the current panel row layout
|
|
|
|
Output:
|
|
|
|
- panel layout to fill up with widgets
|
|
|
|
*/
|
2015-06-03 01:58:57 +03:00
|
|
|
GUI_API gui_bool gui_panel_widget(struct gui_rect*, struct gui_panel_layout*);
|
2015-06-05 16:01:15 +03:00
|
|
|
/* this function represents the base of every widget and calculates the bounds
|
|
|
|
* and allocated space for a widget inside a panel.
|
|
|
|
current row layout.
|
|
|
|
Output:
|
|
|
|
- allocated space for a widget to draw into
|
|
|
|
- gui_true if the widget is visible and should be updated gui_false if not
|
|
|
|
*/
|
2015-06-03 01:58:57 +03:00
|
|
|
GUI_API void gui_panel_spacing(struct gui_panel_layout*, gui_size cols);
|
2015-06-05 16:01:15 +03:00
|
|
|
/* this function creates a seperator to fill a current row of the panel layout
|
|
|
|
current row layout.
|
|
|
|
Input:
|
|
|
|
- number of columns or widget to jump over
|
|
|
|
*/
|
2015-06-03 01:58:57 +03:00
|
|
|
GUI_API void gui_panel_text(struct gui_panel_layout*, const char*, gui_size,
|
2015-06-05 16:01:15 +03:00
|
|
|
enum gui_text_align);
|
|
|
|
/* this function creates a bounded non terminated text widget with either
|
|
|
|
left, centered or right alignment
|
|
|
|
Input:
|
|
|
|
- string pointer to text that should be drawn
|
|
|
|
- number of bytes the text is long
|
|
|
|
- text alignment with either left, centered or right alignment
|
|
|
|
*/
|
2015-06-03 01:58:57 +03:00
|
|
|
GUI_API void gui_panel_text_colored(struct gui_panel_layout*, const char*, gui_size,
|
2015-06-05 16:01:15 +03:00
|
|
|
enum gui_text_align, struct gui_color);
|
|
|
|
/* this function creates a bounded non terminated color text widget with either
|
|
|
|
left, centered or right alignment
|
|
|
|
Input:
|
|
|
|
- string pointer to text that should be drawn
|
|
|
|
- number of bytes the text is long
|
|
|
|
- text alignment with either left, centered or right alignment
|
|
|
|
- color the text should be drawn
|
|
|
|
*/
|
2015-06-03 01:58:57 +03:00
|
|
|
GUI_API void gui_panel_label(struct gui_panel_layout*, const char*, enum gui_text_align);
|
2015-06-05 16:01:15 +03:00
|
|
|
/* this function creates a zero terminated text widget with either
|
|
|
|
left, centered or right alignment
|
|
|
|
Input:
|
|
|
|
- string pointer to text that should be drawn
|
|
|
|
- text alignment with either left, centered or right alignment
|
|
|
|
*/
|
2015-06-03 01:58:57 +03:00
|
|
|
GUI_API void gui_panel_label_colored(struct gui_panel_layout*, const char*,
|
2015-06-05 16:01:15 +03:00
|
|
|
enum gui_text_align, struct gui_color);
|
|
|
|
/* this function creates a zero terminated colored text widget with either
|
|
|
|
left, centered or right alignment
|
|
|
|
Input:
|
|
|
|
- string pointer to text that should be drawn
|
|
|
|
- text alignment with either left, centered or right alignment
|
|
|
|
- color the label should be drawn
|
|
|
|
*/
|
2015-06-03 01:58:57 +03:00
|
|
|
GUI_API gui_bool gui_panel_check(struct gui_panel_layout*, const char*, gui_bool active);
|
2015-06-05 16:01:15 +03:00
|
|
|
/* this function creates a checkbox widget with either active or inactive state
|
|
|
|
Input:
|
|
|
|
- checkbox label describing the content
|
|
|
|
- state of the checkbox with either active or inactive
|
|
|
|
Output:
|
|
|
|
- from user input updated state of the checkbox
|
|
|
|
*/
|
2015-06-03 01:58:57 +03:00
|
|
|
GUI_API gui_bool gui_panel_option(struct gui_panel_layout*, const char*, gui_bool active);
|
2015-06-05 16:01:15 +03:00
|
|
|
/* this function creates a radiobutton widget with either active or inactive state
|
|
|
|
Input:
|
|
|
|
- radiobutton label describing the content
|
|
|
|
- state of the radiobutton with either active or inactive
|
|
|
|
Output:
|
|
|
|
- from user input updated state of the radiobutton
|
|
|
|
*/
|
2015-06-03 01:58:57 +03:00
|
|
|
GUI_API gui_size gui_panel_option_group(struct gui_panel_layout*, const char**,
|
2015-06-05 16:01:15 +03:00
|
|
|
gui_size cnt, gui_size cur);
|
|
|
|
/* this function creates a radiobutton group widget with only one active radiobutton
|
|
|
|
Input:
|
|
|
|
- radiobutton label array describing the content of each radiobutton
|
|
|
|
- number of radiobuttons
|
|
|
|
- index of the current active radiobutton
|
|
|
|
Output:
|
|
|
|
- the from user input updated index of the active radiobutton
|
|
|
|
*/
|
2015-06-03 01:58:57 +03:00
|
|
|
GUI_API gui_bool gui_panel_button_text(struct gui_panel_layout*, const char*,
|
2015-06-05 16:01:15 +03:00
|
|
|
enum gui_button_behavior);
|
|
|
|
/* this function creates a text button
|
|
|
|
Input:
|
|
|
|
- button label describing the button
|
|
|
|
- button behavior with either default or repeater behavior
|
|
|
|
Output:
|
|
|
|
- gui_true if the button was transistioned from unpressed to pressed with
|
|
|
|
default button behavior or pressed if repeater behavior.
|
|
|
|
*/
|
2015-06-04 23:17:54 +03:00
|
|
|
GUI_API gui_bool gui_panel_button_color(struct gui_panel_layout*, struct gui_color,
|
2015-06-05 16:01:15 +03:00
|
|
|
enum gui_button_behavior);
|
|
|
|
/* this function creates a colored button without content
|
|
|
|
Input:
|
|
|
|
- color the button should be drawn with
|
|
|
|
- button behavior with either default or repeater behavior
|
|
|
|
Output:
|
|
|
|
- gui_true if the button was transistioned from unpressed to pressed with
|
|
|
|
default button behavior or pressed if repeater behavior.
|
|
|
|
*/
|
2015-06-03 01:58:57 +03:00
|
|
|
GUI_API gui_bool gui_panel_button_triangle(struct gui_panel_layout*, enum gui_heading,
|
2015-06-05 16:01:15 +03:00
|
|
|
enum gui_button_behavior);
|
|
|
|
/* this function creates a button with a triangle pointing in one of four directions
|
|
|
|
Input:
|
|
|
|
- triangle direction with either up, down, left or right direction
|
|
|
|
- button behavior with either default or repeater behavior
|
|
|
|
Output:
|
|
|
|
- gui_true if the button was transistioned from unpressed to pressed with
|
|
|
|
default button behavior or pressed if repeater behavior.
|
|
|
|
*/
|
2015-06-06 21:13:28 +03:00
|
|
|
GUI_API gui_bool gui_panel_button_image(struct gui_panel_layout*, struct gui_image img,
|
2015-06-05 16:01:15 +03:00
|
|
|
enum gui_button_behavior);
|
|
|
|
/* this function creates a button with an icon as content
|
|
|
|
Input:
|
|
|
|
- icon image handle to draw into the button
|
|
|
|
- button behavior with either default or repeater behavior
|
|
|
|
Output:
|
|
|
|
- gui_true if the button was transistioned from unpressed to pressed with
|
|
|
|
default button behavior or pressed if repeater behavior.
|
|
|
|
*/
|
2015-06-06 21:13:28 +03:00
|
|
|
GUI_API gui_bool gui_panel_button_text_triangle(struct gui_panel_layout*, enum gui_heading,
|
|
|
|
const char*, enum gui_text_align, enum gui_button_behavior);
|
|
|
|
/* this function creates a button with a triangle pointing in one of four directions and text
|
|
|
|
Input:
|
|
|
|
- triangle direction with either up, down, left or right direction
|
|
|
|
- button label describing the button
|
|
|
|
- text alignment with either left, centered or right alignment
|
|
|
|
- button behavior with either default or repeater behavior
|
|
|
|
Output:
|
|
|
|
- gui_true if the button was transistioned from unpressed to pressed with
|
|
|
|
default button behavior or pressed if repeater behavior.
|
|
|
|
*/
|
2015-06-03 01:58:57 +03:00
|
|
|
GUI_API gui_bool gui_panel_button_toggle(struct gui_panel_layout*, const char*,gui_bool value);
|
2015-06-05 16:01:15 +03:00
|
|
|
/* this function creates a toggle button which is either active or inactive
|
|
|
|
Input:
|
|
|
|
- label describing the toggle button
|
|
|
|
- current state of the toggle
|
|
|
|
Output:
|
|
|
|
- from user input updated toggle state
|
|
|
|
*/
|
2015-06-03 01:58:57 +03:00
|
|
|
GUI_API gui_float gui_panel_slider(struct gui_panel_layout*, gui_float min, gui_float val,
|
2015-06-05 16:01:15 +03:00
|
|
|
gui_float max, gui_float step);
|
|
|
|
/* this function creates a slider for value manipulation
|
|
|
|
Input:
|
|
|
|
- minimal slider value that will not be underflown
|
|
|
|
- slider value which shall be updated
|
|
|
|
- maximal slider value that will not be overflown
|
|
|
|
- step intervall to change the slider with
|
|
|
|
Output:
|
|
|
|
- the from user input updated slider value
|
|
|
|
*/
|
2015-06-03 01:58:57 +03:00
|
|
|
GUI_API gui_size gui_panel_progress(struct gui_panel_layout*, gui_size cur, gui_size max,
|
2015-06-05 16:01:15 +03:00
|
|
|
gui_bool modifyable);
|
|
|
|
/* this function creates an either user or program controlled progressbar
|
|
|
|
Input:
|
|
|
|
- current progressbar value
|
|
|
|
- maximal progressbar value that will not be overflown
|
|
|
|
- flag indicating if the progressbar should be changeable by user input
|
|
|
|
Output:
|
|
|
|
- the from user input updated progressbar value if modifyable progressbar
|
|
|
|
*/
|
2015-06-03 01:58:57 +03:00
|
|
|
GUI_API gui_size gui_panel_edit(struct gui_panel_layout*, gui_char *buffer, gui_size len,
|
2015-06-05 16:01:15 +03:00
|
|
|
gui_size max, gui_bool *active, enum gui_input_filter);
|
|
|
|
/* this function creates an editbox to updated/insert user text input
|
|
|
|
Input:
|
|
|
|
- buffer to fill with user input
|
|
|
|
- current length of the buffer in bytes
|
|
|
|
- maximal number of bytes the buffer can be filled with
|
|
|
|
- state of the editbox with active as currently modified by the user
|
|
|
|
- filter type to limit the glyph the user can input into the editbox
|
|
|
|
Output:
|
|
|
|
- length of the buffer after user input update
|
|
|
|
- current state of the editbox with active(gui_true) or inactive(gui_false)
|
|
|
|
*/
|
2015-06-03 01:58:57 +03:00
|
|
|
GUI_API gui_size gui_panel_edit_filtered(struct gui_panel_layout*, gui_char *buffer,
|
2015-06-05 16:01:15 +03:00
|
|
|
gui_size len, gui_size max, gui_bool *active, gui_filter);
|
|
|
|
/* this function creates an editbox to updated/insert filtered user text input
|
|
|
|
Input:
|
|
|
|
- buffer to fill with user input
|
|
|
|
- current length of the buffer in bytes
|
|
|
|
- maximal number of bytes the buffer can be filled with
|
|
|
|
- state of the editbox with active as currently modified by the user
|
|
|
|
- filter callback to limit the glyphes the user can input into the editbox
|
|
|
|
Output:
|
|
|
|
- length of the buffer after user input update
|
|
|
|
- current state of the editbox with active(gui_true) or inactive(gui_false)
|
|
|
|
*/
|
2015-06-03 01:58:57 +03:00
|
|
|
GUI_API gui_int gui_panel_spinner(struct gui_panel_layout*, gui_int min, gui_int value,
|
2015-06-05 16:01:15 +03:00
|
|
|
gui_int max, gui_int step, gui_bool *active);
|
|
|
|
/* this function creates a spinner widget
|
|
|
|
Input:
|
|
|
|
- min value that will not be underflown
|
|
|
|
- current spinner value to be updated by user input
|
|
|
|
- max value that will not be overflown
|
|
|
|
- spinner value modificaton stepping intervall
|
|
|
|
- current state of the spinner with active as currently modfied by user input
|
|
|
|
Output:
|
|
|
|
- the from user input updated spinner value
|
|
|
|
- current state of the editbox with active(gui_true) or inactive(gui_false)
|
|
|
|
*/
|
2015-06-03 01:58:57 +03:00
|
|
|
GUI_API gui_size gui_panel_selector(struct gui_panel_layout*, const char *items[],
|
2015-06-05 16:01:15 +03:00
|
|
|
gui_size item_count, gui_size item_current);
|
|
|
|
/* this function creates a string selector widget
|
|
|
|
Input:
|
|
|
|
- string array contaning a selection
|
|
|
|
- number of items inside the selection array
|
|
|
|
- index of the currenetly selected item inside the array
|
|
|
|
Output:
|
|
|
|
- the from user selection selected array index of the active item
|
|
|
|
*/
|
2015-06-03 01:58:57 +03:00
|
|
|
GUI_API void gui_panel_graph_begin(struct gui_panel_layout*, struct gui_graph*,
|
2015-06-05 16:01:15 +03:00
|
|
|
enum gui_graph_type, gui_size count,
|
|
|
|
gui_float min, gui_float max);
|
|
|
|
/* this function begins a graph building widget
|
|
|
|
Input:
|
|
|
|
- type of the graph with either lines or bars
|
|
|
|
- minimal graph value for the lower bounds of the graph
|
|
|
|
- maximal graph value for the upper bounds of the graph
|
|
|
|
Output:
|
|
|
|
- graph stack object that can be filled with values
|
|
|
|
*/
|
2015-06-03 01:58:57 +03:00
|
|
|
GUI_API gui_bool gui_panel_graph_push(struct gui_panel_layout*,struct gui_graph*,gui_float);
|
2015-06-05 16:01:15 +03:00
|
|
|
/* this function pushes a value inside the pushed graph
|
|
|
|
Input:
|
|
|
|
- value data point to fill into the graph either as point or as bar
|
|
|
|
*/
|
2015-06-03 01:58:57 +03:00
|
|
|
GUI_API void gui_panel_graph_end(struct gui_panel_layout *layout, struct gui_graph*);
|
2015-06-05 16:01:15 +03:00
|
|
|
/* this function pops the graph from being used
|
|
|
|
*/
|
2015-06-03 01:58:57 +03:00
|
|
|
GUI_API gui_int gui_panel_graph(struct gui_panel_layout*, enum gui_graph_type,
|
2015-06-05 16:01:15 +03:00
|
|
|
const gui_float *values, gui_size count, gui_size offset);
|
|
|
|
/* this function create a graph with given type from an array of value
|
|
|
|
Input:
|
|
|
|
- type of the graph with either line or bar graph
|
|
|
|
- graph values in continues array form
|
|
|
|
- number of graph values
|
|
|
|
- offset into the value array from which to begin drawing
|
|
|
|
*/
|
2015-06-03 01:58:57 +03:00
|
|
|
GUI_API gui_int gui_panel_graph_ex(struct gui_panel_layout*, enum gui_graph_type,
|
2015-06-05 16:01:15 +03:00
|
|
|
gui_size count, gui_float(*get_value)(void*, gui_size),
|
|
|
|
void *userdata);
|
|
|
|
/* this function create a graph with given type from callback providing the
|
|
|
|
graph with values
|
|
|
|
Input:
|
|
|
|
- type of the graph with either line or bar graph
|
|
|
|
- number of values inside the graph
|
|
|
|
- callback to access the values inside your datastrucutre
|
|
|
|
- userdata to pull the graph values from
|
|
|
|
*/
|
2015-06-03 01:58:57 +03:00
|
|
|
GUI_API void gui_panel_table_begin(struct gui_panel_layout*, gui_flags flags,
|
2015-06-05 16:01:15 +03:00
|
|
|
gui_size row_height, gui_size cols);
|
|
|
|
/* this function set the panel to a table state which enable you to create a
|
|
|
|
table with the standart panel row layout
|
|
|
|
Input:
|
|
|
|
- table row and column line seperator flags
|
|
|
|
- height of each table row
|
|
|
|
- number of columns inside the table
|
|
|
|
*/
|
2015-06-03 01:58:57 +03:00
|
|
|
GUI_API void gui_panel_table_row(struct gui_panel_layout*);
|
2015-06-05 16:01:15 +03:00
|
|
|
/* this function add a row with line seperator into asa table marked table
|
|
|
|
*/
|
2015-06-03 01:58:57 +03:00
|
|
|
GUI_API void gui_panel_table_end(struct gui_panel_layout*);
|
2015-06-05 16:01:15 +03:00
|
|
|
/* this function finished the table build up process and reverts the panel back
|
|
|
|
to its normal state.
|
|
|
|
*/
|
2015-06-03 01:58:57 +03:00
|
|
|
GUI_API gui_bool gui_panel_tab_begin(struct gui_panel_layout*, struct gui_panel_layout *tab,
|
2015-06-05 16:01:15 +03:00
|
|
|
const char*, gui_bool);
|
|
|
|
/* this function adds a tab subpanel into the parent panel
|
|
|
|
Input:
|
|
|
|
- tab title to write into the header
|
|
|
|
- state of the tab with either collapsed(GUI_MINIMIZED) or open state
|
|
|
|
Output:
|
|
|
|
- tab layout to fill with widgets
|
|
|
|
- wether the tab is currently collapsed(gui_true) or open(gui_false)
|
|
|
|
*/
|
2015-06-03 01:58:57 +03:00
|
|
|
GUI_API void gui_panel_tab_end(struct gui_panel_layout*, struct gui_panel_layout *tab);
|
2015-06-05 16:01:15 +03:00
|
|
|
/* this function finishes the previously started tab and allocated the needed
|
|
|
|
tab space in the parent panel
|
|
|
|
*/
|
2015-06-03 01:58:57 +03:00
|
|
|
GUI_API void gui_panel_group_begin(struct gui_panel_layout*, struct gui_panel_layout *tab,
|
2015-06-05 16:01:15 +03:00
|
|
|
const char*, gui_float offset);
|
|
|
|
/* this function adds a grouped subpanel into the parent panel
|
|
|
|
IMPORTANT: You need to set the height of the group with panel_row_layout
|
|
|
|
Input:
|
|
|
|
- group title to write into the header
|
|
|
|
- group scrollbar offset
|
|
|
|
Output:
|
|
|
|
- group layout to fill with widgets
|
|
|
|
*/
|
2015-06-03 01:58:57 +03:00
|
|
|
GUI_API gui_float gui_panel_group_end(struct gui_panel_layout*, struct gui_panel_layout* tab);
|
2015-06-05 16:01:15 +03:00
|
|
|
/* this function finishes the previously started group layout
|
|
|
|
Output:
|
|
|
|
- The from user input updated group scrollbar pixel offset
|
|
|
|
*/
|
2015-06-03 01:58:57 +03:00
|
|
|
GUI_API gui_size gui_panel_shelf_begin(struct gui_panel_layout*, struct gui_panel_layout*,
|
2015-06-05 16:01:15 +03:00
|
|
|
const char *tabs[], gui_size size,
|
|
|
|
gui_size active, gui_float offset);
|
|
|
|
/* this function adds a shelf subpanel into the parent panel
|
|
|
|
IMPORTANT: You need to set the height of the shelf with panel_row_layout
|
|
|
|
Input:
|
|
|
|
- all possible selectible tabs of the shelf with names as a string array
|
|
|
|
- number of seletectible tabs
|
|
|
|
- current active tab array index
|
|
|
|
- scrollbar pixel offset for the shelf
|
|
|
|
Output:
|
|
|
|
- group layout to fill with widgets
|
|
|
|
- the from user input updated current shelf tab index
|
|
|
|
*/
|
2015-06-03 01:58:57 +03:00
|
|
|
GUI_API gui_float gui_panel_shelf_end(struct gui_panel_layout*, struct gui_panel_layout*);
|
2015-06-05 16:01:15 +03:00
|
|
|
/* this function finishes the previously started shelf layout
|
|
|
|
Input:
|
|
|
|
- previously started group layout
|
|
|
|
Output:
|
|
|
|
- The from user input updated shelf scrollbar pixel offset
|
|
|
|
*/
|
2015-06-03 01:58:57 +03:00
|
|
|
GUI_API void gui_panel_end(struct gui_panel_layout*, struct gui_panel*);
|
2015-06-05 16:01:15 +03:00
|
|
|
/* this function ends the panel layout build up process and updates the panel
|
|
|
|
*/
|
2015-05-29 15:18:23 +03:00
|
|
|
/*
|
|
|
|
* ==============================================================
|
|
|
|
*
|
|
|
|
* Stack
|
|
|
|
*
|
|
|
|
* ===============================================================
|
|
|
|
*/
|
|
|
|
struct gui_stack {
|
|
|
|
gui_size count;
|
2015-06-05 16:01:15 +03:00
|
|
|
/* number of panels inside the stack */
|
2015-05-29 15:18:23 +03:00
|
|
|
struct gui_panel *begin;
|
2015-06-05 16:01:15 +03:00
|
|
|
/* first panel inside the panel which will be drawn first */
|
2015-05-29 15:18:23 +03:00
|
|
|
struct gui_panel *end;
|
2015-06-05 16:01:15 +03:00
|
|
|
/* currently active panel which will be drawn last */
|
2015-05-29 15:18:23 +03:00
|
|
|
};
|
|
|
|
|
2015-06-03 01:58:57 +03:00
|
|
|
GUI_API void gui_stack_clear(struct gui_stack*);
|
2015-06-05 16:01:15 +03:00
|
|
|
/* this function clears and reset the stack back to an empty state */
|
2015-06-03 01:58:57 +03:00
|
|
|
GUI_API void gui_stack_push(struct gui_stack*, struct gui_panel*);
|
2015-06-05 16:01:15 +03:00
|
|
|
/* this function add a panel into the stack if the panel is not already inside
|
|
|
|
* the stack */
|
2015-06-03 01:58:57 +03:00
|
|
|
GUI_API void gui_stack_pop(struct gui_stack*, struct gui_panel*);
|
2015-06-05 16:01:15 +03:00
|
|
|
/* this function removes a panel from the stack */
|
2015-05-29 15:18:23 +03:00
|
|
|
#define gui_foreach_panel(i, s) for (i = (s)->begin; i != NULL; i = (i)->next)
|
2015-06-05 16:01:15 +03:00
|
|
|
/* iterates over each panel inside the stack */
|
2015-05-29 15:18:23 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* ==============================================================
|
|
|
|
*
|
2015-05-30 22:20:04 +03:00
|
|
|
* Layout
|
2015-05-29 15:18:23 +03:00
|
|
|
*
|
|
|
|
* ===============================================================
|
|
|
|
*/
|
2015-06-05 16:01:15 +03:00
|
|
|
/*
|
|
|
|
-----------------------------
|
|
|
|
| Top |
|
|
|
|
-----------------------------
|
|
|
|
| | | |
|
|
|
|
| left | center | right |
|
|
|
|
| | | |
|
|
|
|
-----------------------------
|
|
|
|
| Bottom |
|
|
|
|
-----------------------------
|
|
|
|
*/
|
2015-05-29 15:18:23 +03:00
|
|
|
enum gui_layout_slot_index {
|
|
|
|
GUI_SLOT_TOP,
|
|
|
|
GUI_SLOT_BOTTOM,
|
|
|
|
GUI_SLOT_LEFT,
|
|
|
|
GUI_SLOT_CENTER,
|
|
|
|
GUI_SLOT_RIGHT,
|
|
|
|
GUI_SLOT_MAX
|
|
|
|
};
|
|
|
|
|
|
|
|
enum gui_layout_format {
|
|
|
|
GUI_LAYOUT_HORIZONTAL,
|
2015-06-05 16:01:15 +03:00
|
|
|
/* panels in slots are added left to right */
|
2015-05-29 15:18:23 +03:00
|
|
|
GUI_LAYOUT_VERTICAL
|
2015-06-05 16:01:15 +03:00
|
|
|
/* panels in slots are added top to bottom */
|
2015-05-29 15:18:23 +03:00
|
|
|
};
|
2015-05-10 23:17:30 +03:00
|
|
|
|
2015-05-29 15:18:23 +03:00
|
|
|
struct gui_layout_config {
|
2015-06-05 16:01:15 +03:00
|
|
|
/* every value is in percent (0.0f - 1.0f) */
|
2015-05-29 15:18:23 +03:00
|
|
|
gui_float left;
|
2015-06-05 16:01:15 +03:00
|
|
|
/* horizontal window ratio left slot */
|
2015-05-29 15:18:23 +03:00
|
|
|
gui_float right;
|
2015-06-05 16:01:15 +03:00
|
|
|
/* horizontal window ratio right slot */
|
2015-05-29 15:18:23 +03:00
|
|
|
gui_float centerh;
|
2015-06-05 16:01:15 +03:00
|
|
|
/* horizontal window ratio center slot */
|
2015-05-29 15:18:23 +03:00
|
|
|
gui_float centerv;
|
2015-06-05 16:01:15 +03:00
|
|
|
/* vertical window ratio in center slot */
|
2015-05-29 15:18:23 +03:00
|
|
|
gui_float bottom;
|
2015-06-05 16:01:15 +03:00
|
|
|
/* vertical window ratio in bottom slot */
|
2015-05-29 15:18:23 +03:00
|
|
|
gui_float top;
|
2015-06-05 16:01:15 +03:00
|
|
|
/* vertical window ratio in top slot */
|
2015-05-29 15:18:23 +03:00
|
|
|
};
|
2015-05-22 16:14:26 +03:00
|
|
|
|
2015-05-29 15:18:23 +03:00
|
|
|
struct gui_layout_slot {
|
|
|
|
gui_size capacity;
|
2015-06-05 16:01:15 +03:00
|
|
|
/* number of panels inside the slot */
|
2015-05-29 15:18:23 +03:00
|
|
|
struct gui_vec2 ratio;
|
2015-06-05 16:01:15 +03:00
|
|
|
/* horizontal and vertical window ratio */
|
2015-05-29 15:18:23 +03:00
|
|
|
struct gui_vec2 offset;
|
2015-06-05 16:01:15 +03:00
|
|
|
/* position of the slot in the window */
|
2015-05-29 15:18:23 +03:00
|
|
|
enum gui_layout_format format;
|
2015-06-05 16:01:15 +03:00
|
|
|
/* panel filling layout */
|
|
|
|
};
|
|
|
|
|
|
|
|
enum gui_layout_state {
|
|
|
|
GUI_LAYOUT_INACTIVE,
|
|
|
|
/* tiled layout is inactive and cannot be updated by the user */
|
|
|
|
GUI_LAYOUT_ACTIVE
|
|
|
|
/* tiled layout is active and can be updated by the user */
|
2015-05-29 15:18:23 +03:00
|
|
|
};
|
2015-05-16 13:26:39 +03:00
|
|
|
|
2015-05-29 15:18:23 +03:00
|
|
|
struct gui_layout {
|
|
|
|
gui_flags flags;
|
|
|
|
gui_size width, height;
|
2015-06-05 16:01:15 +03:00
|
|
|
/* size of the layout inside the window */
|
2015-05-29 15:18:23 +03:00
|
|
|
enum gui_layout_state state;
|
2015-06-05 16:01:15 +03:00
|
|
|
/* flag indicating if the layout is from the user modifyable */
|
2015-05-29 15:18:23 +03:00
|
|
|
struct gui_stack stack;
|
2015-06-05 16:01:15 +03:00
|
|
|
/* panel stack of all panels inside the layout */
|
2015-05-29 15:18:23 +03:00
|
|
|
struct gui_layout_slot slots[GUI_SLOT_MAX];
|
2015-06-05 16:01:15 +03:00
|
|
|
/* each slot inside the panel layout */
|
2015-05-29 15:18:23 +03:00
|
|
|
};
|
2015-05-22 16:14:26 +03:00
|
|
|
|
2015-06-03 01:58:57 +03:00
|
|
|
GUI_API void gui_layout_init(struct gui_layout*, const struct gui_layout_config*,
|
2015-06-05 16:01:15 +03:00
|
|
|
gui_size width, gui_size height);
|
|
|
|
/* initializes the layout with given slot ratio and size */
|
2015-06-03 01:58:57 +03:00
|
|
|
GUI_API void gui_layout_set_size(struct gui_layout*, gui_size width, gui_size height);
|
2015-06-05 16:01:15 +03:00
|
|
|
/* updates the size of the complete layout */
|
2015-06-03 01:58:57 +03:00
|
|
|
GUI_API void gui_layout_slot(struct gui_layout*, enum gui_layout_slot_index,
|
2015-06-05 16:01:15 +03:00
|
|
|
enum gui_layout_format, gui_size panel_count);
|
|
|
|
/* activates a layout slot with number of panels and filling format*/
|
2015-06-04 23:17:54 +03:00
|
|
|
|
2015-06-03 01:58:57 +03:00
|
|
|
#ifdef GUI_IMPLEMENTATION
|
|
|
|
|
|
|
|
#ifndef GUI_ASSERT
|
|
|
|
#define GUI_ASSERT(expr)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef NULL
|
|
|
|
#define NULL ((void*)0)
|
|
|
|
#endif
|
|
|
|
#ifndef MIN
|
|
|
|
#define MIN(a,b) ((a) < (b) ? (a) : (b))
|
|
|
|
#endif
|
|
|
|
#ifndef MAX
|
|
|
|
#define MAX(a,b) ((a) < (b) ? (b) : (a))
|
2015-04-10 19:35:17 +03:00
|
|
|
#endif
|
2015-06-03 01:58:57 +03:00
|
|
|
#ifndef CLAMP
|
|
|
|
#define CLAMP(i,v,x) (MAX(MIN(v,x), i))
|
|
|
|
#endif
|
|
|
|
|
2015-06-04 23:17:54 +03:00
|
|
|
#define GUI_UTF_INVALID 0xFFFD
|
2015-06-03 01:58:57 +03:00
|
|
|
#define GUI_MAX_NUMBER_BUFFER 64
|
|
|
|
#define GUI_SATURATE(x) (MAX(0, MIN(1.0f, x)))
|
|
|
|
#define GUI_LEN(a) (sizeof(a)/sizeof(a)[0])
|
|
|
|
#define GUI_ABS(a) (((a) < 0) ? -(a) : (a))
|
|
|
|
#define GUI_BETWEEN(x, a, b) ((a) <= (x) && (x) <= (b))
|
|
|
|
#define GUI_INBOX(px, py, x, y, w, h) (GUI_BETWEEN(px, x, x+w) && GUI_BETWEEN(py, y, y+h))
|
|
|
|
#define GUI_INTERSECT(x0, y0, w0, h0, x1, y1, w1, h1) \
|
|
|
|
(!(((x1 > (x0 + w0)) || ((x1 + w1) < x0) || (y1 > (y0 + h0)) || (y1 + h1) < y0)))
|
|
|
|
|
|
|
|
#define gui_vec2_mov(to,from) (to).x = (from).x, (to).y = (from).y
|
|
|
|
#define gui_vec2_sub(r,a,b) do {(r).x=(a).x-(b).x; (r).y=(a).y-(b).y;} while(0)
|
2015-06-04 23:17:54 +03:00
|
|
|
#define gui_color_to_array(ar, c)\
|
|
|
|
(ar)[0] = (c).r, (ar)[1] = (c).g, (ar)[2] = (c).b, (ar)[3] = (c).a
|
2015-06-03 01:58:57 +03:00
|
|
|
|
|
|
|
#define GUI_ALIGNOF(t) ((char*)(&((struct {char c; t _h;}*)0)->_h) - (char*)0)
|
|
|
|
#define GUI_ALIGN_PTR(x, mask) (void*)((gui_size)((gui_byte*)(x) + (mask-1)) & ~(mask-1))
|
|
|
|
#define GUI_ALIGN(x, mask) ((x) + (mask-1)) & ~(mask-1)
|
|
|
|
#define GUI_OFFSETOF(st, m) ((gui_size)(&((st *)0)->m))
|
|
|
|
|
|
|
|
static const struct gui_rect gui_null_rect = {-9999.0f, 9999.0f, 9999.0f, 9999.0f};
|
|
|
|
static const gui_byte gui_utfbyte[GUI_UTF_SIZE+1] = {0x80, 0, 0xC0, 0xE0, 0xF0};
|
|
|
|
static const gui_byte gui_utfmask[GUI_UTF_SIZE+1] = {0xC0, 0x80, 0xE0, 0xF0, 0xF8};
|
|
|
|
static const long gui_utfmin[GUI_UTF_SIZE+1] = {0, 0, 0x80, 0x800, 0x100000};
|
|
|
|
static const long gui_utfmax[GUI_UTF_SIZE+1] = {0x10FFFF, 0x7F, 0x7FF, 0xFFFF, 0x10FFFF};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* ==============================================================
|
|
|
|
*
|
|
|
|
* Utility
|
|
|
|
*
|
|
|
|
* ===============================================================
|
|
|
|
*/
|
2015-06-06 21:13:28 +03:00
|
|
|
GUI_API struct gui_image gui_image_ptr(void*);
|
|
|
|
GUI_API struct gui_image gui_image_id(gui_int);
|
|
|
|
GUI_API struct gui_image gui_subimage_ptr(void*, struct gui_rect);
|
|
|
|
GUI_API struct gui_image gui_subimage_id(gui_int, struct gui_rect);
|
|
|
|
GUI_API gui_bool gui_rect_is_valid(struct gui_rect*);
|
|
|
|
GUI_API gui_bool gui_image_is_subimage(struct gui_image* img);
|
|
|
|
GUI_API struct gui_rect gui_rect(gui_float x, gui_float y, gui_float w, gui_float h);
|
|
|
|
GUI_API struct gui_vec2 gui_vec2(gui_float x, gui_float y);
|
2015-06-05 21:27:26 +03:00
|
|
|
GUI_API struct gui_color gui_rgba(gui_byte r, gui_byte g, gui_byte b, gui_byte a);
|
|
|
|
GUI_API struct gui_color gui_rgb(gui_byte r, gui_byte g, gui_byte b);
|
|
|
|
|
2015-06-06 21:13:28 +03:00
|
|
|
struct gui_rect
|
|
|
|
gui_rect(gui_float x, gui_float y, gui_float w, gui_float h)
|
|
|
|
{
|
|
|
|
struct gui_rect r;
|
|
|
|
r.x = x, r.y = y;
|
|
|
|
r.w = w, r.h = h;
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct gui_vec2
|
|
|
|
gui_vec2(gui_float x, gui_float y)
|
|
|
|
{
|
|
|
|
struct gui_vec2 ret;
|
|
|
|
ret.x = x; ret.y = y;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void*
|
|
|
|
gui_memcopy(void *dst, const void *src, gui_size size)
|
|
|
|
{
|
|
|
|
gui_size i = 0;
|
|
|
|
char *d = dst;
|
|
|
|
const char *s = src;
|
|
|
|
for (i = 0; i < size; ++i)
|
|
|
|
d[i] = s[i];
|
|
|
|
return dst;
|
|
|
|
}
|
|
|
|
|
2015-06-05 21:27:26 +03:00
|
|
|
struct gui_color
|
2015-06-04 23:17:54 +03:00
|
|
|
gui_rgba(gui_byte r, gui_byte g, gui_byte b, gui_byte a)
|
|
|
|
{
|
|
|
|
struct gui_color ret;
|
|
|
|
ret.r = r; ret.g = g;
|
|
|
|
ret.b = b; ret.a = a;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2015-06-05 21:27:26 +03:00
|
|
|
struct gui_color
|
2015-06-04 23:17:54 +03:00
|
|
|
gui_rgb(gui_byte r, gui_byte g, gui_byte b)
|
|
|
|
{
|
|
|
|
struct gui_color ret;
|
|
|
|
ret.r = r; ret.g = g;
|
|
|
|
ret.b = b; ret.a = 255;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2015-06-06 21:13:28 +03:00
|
|
|
struct gui_image
|
|
|
|
gui_subimage_ptr(void *ptr, struct gui_rect r)
|
2015-06-04 23:17:54 +03:00
|
|
|
{
|
2015-06-06 21:13:28 +03:00
|
|
|
struct gui_image s;
|
|
|
|
s.handle.ptr = ptr;
|
|
|
|
s.region = r;
|
|
|
|
return s;
|
2015-06-04 23:17:54 +03:00
|
|
|
}
|
|
|
|
|
2015-06-06 21:13:28 +03:00
|
|
|
struct gui_image
|
|
|
|
gui_subimage_id(gui_int id, struct gui_rect r)
|
2015-06-03 01:58:57 +03:00
|
|
|
{
|
2015-06-06 21:13:28 +03:00
|
|
|
struct gui_image s;
|
|
|
|
s.handle.id = id;
|
|
|
|
s.region = r;
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct gui_image
|
|
|
|
gui_image_ptr(void *ptr)
|
|
|
|
{
|
|
|
|
struct gui_image s;
|
|
|
|
s.handle.ptr = ptr;
|
|
|
|
s.region = gui_rect(-1,-1,-1,-1);
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct gui_image
|
|
|
|
gui_image_id(gui_int id)
|
|
|
|
{
|
|
|
|
struct gui_image s;
|
|
|
|
s.handle.id = id;
|
|
|
|
s.region = gui_rect(-1,-1,-1,-1);
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
|
|
|
gui_bool
|
|
|
|
gui_rect_is_valid(struct gui_rect *r)
|
|
|
|
{
|
|
|
|
if (r->x < 0 || r->y < 0 ||
|
|
|
|
r->w < 0 || r->h < 0)
|
|
|
|
return gui_false;
|
|
|
|
return gui_true;
|
|
|
|
}
|
|
|
|
|
|
|
|
gui_bool
|
|
|
|
gui_image_is_subimage(struct gui_image* img)
|
|
|
|
{
|
|
|
|
return !gui_rect_is_valid(&img->region);
|
2015-06-03 01:58:57 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gui_zero(void *dst, gui_size size)
|
|
|
|
{
|
|
|
|
gui_size i;
|
|
|
|
char *d = dst;
|
|
|
|
for (i = 0; i < size; ++i) d[i] = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gui_size
|
|
|
|
gui_strsiz(const char *str)
|
|
|
|
{
|
|
|
|
gui_size siz = 0;
|
|
|
|
while (str && *str++ != '\0') siz++;
|
|
|
|
return siz;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gui_int
|
|
|
|
gui_strtoi(gui_int *number, const char *buffer, gui_size len)
|
|
|
|
{
|
|
|
|
gui_size i;
|
|
|
|
if (!number || !buffer)
|
|
|
|
return 0;
|
|
|
|
*number = 0;
|
|
|
|
for (i = 0; i < len; ++i)
|
|
|
|
*number = *number * 10 + (buffer[i] - '0');
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gui_size
|
|
|
|
gui_itos(char *buffer, gui_int num)
|
|
|
|
{
|
|
|
|
static const char digit[] = "0123456789";
|
|
|
|
gui_int shifter;
|
|
|
|
gui_size len = 0;
|
|
|
|
char *p = buffer;
|
|
|
|
if (!buffer)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (num < 0) {
|
|
|
|
num = GUI_ABS(num);
|
|
|
|
*p++ = '-';
|
|
|
|
}
|
|
|
|
shifter = num;
|
|
|
|
|
|
|
|
do {
|
|
|
|
++p;
|
|
|
|
shifter = shifter/10;
|
|
|
|
} while (shifter);
|
|
|
|
*p = '\0';
|
|
|
|
|
|
|
|
len = (gui_size)(p - buffer);
|
|
|
|
do {
|
|
|
|
*--p = digit[num % 10];
|
|
|
|
num = num / 10;
|
|
|
|
} while (num);
|
|
|
|
return len;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gui_unify(struct gui_rect *clip, const struct gui_rect *a, gui_float x0, gui_float y0,
|
|
|
|
gui_float x1, gui_float y1)
|
|
|
|
{
|
|
|
|
clip->x = MAX(a->x, x0) - 1;
|
|
|
|
clip->y = MAX(a->y, y0) - 1;
|
|
|
|
clip->w = MIN(a->x + a->w, x1) - clip->x+ 2;
|
|
|
|
clip->h = MIN(a->y + a->h, y1) - clip->y + 2;
|
|
|
|
clip->w = MAX(0, clip->w);
|
|
|
|
clip->h = MAX(0, clip->h);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gui_triangle_from_direction(struct gui_vec2 *result, gui_float x, gui_float y,
|
|
|
|
gui_float w, gui_float h, gui_float pad_x, gui_float pad_y,
|
|
|
|
enum gui_heading direction)
|
|
|
|
{
|
|
|
|
gui_float w_half, h_half;
|
|
|
|
GUI_ASSERT(result);
|
|
|
|
|
|
|
|
w = MAX(4 * pad_x, w);
|
|
|
|
h = MAX(4 * pad_y, h);
|
|
|
|
w = w - 2 * pad_x;
|
|
|
|
h = h - 2 * pad_y;
|
|
|
|
|
|
|
|
x = x + pad_x;
|
|
|
|
y = y + pad_y;
|
|
|
|
|
|
|
|
w_half = w / 2.0f;
|
|
|
|
h_half = h / 2.0f;
|
|
|
|
|
|
|
|
if (direction == GUI_UP) {
|
2015-06-04 23:17:54 +03:00
|
|
|
result[0] = gui_vec2(x + w_half, y);
|
|
|
|
result[1] = gui_vec2(x, y + h);
|
|
|
|
result[2] = gui_vec2(x + w, y + h);
|
2015-06-03 01:58:57 +03:00
|
|
|
} else if (direction == GUI_RIGHT) {
|
2015-06-04 23:17:54 +03:00
|
|
|
result[0] = gui_vec2(x, y);
|
|
|
|
result[1] = gui_vec2(x, y + h);
|
|
|
|
result[2] = gui_vec2(x + w, y + h_half);
|
2015-06-03 01:58:57 +03:00
|
|
|
} else if (direction == GUI_DOWN) {
|
2015-06-04 23:17:54 +03:00
|
|
|
result[0] = gui_vec2(x, y);
|
|
|
|
result[1] = gui_vec2(x + w_half, y + h);
|
|
|
|
result[2] = gui_vec2(x + w, y);
|
2015-06-03 01:58:57 +03:00
|
|
|
} else {
|
2015-06-04 23:17:54 +03:00
|
|
|
result[0] = gui_vec2(x, y + h_half);
|
|
|
|
result[1] = gui_vec2(x + w, y + h);
|
|
|
|
result[2] = gui_vec2(x + w, y);
|
2015-06-03 01:58:57 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* ==============================================================
|
|
|
|
*
|
|
|
|
* Input
|
|
|
|
*
|
|
|
|
* ===============================================================
|
|
|
|
*/
|
|
|
|
static gui_size
|
|
|
|
gui_utf_validate(long *u, gui_size i)
|
|
|
|
{
|
|
|
|
if (!u) return 0;
|
|
|
|
if (!GUI_BETWEEN(*u, gui_utfmin[i], gui_utfmax[i]) ||
|
|
|
|
GUI_BETWEEN(*u, 0xD800, 0xDFFF))
|
|
|
|
*u = GUI_UTF_INVALID;
|
|
|
|
for (i = 1; *u > gui_utfmax[i]; ++i);
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gui_long
|
|
|
|
gui_utf_decode_byte(gui_char c, gui_size *i)
|
|
|
|
{
|
|
|
|
if (!i) return 0;
|
|
|
|
for(*i = 0; *i < GUI_LEN(gui_utfmask); ++(*i)) {
|
|
|
|
if ((c & gui_utfmask[*i]) == gui_utfbyte[*i])
|
|
|
|
return c & ~gui_utfmask[*i];
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gui_size
|
|
|
|
gui_utf_decode(const gui_char *c, gui_long *u, gui_size clen)
|
|
|
|
{
|
|
|
|
gui_size i, j, len, type=0;
|
|
|
|
gui_long udecoded;
|
|
|
|
|
|
|
|
*u = GUI_UTF_INVALID;
|
|
|
|
if (!c || !u) return 0;
|
|
|
|
if (!clen) return 0;
|
|
|
|
udecoded = gui_utf_decode_byte(c[0], &len);
|
|
|
|
if (!GUI_BETWEEN(len, 1, GUI_UTF_SIZE))
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
for (i = 1, j = 1; i < clen && j < len; ++i, ++j) {
|
|
|
|
udecoded = (udecoded << 6) | gui_utf_decode_byte(c[i], &type);
|
|
|
|
if (type != 0)
|
|
|
|
return j;
|
|
|
|
}
|
|
|
|
if (j < len)
|
|
|
|
return 0;
|
|
|
|
*u = udecoded;
|
|
|
|
gui_utf_validate(u, len);
|
|
|
|
return len;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gui_char
|
|
|
|
gui_utf_encode_byte(gui_long u, gui_size i)
|
|
|
|
{
|
|
|
|
return (gui_char)(gui_utfbyte[i] | (u & ~gui_utfmask[i]));
|
|
|
|
}
|
|
|
|
|
|
|
|
static gui_size
|
|
|
|
gui_utf_encode(gui_long u, gui_char *c, gui_size clen)
|
|
|
|
{
|
|
|
|
gui_size len, i;
|
|
|
|
len = gui_utf_validate(&u, 0);
|
|
|
|
if (clen < len || !len)
|
|
|
|
return 0;
|
|
|
|
for (i = len - 1; i != 0; --i) {
|
|
|
|
c[i] = gui_utf_encode_byte(u, 0);
|
|
|
|
u >>= 6;
|
|
|
|
}
|
|
|
|
c[0] = gui_utf_encode_byte(u, len);
|
|
|
|
return len;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gui_input_begin(struct gui_input *in)
|
|
|
|
{
|
|
|
|
gui_size i;
|
|
|
|
GUI_ASSERT(in);
|
|
|
|
if (!in) return;
|
|
|
|
in->mouse_clicked = 0;
|
|
|
|
in->text_len = 0;
|
|
|
|
gui_vec2_mov(in->mouse_prev, in->mouse_pos);
|
|
|
|
for (i = 0; i < GUI_KEY_MAX; i++)
|
|
|
|
in->keys[i].clicked = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gui_input_motion(struct gui_input *in, gui_int x, gui_int y)
|
|
|
|
{
|
|
|
|
GUI_ASSERT(in);
|
|
|
|
if (!in) return;
|
|
|
|
in->mouse_pos.x = (gui_float)x;
|
|
|
|
in->mouse_pos.y = (gui_float)y;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gui_input_key(struct gui_input *in, enum gui_keys key, gui_bool down)
|
|
|
|
{
|
|
|
|
GUI_ASSERT(in);
|
|
|
|
if (!in) return;
|
|
|
|
if (in->keys[key].down == down) return;
|
|
|
|
in->keys[key].down = down;
|
|
|
|
in->keys[key].clicked++;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gui_input_button(struct gui_input *in, gui_int x, gui_int y, gui_bool down)
|
|
|
|
{
|
|
|
|
GUI_ASSERT(in);
|
|
|
|
if (!in) return;
|
|
|
|
if (in->mouse_down == down) return;
|
|
|
|
in->mouse_clicked_pos.x = (gui_float)x;
|
|
|
|
in->mouse_clicked_pos.y = (gui_float)y;
|
|
|
|
in->mouse_down = down;
|
|
|
|
in->mouse_clicked++;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gui_input_char(struct gui_input *in, const gui_glyph glyph)
|
|
|
|
{
|
|
|
|
gui_size len = 0;
|
|
|
|
gui_long unicode;
|
|
|
|
GUI_ASSERT(in);
|
|
|
|
if (!in) return;
|
|
|
|
len = gui_utf_decode(glyph, &unicode, GUI_UTF_SIZE);
|
|
|
|
if (len && ((in->text_len + len) < GUI_INPUT_MAX)) {
|
|
|
|
gui_utf_encode(unicode, &in->text[in->text_len], GUI_INPUT_MAX - in->text_len);
|
|
|
|
in->text_len += len;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gui_input_end(struct gui_input *in)
|
|
|
|
{
|
|
|
|
GUI_ASSERT(in);
|
|
|
|
if (!in) return;
|
|
|
|
gui_vec2_sub(in->mouse_delta, in->mouse_pos, in->mouse_prev);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* ==============================================================
|
|
|
|
*
|
|
|
|
* Buffer
|
|
|
|
*
|
|
|
|
* ===============================================================
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gui_buffer_init(struct gui_buffer *b, const struct gui_allocator *a,
|
|
|
|
gui_size initial_size, gui_float grow_factor)
|
|
|
|
{
|
|
|
|
GUI_ASSERT(buffer);
|
|
|
|
GUI_ASSERT(memory);
|
|
|
|
GUI_ASSERT(initial_size);
|
|
|
|
if (!b || !a || !initial_size) return;
|
|
|
|
|
|
|
|
gui_zero(b, sizeof(*b));
|
|
|
|
b->type = GUI_BUFFER_DYNAMIC;
|
|
|
|
b->memory.ptr = a->alloc(a->userdata, initial_size);
|
|
|
|
b->memory.size = initial_size;
|
|
|
|
b->grow_factor = grow_factor;
|
|
|
|
b->pool = *a;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gui_buffer_init_fixed(struct gui_buffer *b, void *m, gui_size size)
|
|
|
|
{
|
|
|
|
GUI_ASSERT(b);
|
|
|
|
GUI_ASSERT(m);
|
|
|
|
GUI_ASSERT(size);
|
|
|
|
if (!b || !m || !size) return;
|
|
|
|
|
|
|
|
gui_zero(b, sizeof(*b));
|
|
|
|
b->type = GUI_BUFFER_FIXED;
|
|
|
|
b->memory.ptr = m;
|
|
|
|
b->memory.size = size;
|
|
|
|
}
|
|
|
|
|
|
|
|
void*
|
|
|
|
gui_buffer_alloc(struct gui_buffer *b, gui_size size, gui_size align)
|
|
|
|
{
|
|
|
|
gui_size cap;
|
|
|
|
gui_size alignment;
|
|
|
|
void *unaligned;
|
|
|
|
void *memory;
|
|
|
|
|
|
|
|
GUI_ASSERT(b);
|
|
|
|
if (!b || !size) return NULL;
|
|
|
|
b->needed += size;
|
|
|
|
|
2015-06-05 16:42:54 +03:00
|
|
|
/* calculate total size with needed alignment + size */
|
2015-06-04 23:17:54 +03:00
|
|
|
unaligned = gui_ptr_add(void, b->memory.ptr, b->allocated);
|
2015-06-03 01:58:57 +03:00
|
|
|
memory = GUI_ALIGN_PTR(unaligned, align);
|
|
|
|
alignment = (gui_size)((gui_byte*)memory - (gui_byte*)unaligned);
|
|
|
|
|
2015-06-05 16:42:54 +03:00
|
|
|
/* check if buffer has enough memory*/
|
2015-06-03 01:58:57 +03:00
|
|
|
if ((b->allocated + size + alignment) >= b->memory.size) {
|
|
|
|
void *temp;
|
|
|
|
if (b->type != GUI_BUFFER_DYNAMIC || !b->pool.realloc)
|
|
|
|
return NULL;
|
|
|
|
|
2015-06-05 16:42:54 +03:00
|
|
|
/* allocated new bigger block of memory if the buffer is dynamic */
|
2015-06-03 01:58:57 +03:00
|
|
|
cap = (gui_size)((gui_float)b->memory.size * b->grow_factor);
|
|
|
|
temp = b->pool.realloc(b->pool.userdata, b->memory.ptr, cap);
|
|
|
|
if (!temp) return NULL;
|
|
|
|
|
|
|
|
b->memory.ptr = temp;
|
|
|
|
b->memory.size = cap;
|
2015-06-05 16:42:54 +03:00
|
|
|
|
|
|
|
/* align newly allocated pointer to memory */
|
2015-06-04 23:17:54 +03:00
|
|
|
unaligned = gui_ptr_add(gui_byte, b->memory.ptr, b->allocated);
|
2015-06-03 01:58:57 +03:00
|
|
|
memory = GUI_ALIGN_PTR(unaligned, align);
|
|
|
|
alignment = (gui_size)((gui_byte*)memory - (gui_byte*)unaligned);
|
|
|
|
}
|
|
|
|
|
|
|
|
b->allocated += size + alignment;
|
|
|
|
b->needed += alignment;
|
|
|
|
b->calls++;
|
|
|
|
return memory;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gui_buffer_reset(struct gui_buffer *b)
|
|
|
|
{
|
|
|
|
GUI_ASSERT(b);
|
|
|
|
if (!b) return;
|
|
|
|
b->allocated = 0;
|
|
|
|
b->calls = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gui_buffer_clear(struct gui_buffer *b)
|
|
|
|
{
|
|
|
|
GUI_ASSERT(buffer);
|
|
|
|
if (!b || !b->memory.ptr) return;
|
|
|
|
if (b->type == GUI_BUFFER_FIXED) return;
|
|
|
|
if (!b->pool.free) return;
|
|
|
|
b->pool.free(b->pool.userdata, b->memory.ptr);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gui_buffer_info(struct gui_memory_status *s, struct gui_buffer *b)
|
|
|
|
{
|
|
|
|
GUI_ASSERT(b);
|
|
|
|
GUI_ASSERT(s);
|
|
|
|
if (!s || !b) return;
|
|
|
|
s->allocated = b->allocated;
|
|
|
|
s->size = b->memory.size;
|
|
|
|
s->needed = b->needed;
|
|
|
|
s->memory = b->memory.ptr;
|
|
|
|
s->calls = b->calls;
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* ==============================================================
|
|
|
|
*
|
|
|
|
* Command buffer
|
|
|
|
*
|
|
|
|
* ===============================================================
|
|
|
|
*/
|
|
|
|
void*
|
|
|
|
gui_command_buffer_push(struct gui_command_buffer* b,
|
|
|
|
enum gui_command_type t, gui_size size)
|
|
|
|
{
|
|
|
|
static const gui_size align = GUI_ALIGNOF(struct gui_command);
|
|
|
|
struct gui_command *cmd;
|
|
|
|
gui_size alignment;
|
|
|
|
void *unaligned;
|
|
|
|
void *memory;
|
|
|
|
GUI_ASSERT(b);
|
|
|
|
if (!b) return NULL;
|
|
|
|
|
|
|
|
cmd = gui_buffer_alloc(&b->base, size, align);
|
|
|
|
if (!cmd) return NULL;
|
|
|
|
|
2015-06-05 16:42:54 +03:00
|
|
|
/* make sure the offset to the next command is aligned */
|
2015-06-03 01:58:57 +03:00
|
|
|
unaligned = (gui_byte*)cmd + size;
|
|
|
|
memory = GUI_ALIGN_PTR(unaligned, align);
|
|
|
|
alignment = (gui_size)((gui_byte*)memory - (gui_byte*)unaligned);
|
|
|
|
|
|
|
|
cmd->type = t;
|
|
|
|
cmd->offset = size + alignment;
|
|
|
|
return cmd;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gui_command_buffer_push_scissor(struct gui_command_buffer *b, gui_float x, gui_float y,
|
|
|
|
gui_float w, gui_float h)
|
|
|
|
{
|
|
|
|
struct gui_command_scissor *cmd;
|
|
|
|
GUI_ASSERT(b);
|
|
|
|
if (!b) return;
|
|
|
|
|
|
|
|
b->clip.x = x;
|
|
|
|
b->clip.y = y;
|
|
|
|
b->clip.w = w;
|
|
|
|
b->clip.h = h;
|
|
|
|
|
|
|
|
cmd = gui_command_buffer_push(b, GUI_COMMAND_SCISSOR, sizeof(*cmd));
|
|
|
|
if (!cmd) return;
|
|
|
|
cmd->x = (gui_short)x;
|
|
|
|
cmd->y = (gui_short)y;
|
|
|
|
cmd->w = (gui_ushort)MAX(0, w);
|
|
|
|
cmd->h = (gui_ushort)MAX(0, h);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gui_command_buffer_push_line(struct gui_command_buffer *b, gui_float x0, gui_float y0,
|
|
|
|
gui_float x1, gui_float y1, struct gui_color c)
|
|
|
|
{
|
|
|
|
struct gui_command_line *cmd;
|
|
|
|
GUI_ASSERT(buffer);
|
|
|
|
if (!b) return;
|
|
|
|
|
|
|
|
cmd = gui_command_buffer_push(b, GUI_COMMAND_LINE, sizeof(*cmd));
|
|
|
|
if (!cmd) return;
|
|
|
|
cmd->begin[0] = (gui_short)x0;
|
|
|
|
cmd->begin[1] = (gui_short)y0;
|
|
|
|
cmd->end[0] = (gui_short)x1;
|
|
|
|
cmd->end[1] = (gui_short)y1;
|
2015-06-04 23:17:54 +03:00
|
|
|
gui_color_to_array(cmd->color, c);
|
2015-06-03 01:58:57 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gui_command_buffer_push_rect(struct gui_command_buffer *b, gui_float x, gui_float y,
|
|
|
|
gui_float w, gui_float h, gui_float rounding, struct gui_color c)
|
|
|
|
{
|
|
|
|
struct gui_command_rect *cmd;
|
|
|
|
GUI_ASSERT(buffer);
|
|
|
|
if (!b) return;
|
|
|
|
|
|
|
|
if (b->use_clipping) {
|
|
|
|
const struct gui_rect *clip = &b->clip;
|
|
|
|
if (!GUI_INTERSECT(x, y, w, h, clip->x, clip->y, clip->w, clip->h))
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
cmd = gui_command_buffer_push(b, GUI_COMMAND_RECT, sizeof(*cmd));
|
|
|
|
if (!cmd) return;
|
|
|
|
cmd->r = (gui_uint)rounding;
|
|
|
|
cmd->x = (gui_short)x;
|
|
|
|
cmd->y = (gui_short)y;
|
|
|
|
cmd->w = (gui_ushort)MAX(0, w);
|
|
|
|
cmd->h = (gui_ushort)MAX(0, h);
|
2015-06-04 23:17:54 +03:00
|
|
|
gui_color_to_array(cmd->color, c);
|
2015-06-03 01:58:57 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gui_command_buffer_push_circle(struct gui_command_buffer *b, gui_float x, gui_float y,
|
|
|
|
gui_float w, gui_float h, struct gui_color c)
|
|
|
|
{
|
|
|
|
struct gui_command_circle *cmd;
|
|
|
|
GUI_ASSERT(b);
|
|
|
|
if (!b) return;
|
|
|
|
|
|
|
|
if (b->use_clipping) {
|
|
|
|
const struct gui_rect *clip = &b->clip;
|
|
|
|
if (!GUI_INTERSECT(x, y, w, h, clip->x, clip->y, clip->w, clip->h))
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
cmd = gui_command_buffer_push(b, GUI_COMMAND_CIRCLE, sizeof(*cmd));
|
|
|
|
if (!cmd) return;
|
|
|
|
cmd->x = (gui_short)x;
|
|
|
|
cmd->y = (gui_short)y;
|
|
|
|
cmd->w = (gui_ushort)MAX(w, 0);
|
|
|
|
cmd->h = (gui_ushort)MAX(h, 0);
|
2015-06-04 23:17:54 +03:00
|
|
|
gui_color_to_array(cmd->color, c);
|
2015-06-03 01:58:57 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gui_command_buffer_push_triangle(struct gui_command_buffer *b, gui_float x0, gui_float y0,
|
|
|
|
gui_float x1, gui_float y1, gui_float x2, gui_float y2, struct gui_color c)
|
|
|
|
{
|
|
|
|
struct gui_command_triangle *cmd;
|
|
|
|
GUI_ASSERT(buffer);
|
|
|
|
if (!b) return;
|
|
|
|
|
|
|
|
if (b->use_clipping) {
|
|
|
|
const struct gui_rect *clip = &b->clip;
|
|
|
|
if (!GUI_INBOX(x0, y0, clip->x, clip->y, clip->w, clip->h) ||
|
|
|
|
!GUI_INBOX(x1, y1, clip->x, clip->y, clip->w, clip->h) ||
|
|
|
|
!GUI_INBOX(x2, y2, clip->x, clip->y, clip->w, clip->h))
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
cmd = gui_command_buffer_push(b, GUI_COMMAND_TRIANGLE, sizeof(*cmd));
|
|
|
|
if (!cmd) return;
|
|
|
|
cmd->a[0] = (gui_short)x0;
|
|
|
|
cmd->a[1] = (gui_short)y0;
|
|
|
|
cmd->b[0] = (gui_short)x1;
|
|
|
|
cmd->b[1] = (gui_short)y1;
|
|
|
|
cmd->c[0] = (gui_short)x2;
|
|
|
|
cmd->c[1] = (gui_short)y2;
|
2015-06-04 23:17:54 +03:00
|
|
|
gui_color_to_array(cmd->color, c);
|
2015-06-03 01:58:57 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gui_command_buffer_push_image(struct gui_command_buffer *b, gui_float x, gui_float y,
|
2015-06-06 21:13:28 +03:00
|
|
|
gui_float w, gui_float h, struct gui_image *img)
|
2015-06-03 01:58:57 +03:00
|
|
|
{
|
|
|
|
struct gui_command_image *cmd;
|
|
|
|
GUI_ASSERT(b);
|
|
|
|
if (!b) return;
|
|
|
|
|
|
|
|
if (b->use_clipping) {
|
|
|
|
const struct gui_rect *c = &b->clip;
|
|
|
|
if (!GUI_INTERSECT(x, y, w, h, c->x, c->y, c->w, c->h))
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
cmd = gui_command_buffer_push(b, GUI_COMMAND_IMAGE, sizeof(*cmd));
|
|
|
|
if (!cmd) return;
|
|
|
|
cmd->x = (gui_short)x;
|
|
|
|
cmd->y = (gui_short)y;
|
|
|
|
cmd->w = (gui_ushort)MAX(0, w);
|
|
|
|
cmd->h = (gui_ushort)MAX(0, h);
|
2015-06-06 21:13:28 +03:00
|
|
|
cmd->img = *img;
|
2015-06-03 01:58:57 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gui_command_buffer_push_text(struct gui_command_buffer *b, gui_float x, gui_float y,
|
|
|
|
gui_float w, gui_float h, const gui_char *string, gui_size length,
|
|
|
|
const struct gui_font *font, struct gui_color bg, struct gui_color fg)
|
|
|
|
{
|
|
|
|
struct gui_command_text *cmd;
|
|
|
|
GUI_ASSERT(buffer);
|
|
|
|
GUI_ASSERT(font);
|
|
|
|
if (!b || !string || !length) return;
|
|
|
|
|
|
|
|
if (b->use_clipping) {
|
|
|
|
const struct gui_rect *c = &b->clip;
|
|
|
|
if (!GUI_INTERSECT(x, y, w, h, c->x, c->y, c->w, c->h))
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
cmd = gui_command_buffer_push(b, GUI_COMMAND_TEXT, sizeof(*cmd) + length + 1);
|
|
|
|
if (!cmd) return;
|
|
|
|
cmd->x = (gui_short)x;
|
|
|
|
cmd->y = (gui_short)y;
|
|
|
|
cmd->w = (gui_ushort)w;
|
|
|
|
cmd->h = (gui_ushort)h;
|
2015-06-04 23:17:54 +03:00
|
|
|
gui_color_to_array(cmd->bg, bg);
|
|
|
|
gui_color_to_array(cmd->fg, fg);
|
2015-06-03 01:58:57 +03:00
|
|
|
cmd->font = font->userdata;
|
|
|
|
cmd->length = length;
|
|
|
|
gui_memcopy(cmd->string, string, length);
|
|
|
|
cmd->string[length] = '\0';
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* ==============================================================
|
|
|
|
*
|
|
|
|
* Widgets
|
|
|
|
*
|
|
|
|
* ===============================================================
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gui_text(struct gui_command_buffer *o, gui_float x, gui_float y, gui_float w, gui_float h,
|
|
|
|
const char *string, gui_size len, const struct gui_text *t,
|
|
|
|
enum gui_text_align a, const struct gui_font *f)
|
|
|
|
{
|
|
|
|
struct gui_rect label;
|
|
|
|
gui_size text_width;
|
|
|
|
|
|
|
|
GUI_ASSERT(o);
|
|
|
|
GUI_ASSERT(t);
|
|
|
|
if (!o || !t) return;
|
|
|
|
|
2015-06-04 23:17:54 +03:00
|
|
|
label.x = 0; label.w = 0;
|
2015-06-03 01:58:57 +03:00
|
|
|
label.y = y + t->padding.y;
|
|
|
|
label.h = MAX(0, h - 2 * t->padding.y);
|
|
|
|
|
|
|
|
text_width = f->width(f->userdata, (const gui_char*)string, len);
|
|
|
|
if (a == GUI_TEXT_LEFT) {
|
|
|
|
label.x = x + t->padding.x;
|
|
|
|
label.w = MAX(0, w - 2 * t->padding.x);
|
|
|
|
} else if (a == GUI_TEXT_CENTERED) {
|
|
|
|
label.w = 2 * t->padding.x + (gui_float)text_width;
|
|
|
|
label.x = (x + t->padding.x + ((w - 2 * t->padding.x)/2)) - (label.w/2);
|
|
|
|
label.x = MAX(x + t->padding.x, label.x);
|
|
|
|
label.w = MIN(x + w, label.x + label.w) - label.x;
|
|
|
|
} else if (a == GUI_TEXT_RIGHT) {
|
|
|
|
label.x = MAX(x, (x + w) - (2 * t->padding.x + (gui_float)text_width));
|
|
|
|
label.w = (gui_float)text_width + 2 * t->padding.x;
|
|
|
|
} else return;
|
|
|
|
|
|
|
|
gui_command_buffer_push_rect(o, x, y, w, h, 0, t->background);
|
|
|
|
gui_command_buffer_push_text(o, label.x, label.y, label.w, label.h,
|
|
|
|
(const gui_char*)string, len, f, t->background, t->foreground);
|
|
|
|
}
|
|
|
|
|
|
|
|
static gui_bool
|
|
|
|
gui_do_button(struct gui_command_buffer *o, gui_float x, gui_float y, gui_float w,
|
|
|
|
gui_float h, const struct gui_button *b, const struct gui_input *i,
|
|
|
|
enum gui_button_behavior behavior)
|
|
|
|
{
|
|
|
|
gui_bool ret = gui_false;
|
|
|
|
struct gui_color background;
|
|
|
|
|
|
|
|
GUI_ASSERT(o);
|
|
|
|
GUI_ASSERT(b);
|
|
|
|
if (!o || !b)
|
|
|
|
return gui_false;
|
|
|
|
|
2015-06-05 16:42:54 +03:00
|
|
|
/* general button user input logic */
|
2015-06-03 01:58:57 +03:00
|
|
|
background = b->background;
|
|
|
|
if (i && GUI_INBOX(i->mouse_pos.x, i->mouse_pos.y, x, y, w, h)) {
|
|
|
|
background = b->highlight;
|
|
|
|
if (GUI_INBOX(i->mouse_clicked_pos.x, i->mouse_clicked_pos.y, x, y, w, h)) {
|
|
|
|
ret = (behavior != GUI_BUTTON_DEFAULT) ? i->mouse_down:
|
|
|
|
(i->mouse_down && i->mouse_clicked);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-05 16:42:54 +03:00
|
|
|
/* basic button drawing routines */
|
2015-06-03 01:58:57 +03:00
|
|
|
gui_command_buffer_push_rect(o, x, y, w, h, b->rounding, b->foreground);
|
|
|
|
gui_command_buffer_push_rect(o, x + b->border, y + b->border,
|
|
|
|
w - 2 * b->border, h - 2 * b->border, b->rounding, background);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
gui_bool
|
|
|
|
gui_button_text(struct gui_command_buffer *o, gui_float x, gui_float y,
|
|
|
|
gui_float w, gui_float h, const char *string, enum gui_button_behavior behavior,
|
|
|
|
const struct gui_button *b, const struct gui_input *i,
|
|
|
|
const struct gui_font *f)
|
|
|
|
{
|
|
|
|
gui_bool ret = gui_false;
|
|
|
|
gui_float button_w, button_h;
|
|
|
|
struct gui_text t;
|
|
|
|
struct gui_color font_color;
|
|
|
|
struct gui_color bg_color;
|
|
|
|
struct gui_rect inner;
|
|
|
|
|
|
|
|
GUI_ASSERT(b);
|
|
|
|
GUI_ASSERT(o);
|
|
|
|
GUI_ASSERT(string);
|
|
|
|
if (!o || !b)
|
|
|
|
return gui_false;
|
|
|
|
|
2015-06-05 16:42:54 +03:00
|
|
|
/* general drawing and logic button */
|
2015-06-03 01:58:57 +03:00
|
|
|
font_color = b->content;
|
|
|
|
bg_color = b->background;
|
|
|
|
button_w = MAX(w, 2 * b->padding.x);
|
|
|
|
button_h = MAX(h, f->height + 2 * b->padding.y);
|
|
|
|
if (i && GUI_INBOX(i->mouse_pos.x, i->mouse_pos.y, x, y, button_w, button_h)) {
|
|
|
|
font_color = b->highlight_content;
|
|
|
|
bg_color = b->highlight;
|
|
|
|
}
|
|
|
|
ret = gui_do_button(o, x, y, button_w, button_h, b, i, behavior);
|
|
|
|
|
2015-06-05 16:42:54 +03:00
|
|
|
/* calculate text bounds */
|
2015-06-03 14:35:12 +03:00
|
|
|
inner.x = x + b->border + b->rounding;
|
2015-06-03 01:58:57 +03:00
|
|
|
inner.y = y + b->border;
|
2015-06-03 14:35:12 +03:00
|
|
|
inner.w = button_w - (2 * b->border + 2 * b->rounding);
|
|
|
|
inner.h = button_h - (2 * b->border);
|
2015-06-03 01:58:57 +03:00
|
|
|
|
2015-06-05 16:42:54 +03:00
|
|
|
/* draw text inside button */
|
2015-06-10 15:51:42 +03:00
|
|
|
t.padding.x = b->padding.x;
|
|
|
|
t.padding.y = b->padding.y;
|
2015-06-03 01:58:57 +03:00
|
|
|
t.background = bg_color;
|
|
|
|
t.foreground = font_color;
|
|
|
|
gui_text(o, inner.x, inner.y, inner.w, inner.h, string, gui_strsiz(string),
|
|
|
|
&t, GUI_TEXT_CENTERED, f);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
gui_bool
|
|
|
|
gui_button_triangle(struct gui_command_buffer *out, gui_float x, gui_float y,
|
|
|
|
gui_float w, gui_float h, enum gui_heading heading, enum gui_button_behavior bh,
|
|
|
|
const struct gui_button *b, const struct gui_input *in)
|
|
|
|
{
|
|
|
|
gui_bool pressed;
|
|
|
|
struct gui_color col;
|
|
|
|
struct gui_vec2 points[3];
|
|
|
|
|
|
|
|
GUI_ASSERT(b);
|
|
|
|
GUI_ASSERT(out);
|
|
|
|
if (!out || !b)
|
|
|
|
return gui_false;
|
|
|
|
|
|
|
|
pressed = gui_do_button(out, x, y, w, h, b, in, bh);
|
|
|
|
gui_triangle_from_direction(points, x, y, w, h, b->padding.x, b->padding.y, heading);
|
|
|
|
col = (in && GUI_INBOX(in->mouse_pos.x, in->mouse_pos.y, x, y, w, h)) ?
|
|
|
|
b->highlight_content : b->content;
|
|
|
|
gui_command_buffer_push_triangle(out, points[0].x, points[0].y,
|
|
|
|
points[1].x, points[1].y, points[2].x, points[2].y, col);
|
|
|
|
return pressed;
|
|
|
|
}
|
|
|
|
|
|
|
|
gui_bool
|
|
|
|
gui_button_image(struct gui_command_buffer *out, gui_float x, gui_float y,
|
2015-06-06 21:13:28 +03:00
|
|
|
gui_float w, gui_float h, struct gui_image img, enum gui_button_behavior b,
|
2015-06-03 01:58:57 +03:00
|
|
|
const struct gui_button *button, const struct gui_input *in)
|
|
|
|
{
|
|
|
|
gui_bool pressed;
|
|
|
|
gui_float img_x, img_y, img_w, img_h;
|
|
|
|
|
|
|
|
GUI_ASSERT(button);
|
|
|
|
GUI_ASSERT(out);
|
|
|
|
if (!out || !button)
|
|
|
|
return gui_false;
|
|
|
|
|
2015-06-05 16:42:54 +03:00
|
|
|
/* execute basic button logic/drawing and finally draw image into the button */
|
2015-06-03 01:58:57 +03:00
|
|
|
pressed = gui_do_button(out, x, y, w, h, button, in, b);
|
|
|
|
img_x = x + button->padding.x;
|
|
|
|
img_y = y + button->padding.y;
|
|
|
|
img_w = w - 2 * button->padding.x;
|
|
|
|
img_h = h - 2 * button->padding.y;
|
2015-06-06 21:13:28 +03:00
|
|
|
gui_command_buffer_push_image(out, img_x, img_y, img_w, img_h, &img);
|
|
|
|
return pressed;
|
|
|
|
}
|
|
|
|
|
|
|
|
gui_bool
|
|
|
|
gui_button_text_triangle(struct gui_command_buffer *out, gui_float x, gui_float y,
|
|
|
|
gui_float w, gui_float h, enum gui_heading heading, const char *text, enum gui_text_align align,
|
|
|
|
enum gui_button_behavior behavior, const struct gui_button *button, const struct gui_font *f,
|
|
|
|
const struct gui_input *i)
|
|
|
|
{
|
|
|
|
gui_bool pressed;
|
|
|
|
struct gui_rect tri;
|
|
|
|
struct gui_color col;
|
|
|
|
struct gui_vec2 points[3];
|
|
|
|
|
|
|
|
GUI_ASSERT(button);
|
|
|
|
GUI_ASSERT(out);
|
|
|
|
if (!out || !button)
|
|
|
|
return gui_false;
|
|
|
|
|
|
|
|
pressed = gui_button_text(out, x, y, w, h, text, behavior, button, i, f);
|
|
|
|
tri.y = y + (h/2) - f->height/2;
|
|
|
|
tri.w = tri.h = f->height;
|
|
|
|
if (align == GUI_TEXT_LEFT) {
|
|
|
|
tri.x = (x + w) - (2 * button->padding.x + tri.w);
|
|
|
|
tri.x = MAX(tri.x, 0);
|
|
|
|
} else if (align == GUI_TEXT_RIGHT) {
|
|
|
|
tri.x = x + 2 * button->padding.x;
|
|
|
|
}
|
|
|
|
|
|
|
|
col = (i && GUI_INBOX(i->mouse_pos.x, i->mouse_pos.y, x, y, w, h)) ?
|
2015-06-10 16:09:10 +03:00
|
|
|
button->highlight_content : button->content;
|
2015-06-06 21:13:28 +03:00
|
|
|
|
|
|
|
/* draw triangle */
|
|
|
|
gui_triangle_from_direction(points, tri.x, tri.y, tri.w, tri.h, 0, 0, heading);
|
|
|
|
gui_command_buffer_push_triangle(out, points[0].x, points[0].y,
|
|
|
|
points[1].x, points[1].y, points[2].x, points[2].y, col);
|
|
|
|
return pressed;
|
|
|
|
}
|
|
|
|
|
|
|
|
gui_bool
|
|
|
|
gui_button_text_image(struct gui_command_buffer *out, gui_float x, gui_float y,
|
|
|
|
gui_float w, gui_float h, struct gui_image img, const char* text,
|
|
|
|
enum gui_text_align align, enum gui_button_behavior behavior,
|
|
|
|
const struct gui_button *button, const struct gui_font *f,
|
|
|
|
const struct gui_input *i)
|
|
|
|
{
|
|
|
|
gui_bool pressed;
|
|
|
|
struct gui_rect tri;
|
|
|
|
struct gui_rect icon;
|
|
|
|
struct gui_color col;
|
|
|
|
|
|
|
|
GUI_ASSERT(button);
|
|
|
|
GUI_ASSERT(out);
|
|
|
|
if (!out || !button)
|
|
|
|
return gui_false;
|
|
|
|
|
|
|
|
pressed = gui_button_text(out, x, y, w, h, text, behavior, button, i, f);
|
|
|
|
icon.y = y + (h/2) - f->height/2;
|
|
|
|
icon.w = icon.h = f->height;
|
|
|
|
if (align == GUI_TEXT_LEFT) {
|
|
|
|
icon.x = (x + w) - (2 * button->padding.x + tri.w);
|
|
|
|
icon.x = MAX(tri.x, 0);
|
|
|
|
} else if (align == GUI_TEXT_RIGHT) {
|
|
|
|
icon.x = x + 2 * button->padding.x;
|
|
|
|
}
|
|
|
|
gui_command_buffer_push_image(out, icon.x, icon.y, icon.w, icon.h, &img);
|
2015-06-03 01:58:57 +03:00
|
|
|
return pressed;
|
|
|
|
}
|
|
|
|
|
|
|
|
gui_bool
|
|
|
|
gui_toggle(struct gui_command_buffer *out, gui_float x, gui_float y, gui_float w,
|
|
|
|
gui_float h, gui_bool active, const char *string, enum gui_toggle_type type,
|
|
|
|
const struct gui_toggle *toggle, const struct gui_input *in,
|
|
|
|
const struct gui_font *font)
|
|
|
|
{
|
|
|
|
gui_bool toggle_active;
|
|
|
|
gui_float select_size;
|
|
|
|
gui_float toggle_w, toggle_h;
|
|
|
|
gui_float select_x, select_y;
|
|
|
|
gui_float cursor_x, cursor_y;
|
|
|
|
gui_float cursor_pad, cursor_size;
|
|
|
|
|
|
|
|
GUI_ASSERT(toggle);
|
|
|
|
GUI_ASSERT(out);
|
|
|
|
if (!out || !toggle)
|
|
|
|
return 0;
|
|
|
|
|
2015-06-05 16:42:54 +03:00
|
|
|
/* make sure correct values */
|
2015-06-03 01:58:57 +03:00
|
|
|
toggle_w = MAX(w, font->height + 2 * toggle->padding.x);
|
|
|
|
toggle_h = MAX(h, font->height + 2 * toggle->padding.y);
|
|
|
|
toggle_active = active;
|
|
|
|
|
2015-06-05 16:42:54 +03:00
|
|
|
/* calculate the size of the complete toggle */
|
2015-06-03 01:58:57 +03:00
|
|
|
select_size = font->height + 2 * toggle->padding.y;
|
2015-06-10 15:51:42 +03:00
|
|
|
select_x = x + toggle->padding.x;
|
|
|
|
select_y = (y + toggle->padding.y + (select_size / 2)) - (font->height / 2);
|
2015-06-03 01:58:57 +03:00
|
|
|
|
2015-06-05 16:42:54 +03:00
|
|
|
/* calculate the bounds of the cursor inside the toggle */
|
2015-06-03 01:58:57 +03:00
|
|
|
cursor_pad = (type == GUI_TOGGLE_OPTION) ?
|
|
|
|
(gui_float)(gui_int)(select_size / 4):
|
|
|
|
(gui_float)(gui_int)(select_size / 8);
|
|
|
|
cursor_size = select_size - cursor_pad * 2;
|
|
|
|
cursor_x = select_x + cursor_pad;
|
|
|
|
cursor_y = select_y + cursor_pad;
|
|
|
|
|
2015-06-05 16:42:54 +03:00
|
|
|
/* update toggle state with user input */
|
2015-06-03 01:58:57 +03:00
|
|
|
if (in && !in->mouse_down && in->mouse_clicked)
|
|
|
|
if (GUI_INBOX(in->mouse_clicked_pos.x, in->mouse_clicked_pos.y,
|
|
|
|
cursor_x, cursor_y, cursor_size, cursor_size))
|
|
|
|
toggle_active = !toggle_active;
|
|
|
|
|
2015-06-05 16:42:54 +03:00
|
|
|
/* draw radiobutton/checkbox background */
|
2015-06-03 01:58:57 +03:00
|
|
|
if (type == GUI_TOGGLE_CHECK)
|
|
|
|
gui_command_buffer_push_rect(out, select_x, select_y, select_size,
|
|
|
|
select_size, toggle->rounding, toggle->foreground);
|
|
|
|
else gui_command_buffer_push_circle(out, select_x, select_y, select_size,
|
|
|
|
select_size, toggle->foreground);
|
|
|
|
|
2015-06-05 16:42:54 +03:00
|
|
|
/* draw radiobutton/checkbox cursor if active */
|
2015-06-03 01:58:57 +03:00
|
|
|
if (toggle_active) {
|
|
|
|
if (type == GUI_TOGGLE_CHECK)
|
|
|
|
gui_command_buffer_push_rect(out, cursor_x, cursor_y, cursor_size,
|
|
|
|
cursor_size, toggle->rounding, toggle->cursor);
|
|
|
|
else gui_command_buffer_push_circle(out, cursor_x, cursor_y,
|
|
|
|
cursor_size, cursor_size, toggle->cursor);
|
|
|
|
}
|
|
|
|
|
2015-06-05 16:42:54 +03:00
|
|
|
/* draw describing toggle text */
|
2015-06-03 01:58:57 +03:00
|
|
|
if (font && string) {
|
|
|
|
struct gui_text text;
|
|
|
|
gui_float inner_x, inner_y;
|
|
|
|
gui_float inner_w, inner_h;
|
|
|
|
|
2015-06-05 16:42:54 +03:00
|
|
|
/* calculate text bounds */
|
2015-06-03 01:58:57 +03:00
|
|
|
inner_x = x + select_size + toggle->padding.x * 2;
|
2015-06-10 15:51:42 +03:00
|
|
|
inner_y = select_y;
|
2015-06-03 01:58:57 +03:00
|
|
|
inner_w = (x + toggle_w) - (inner_x + toggle->padding.x);
|
2015-06-10 15:51:42 +03:00
|
|
|
inner_h = select_size;
|
2015-06-03 01:58:57 +03:00
|
|
|
|
2015-06-05 16:42:54 +03:00
|
|
|
/* draw text */
|
2015-06-03 01:58:57 +03:00
|
|
|
text.padding.x = 0;
|
|
|
|
text.padding.y = 0;
|
|
|
|
text.background = toggle->background;
|
|
|
|
text.foreground = toggle->font;
|
|
|
|
gui_text(out, inner_x, inner_y, inner_w, inner_h, string, gui_strsiz(string),
|
|
|
|
&text, GUI_TEXT_LEFT, font);
|
|
|
|
}
|
|
|
|
return toggle_active;
|
|
|
|
}
|
|
|
|
|
|
|
|
gui_float
|
|
|
|
gui_slider(struct gui_command_buffer *out, gui_float x, gui_float y, gui_float w, gui_float h,
|
|
|
|
gui_float min, gui_float val, gui_float max, gui_float step,
|
|
|
|
const struct gui_slider *s, const struct gui_input *in)
|
|
|
|
{
|
|
|
|
gui_float slider_range;
|
|
|
|
gui_float slider_min, slider_max;
|
|
|
|
gui_float slider_value, slider_steps;
|
|
|
|
gui_float slider_w, slider_h;
|
|
|
|
gui_float cursor_offset;
|
|
|
|
struct gui_rect cursor;
|
|
|
|
struct gui_rect bar;
|
|
|
|
|
|
|
|
GUI_ASSERT(s);
|
|
|
|
GUI_ASSERT(out);
|
|
|
|
if (!out || !s)
|
|
|
|
return 0;
|
|
|
|
|
2015-06-05 16:42:54 +03:00
|
|
|
/* make sure the provided values are correct */
|
2015-06-03 01:58:57 +03:00
|
|
|
slider_w = MAX(w, 2 * s->padding.x);
|
|
|
|
slider_h = MAX(h, 2 * s->padding.y);
|
|
|
|
slider_max = MAX(min, max);
|
|
|
|
slider_min = MIN(min, max);
|
|
|
|
slider_value = CLAMP(slider_min, val, slider_max);
|
|
|
|
slider_range = slider_max - slider_min;
|
|
|
|
slider_steps = slider_range / step;
|
|
|
|
|
2015-06-05 16:42:54 +03:00
|
|
|
/* calculate slider cursor bounds */
|
2015-06-03 01:58:57 +03:00
|
|
|
cursor_offset = (slider_value - slider_min) / step;
|
|
|
|
cursor.w = (slider_w - 2 * s->padding.x) / (slider_steps + 1);
|
|
|
|
cursor.h = slider_h - 2 * s->padding.y;
|
|
|
|
cursor.x = x + s->padding.x + (cursor.w * cursor_offset);
|
|
|
|
cursor.y = y + s->padding.y;
|
|
|
|
|
2015-06-05 16:42:54 +03:00
|
|
|
/* calculate slider background bar bounds */
|
2015-06-03 01:58:57 +03:00
|
|
|
bar.x = x + s->padding.x;
|
|
|
|
bar.y = (cursor.y + cursor.h/2) - cursor.h/8;
|
|
|
|
bar.w = slider_w - 2 * s->padding.x;
|
|
|
|
bar.h = cursor.h/4;
|
|
|
|
|
2015-06-05 16:42:54 +03:00
|
|
|
/* updated the slider value by user input */
|
2015-06-03 01:58:57 +03:00
|
|
|
if (in && in->mouse_down &&
|
|
|
|
GUI_INBOX(in->mouse_pos.x, in->mouse_pos.y, x, y, slider_w, slider_h) &&
|
|
|
|
GUI_INBOX(in->mouse_clicked_pos.x,in->mouse_clicked_pos.y, x, y, slider_w, slider_h))
|
|
|
|
{
|
|
|
|
const float d = in->mouse_pos.x - (cursor.x + cursor.w / 2.0f);
|
|
|
|
const float pxstep = (slider_w - 2 * s->padding.x) / slider_steps;
|
2015-06-05 16:42:54 +03:00
|
|
|
|
|
|
|
/* only update value if the next slider step is reached*/
|
2015-06-03 01:58:57 +03:00
|
|
|
if (GUI_ABS(d) >= pxstep) {
|
|
|
|
const gui_float steps = (gui_float)((gui_int)(GUI_ABS(d) / pxstep));
|
|
|
|
slider_value += (d > 0) ? (step * steps) : -(step * steps);
|
|
|
|
slider_value = CLAMP(slider_min, slider_value, slider_max);
|
|
|
|
cursor.x = x + s->padding.x + (cursor.w * (slider_value - slider_min));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-05 16:42:54 +03:00
|
|
|
/* draw slider with background/background bar and either rectangle or circle cusor*/
|
2015-06-03 01:58:57 +03:00
|
|
|
gui_command_buffer_push_rect(out, x, y, slider_w, slider_h, 0, s->bg);
|
|
|
|
gui_command_buffer_push_rect(out, bar.x, bar.y, bar.w, bar.h,0, s->bar);
|
|
|
|
if (s->cursor == GUI_SLIDER_RECT) {
|
|
|
|
gui_command_buffer_push_rect(out,cursor.x, cursor.y, cursor.w, cursor.h,0, s->border);
|
|
|
|
gui_command_buffer_push_rect(out,cursor.x+1,cursor.y+1,cursor.w-2,cursor.h-2,0, s->fg);
|
|
|
|
} else {
|
|
|
|
gui_float c_pos = cursor.x - cursor.h/4;
|
|
|
|
gui_command_buffer_push_circle(out,c_pos,cursor.y,cursor.h,cursor.h,s->border);
|
|
|
|
gui_command_buffer_push_circle(out,c_pos + 1,cursor.y+1,cursor.h-2,cursor.h-2,s->fg);
|
|
|
|
}
|
|
|
|
return slider_value;
|
|
|
|
}
|
|
|
|
|
|
|
|
gui_size
|
|
|
|
gui_progress(struct gui_command_buffer *out, gui_float x, gui_float y,
|
|
|
|
gui_float w, gui_float h, gui_size value, gui_size max, gui_bool modifyable,
|
|
|
|
const struct gui_progress *prog, const struct gui_input *in)
|
|
|
|
{
|
|
|
|
gui_float cursor_x, cursor_y;
|
|
|
|
gui_float cursor_w, cursor_h;
|
|
|
|
gui_float prog_w, prog_h;
|
|
|
|
gui_float prog_scale;
|
|
|
|
gui_size prog_value;
|
|
|
|
|
|
|
|
GUI_ASSERT(prog);
|
|
|
|
GUI_ASSERT(out);
|
|
|
|
if (!out || !prog) return 0;
|
|
|
|
|
2015-06-05 16:42:54 +03:00
|
|
|
/* make sure given values are correct */
|
2015-06-03 01:58:57 +03:00
|
|
|
prog_w = MAX(w, 2 * prog->padding.x + 1);
|
|
|
|
prog_h = MAX(h, 2 * prog->padding.y + 1);
|
|
|
|
prog_value = MIN(value, max);
|
|
|
|
|
2015-06-05 16:42:54 +03:00
|
|
|
/* update progress by from user input if modifyable */
|
2015-06-03 01:58:57 +03:00
|
|
|
if (in && modifyable && in->mouse_down &&
|
|
|
|
GUI_INBOX(in->mouse_pos.x, in->mouse_pos.y, x, y, prog_w, prog_h)){
|
|
|
|
gui_float ratio = (gui_float)(in->mouse_pos.x - x) / (gui_float)prog_w;
|
|
|
|
prog_value = (gui_size)((gui_float)max * ratio);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!max) return prog_value;
|
2015-06-05 16:42:54 +03:00
|
|
|
/* make calculated values are correct */
|
2015-06-03 01:58:57 +03:00
|
|
|
prog_value = MIN(prog_value, max);
|
|
|
|
prog_scale = (gui_float)prog_value / (gui_float)max;
|
|
|
|
|
2015-06-05 16:42:54 +03:00
|
|
|
/* calculate progress bar cursor */
|
2015-06-03 01:58:57 +03:00
|
|
|
cursor_h = prog_h - 2 * prog->padding.y;
|
|
|
|
cursor_w = (prog_w - 2 * prog->padding.x) * prog_scale;
|
|
|
|
cursor_x = x + prog->padding.x;
|
|
|
|
cursor_y = y + prog->padding.y;
|
|
|
|
|
2015-06-05 16:42:54 +03:00
|
|
|
/* draw progressbar width background and cursor */
|
2015-06-03 01:58:57 +03:00
|
|
|
gui_command_buffer_push_rect(out, x, y, prog_w, prog_h,prog->rounding, prog->background);
|
|
|
|
gui_command_buffer_push_rect(out, cursor_x, cursor_y, cursor_w, cursor_h,
|
|
|
|
prog->rounding, prog->foreground);
|
|
|
|
return prog_value;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gui_bool
|
|
|
|
gui_filter_input_default(gui_long unicode)
|
|
|
|
{
|
|
|
|
(void)unicode;
|
|
|
|
return gui_true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gui_bool
|
|
|
|
gui_filter_input_ascii(gui_long unicode)
|
|
|
|
{
|
|
|
|
if (unicode < 0 || unicode > 128)
|
|
|
|
return gui_false;
|
|
|
|
return gui_true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gui_bool
|
|
|
|
gui_filter_input_float(gui_long unicode)
|
|
|
|
{
|
|
|
|
if ((unicode < '0' || unicode > '9') && unicode != '.' && unicode != '-')
|
|
|
|
return gui_false;
|
|
|
|
return gui_true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gui_bool
|
|
|
|
gui_filter_input_decimal(gui_long unicode)
|
|
|
|
{
|
|
|
|
if (unicode < '0' || unicode > '9')
|
|
|
|
return gui_false;
|
|
|
|
return gui_true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gui_bool
|
|
|
|
gui_filter_input_hex(gui_long unicode)
|
|
|
|
{
|
|
|
|
if ((unicode < '0' || unicode > '9') &&
|
|
|
|
(unicode < 'a' || unicode > 'f') &&
|
|
|
|
(unicode < 'A' || unicode > 'B'))
|
|
|
|
return gui_false;
|
|
|
|
return gui_true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gui_bool
|
|
|
|
gui_filter_input_oct(gui_long unicode)
|
|
|
|
{
|
|
|
|
if (unicode < '0' || unicode > '7')
|
|
|
|
return gui_false;
|
|
|
|
return gui_true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gui_bool
|
|
|
|
gui_filter_input_binary(gui_long unicode)
|
|
|
|
{
|
|
|
|
if (unicode < '0' || unicode > '1')
|
|
|
|
return gui_false;
|
|
|
|
return gui_true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gui_size
|
|
|
|
gui_buffer_input(gui_char *buffer, gui_size length, gui_size max,
|
|
|
|
gui_filter filter, const struct gui_input *i)
|
|
|
|
{
|
|
|
|
gui_long unicode;
|
|
|
|
gui_size src_len = 0;
|
|
|
|
gui_size text_len = 0, glyph_len = 0;
|
|
|
|
GUI_ASSERT(buffer);
|
|
|
|
GUI_ASSERT(i);
|
|
|
|
|
2015-06-05 16:42:54 +03:00
|
|
|
/* add user provided text to buffer until either no input or buffer space left*/
|
2015-06-03 01:58:57 +03:00
|
|
|
glyph_len = gui_utf_decode(i->text, &unicode, i->text_len);
|
|
|
|
while (glyph_len && ((text_len+glyph_len) <= i->text_len) && (length+src_len)<max) {
|
2015-06-05 16:42:54 +03:00
|
|
|
/* filter value to make sure the value is correct */
|
2015-06-03 01:58:57 +03:00
|
|
|
if (filter(unicode)) {
|
|
|
|
gui_size n = 0;
|
|
|
|
for (n = 0; n < glyph_len; n++)
|
|
|
|
buffer[length++] = i->text[text_len + n];
|
|
|
|
text_len += glyph_len;
|
|
|
|
}
|
|
|
|
src_len = src_len + glyph_len;
|
|
|
|
glyph_len = gui_utf_decode(i->text + src_len, &unicode, i->text_len - src_len);
|
|
|
|
}
|
|
|
|
return text_len;
|
|
|
|
}
|
|
|
|
|
|
|
|
gui_size
|
|
|
|
gui_edit_filtered(struct gui_command_buffer *out, gui_float x, gui_float y, gui_float w,
|
|
|
|
gui_float h, gui_char *buffer, gui_size len, gui_size max, gui_bool *active,
|
|
|
|
const struct gui_edit *field, gui_filter filter, const struct gui_input *in,
|
|
|
|
const struct gui_font *font)
|
|
|
|
{
|
|
|
|
gui_float input_w, input_h;
|
|
|
|
gui_bool input_active;
|
|
|
|
|
|
|
|
GUI_ASSERT(out);
|
|
|
|
GUI_ASSERT(buffer);
|
|
|
|
GUI_ASSERT(field);
|
|
|
|
if (!out || !buffer || !field)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
input_w = MAX(w, 2 * field->padding.x);
|
|
|
|
input_h = MAX(h, font->height);
|
|
|
|
input_active = *active;
|
|
|
|
|
2015-06-05 16:42:54 +03:00
|
|
|
/* draw editbox background and border */
|
2015-06-03 01:58:57 +03:00
|
|
|
gui_command_buffer_push_rect(out, x, y, input_w, input_h,field->rounding, field->border);
|
|
|
|
gui_command_buffer_push_rect(out, x + field->border_size, y + field->border_size,
|
|
|
|
input_w - 2 * field->border_size, input_h - 2 * field->border_size,
|
|
|
|
field->rounding, field->background);
|
2015-06-05 16:42:54 +03:00
|
|
|
|
|
|
|
/* check if editbox is not active */
|
2015-06-03 01:58:57 +03:00
|
|
|
if (in && in->mouse_clicked && in->mouse_down)
|
|
|
|
input_active = GUI_INBOX(in->mouse_pos.x, in->mouse_pos.y, x, y, input_w, input_h);
|
|
|
|
|
|
|
|
if (input_active && in) {
|
|
|
|
const struct gui_key *bs = &in->keys[GUI_KEY_BACKSPACE];
|
|
|
|
const struct gui_key *del = &in->keys[GUI_KEY_DEL];
|
|
|
|
const struct gui_key *esc = &in->keys[GUI_KEY_ESCAPE];
|
|
|
|
const struct gui_key *enter = &in->keys[GUI_KEY_ENTER];
|
|
|
|
const struct gui_key *space = &in->keys[GUI_KEY_SPACE];
|
|
|
|
|
2015-06-05 16:42:54 +03:00
|
|
|
/* updated input buffer by user input */
|
2015-06-03 01:58:57 +03:00
|
|
|
if ((del->down && del->clicked) || (bs->down && bs->clicked))
|
|
|
|
if (len > 0) len = len - 1;
|
|
|
|
if ((enter->down && enter->clicked) || (esc->down && esc->clicked))
|
|
|
|
input_active = gui_false;
|
|
|
|
if ((space->down && space->clicked) && (len < max))
|
|
|
|
buffer[len++] = ' ';
|
|
|
|
if (in->text_len && len < max)
|
|
|
|
len += gui_buffer_input(buffer, len, max, filter, in);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (font && buffer) {
|
|
|
|
gui_size offset = 0;
|
|
|
|
gui_float label_x, label_y, label_h;
|
|
|
|
gui_float label_w = input_w - 2 * field->padding.x - 2 * field->border_size;
|
|
|
|
gui_size cursor_w =(gui_size)font->width(font->userdata,(const gui_char*)"X", 1);
|
|
|
|
|
2015-06-05 16:42:54 +03:00
|
|
|
/* calculate the visible text range */
|
2015-06-03 01:58:57 +03:00
|
|
|
gui_size text_len = len;
|
|
|
|
gui_size text_width = font->width(font->userdata, buffer, text_len);
|
|
|
|
while (text_len && (text_width + cursor_w) > (gui_size)label_w) {
|
|
|
|
gui_long unicode;
|
|
|
|
offset += gui_utf_decode(&buffer[offset], &unicode, text_len);
|
|
|
|
text_len = len - offset;
|
|
|
|
text_width = font->width(font->userdata, &buffer[offset], text_len);
|
|
|
|
}
|
|
|
|
|
2015-06-05 16:42:54 +03:00
|
|
|
/* calculate the text bounds and draw the string to screen*/
|
2015-06-03 01:58:57 +03:00
|
|
|
label_x = x + field->padding.x + field->border_size;
|
|
|
|
label_y = y + field->padding.y + field->border_size;
|
|
|
|
label_h = input_h - (2 * field->padding.y + 2 * field->border_size);
|
|
|
|
gui_command_buffer_push_text(out , label_x, label_y, label_w, label_h,
|
|
|
|
&buffer[offset], text_len, font, field->background, field->text);
|
|
|
|
|
2015-06-05 16:42:54 +03:00
|
|
|
/* if wanted draw the cursor at the end of the text input */
|
2015-06-03 01:58:57 +03:00
|
|
|
if (input_active && field->show_cursor) {
|
|
|
|
gui_command_buffer_push_rect(out, label_x + (gui_float)text_width, label_y,
|
|
|
|
(gui_float)cursor_w, label_h,0, field->cursor);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
*active = input_active;
|
|
|
|
return len;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
gui_size
|
|
|
|
gui_edit(struct gui_command_buffer *out, gui_float x, gui_float y, gui_float w,
|
|
|
|
gui_float h, gui_char *buffer, gui_size len, gui_size max, gui_bool *active,
|
|
|
|
const struct gui_edit *field, enum gui_input_filter f,
|
|
|
|
const struct gui_input *in, const struct gui_font *font)
|
|
|
|
{
|
|
|
|
static const gui_filter filter[] = {
|
|
|
|
gui_filter_input_default,
|
|
|
|
gui_filter_input_ascii,
|
|
|
|
gui_filter_input_float,
|
|
|
|
gui_filter_input_decimal,
|
|
|
|
gui_filter_input_hex,
|
|
|
|
gui_filter_input_oct,
|
|
|
|
gui_filter_input_binary,
|
|
|
|
};
|
|
|
|
return gui_edit_filtered(out, x, y, w, h, buffer, len, max, active,
|
|
|
|
field,filter[f], in, font);
|
|
|
|
}
|
|
|
|
|
|
|
|
gui_float
|
|
|
|
gui_scroll(struct gui_command_buffer *out, gui_float x, gui_float y,
|
|
|
|
gui_float w, gui_float h, gui_float offset, gui_float target,
|
|
|
|
gui_float step, const struct gui_scroll *s, const struct gui_input *i)
|
|
|
|
{
|
|
|
|
gui_bool button_up_pressed;
|
|
|
|
gui_bool button_down_pressed;
|
|
|
|
struct gui_button button;
|
|
|
|
|
|
|
|
gui_float scroll_step;
|
|
|
|
gui_float scroll_offset;
|
|
|
|
gui_float scroll_off, scroll_ratio;
|
|
|
|
gui_float scroll_y, scroll_w, scroll_h;
|
|
|
|
|
|
|
|
gui_float cursor_x, cursor_y;
|
|
|
|
gui_float cursor_w, cursor_h;
|
|
|
|
gui_bool inscroll, incursor;
|
|
|
|
|
|
|
|
GUI_ASSERT(out);
|
|
|
|
GUI_ASSERT(s);
|
|
|
|
if (!out || !s) return 0;
|
|
|
|
|
2015-06-05 16:42:54 +03:00
|
|
|
/* scrollbar background */
|
2015-06-03 01:58:57 +03:00
|
|
|
scroll_w = MAX(w, 0);
|
|
|
|
scroll_h = MAX(h, 2 * scroll_w);
|
|
|
|
gui_command_buffer_push_rect(out , x, y, scroll_w, scroll_h, s->rounding, s->background);
|
|
|
|
if (target <= scroll_h) return 0;
|
|
|
|
|
2015-06-05 16:42:54 +03:00
|
|
|
/* setup and execute up/down button */
|
2015-06-03 01:58:57 +03:00
|
|
|
button.border = 1;
|
|
|
|
button.rounding = 0;
|
|
|
|
button.padding.x = scroll_w / 4;
|
|
|
|
button.padding.y = scroll_w / 4;
|
|
|
|
button.background = s->background;
|
|
|
|
button.foreground = s->foreground;
|
|
|
|
button.content = s->foreground;
|
|
|
|
button.highlight = s->background;
|
|
|
|
button.highlight_content = s->foreground;
|
|
|
|
|
|
|
|
button_up_pressed = gui_button_triangle(out, x, y, scroll_w, scroll_w,
|
|
|
|
GUI_UP, GUI_BUTTON_DEFAULT, &button, i);
|
|
|
|
button_down_pressed = gui_button_triangle(out, x, y + scroll_h - scroll_w,
|
|
|
|
scroll_w, scroll_w, GUI_DOWN, GUI_BUTTON_DEFAULT, &button, i);
|
|
|
|
|
2015-06-05 16:42:54 +03:00
|
|
|
/* calculate scrollbar constants */
|
2015-06-03 01:58:57 +03:00
|
|
|
scroll_h = scroll_h - 2 * scroll_w;
|
|
|
|
scroll_y = y + scroll_w;
|
|
|
|
scroll_step = MIN(step, scroll_h);
|
|
|
|
scroll_offset = MIN(offset, target - scroll_h);
|
|
|
|
scroll_ratio = scroll_h / target;
|
|
|
|
scroll_off = scroll_offset / target;
|
|
|
|
|
2015-06-05 16:42:54 +03:00
|
|
|
/* calculate scrollbar cursor bounds */
|
2015-06-03 01:58:57 +03:00
|
|
|
cursor_h = scroll_ratio * scroll_h;
|
|
|
|
cursor_y = scroll_y + (scroll_off * scroll_h);
|
|
|
|
cursor_w = scroll_w;
|
|
|
|
cursor_x = x;
|
|
|
|
|
|
|
|
if (i) {
|
|
|
|
const struct gui_vec2 mouse_pos = i->mouse_pos;
|
|
|
|
const struct gui_vec2 mouse_prev = i->mouse_prev;
|
|
|
|
inscroll = GUI_INBOX(mouse_pos.x,mouse_pos.y, x, y, scroll_w, scroll_h);
|
|
|
|
incursor = GUI_INBOX(mouse_prev.x,mouse_prev.y,cursor_x,cursor_y,cursor_w, cursor_h);
|
|
|
|
if (i->mouse_down && inscroll && incursor) {
|
|
|
|
/* update cursor over mouse dragging */
|
|
|
|
const gui_float pixel = i->mouse_delta.y;
|
|
|
|
const gui_float delta = (pixel / scroll_h) * target;
|
|
|
|
scroll_offset = CLAMP(0, scroll_offset + delta, target - scroll_h);
|
|
|
|
cursor_y += pixel;
|
|
|
|
} else if (button_up_pressed || button_down_pressed) {
|
|
|
|
/* update cursor over up/down button */
|
|
|
|
scroll_offset = (button_down_pressed) ?
|
|
|
|
MIN(scroll_offset + scroll_step, target - scroll_h):
|
|
|
|
MAX(0, scroll_offset - scroll_step);
|
|
|
|
scroll_off = scroll_offset / target;
|
|
|
|
cursor_y = scroll_y + (scroll_off * scroll_h);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-05 16:42:54 +03:00
|
|
|
/* draw updated scrollbar cursor */
|
2015-06-03 01:58:57 +03:00
|
|
|
gui_command_buffer_push_rect(out, cursor_x, cursor_y, cursor_w,
|
|
|
|
cursor_h, s->rounding, s->foreground);
|
|
|
|
return scroll_offset;
|
|
|
|
}
|
|
|
|
|
|
|
|
gui_int
|
|
|
|
gui_spinner(struct gui_command_buffer *out, gui_float x, gui_float y, gui_float w,
|
|
|
|
gui_float h, const struct gui_spinner *s, gui_int min, gui_int value,
|
|
|
|
gui_int max, gui_int step, gui_bool *active, const struct gui_input *in,
|
|
|
|
const struct gui_font *font)
|
|
|
|
{
|
|
|
|
char string[GUI_MAX_NUMBER_BUFFER];
|
|
|
|
gui_size len, old_len;
|
2015-06-04 23:17:54 +03:00
|
|
|
gui_bool is_active;
|
2015-06-03 01:58:57 +03:00
|
|
|
|
|
|
|
struct gui_button button;
|
|
|
|
gui_float button_x, button_y;
|
|
|
|
gui_float button_w, button_h;
|
|
|
|
gui_bool button_up_clicked, button_down_clicked;
|
|
|
|
|
|
|
|
struct gui_edit field;
|
|
|
|
gui_float field_x, field_y;
|
|
|
|
gui_float field_w, field_h;
|
|
|
|
|
2015-06-05 16:42:54 +03:00
|
|
|
/* make sure given values are correct */
|
2015-06-03 01:58:57 +03:00
|
|
|
value = CLAMP(min, value, max);
|
|
|
|
len = gui_itos(string, value);
|
|
|
|
is_active = (active) ? *active : gui_false;
|
|
|
|
old_len = len;
|
|
|
|
|
2015-06-05 16:42:54 +03:00
|
|
|
/* up/down button setup and execution */
|
2015-06-03 01:58:57 +03:00
|
|
|
button_y = y;
|
|
|
|
button_h = h / 2;
|
|
|
|
button_w = h - s->padding.x;
|
|
|
|
button_x = x + w - button_w;
|
|
|
|
button.rounding = 0;
|
|
|
|
button.border = (gui_float)s->border_button;
|
|
|
|
button.padding.x = MAX(3, (button_h - font->height) / 2);
|
|
|
|
button.padding.y = MAX(3, (button_h - font->height) / 2);
|
|
|
|
button.background = s->button_color;
|
|
|
|
button.foreground = s->button_border;
|
|
|
|
button.content = s->button_triangle;
|
|
|
|
button.highlight = s->button_color;
|
|
|
|
button.highlight_content = s->button_triangle;
|
|
|
|
button_up_clicked = gui_button_triangle(out, button_x, button_y, button_w, button_h,
|
|
|
|
GUI_UP, GUI_BUTTON_DEFAULT, &button, in);
|
|
|
|
|
|
|
|
button_y = y + button_h;
|
|
|
|
button_down_clicked = gui_button_triangle(out, button_x, button_y, button_w, button_h,
|
|
|
|
GUI_DOWN, GUI_BUTTON_DEFAULT, &button, in);
|
|
|
|
if (button_up_clicked || button_down_clicked) {
|
|
|
|
value += (button_up_clicked) ? step : -step;
|
|
|
|
value = CLAMP(min, value, max);
|
|
|
|
}
|
|
|
|
|
2015-06-05 16:42:54 +03:00
|
|
|
/* editbox setup and execution */
|
2015-06-03 01:58:57 +03:00
|
|
|
field_x = x;
|
|
|
|
field_y = y;
|
|
|
|
field_h = h;
|
|
|
|
field_w = w - (button_w - button.border * 2);
|
|
|
|
field.border_size = 1;
|
|
|
|
field.rounding = 0;
|
|
|
|
field.padding.x = s->padding.x;
|
|
|
|
field.padding.y = s->padding.y;
|
|
|
|
field.show_cursor = s->show_cursor;
|
|
|
|
field.background = s->color;
|
|
|
|
field.border = s->border;
|
|
|
|
field.text = s->text;
|
|
|
|
len = gui_edit(out, field_x, field_y, field_w, field_h, (gui_char*)string,
|
|
|
|
len, GUI_MAX_NUMBER_BUFFER, &is_active, &field,GUI_INPUT_FLOAT, in, font);
|
|
|
|
|
|
|
|
if (old_len != len)
|
|
|
|
gui_strtoi(&value, string, len);
|
|
|
|
if (active) *active = is_active;
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
|
|
|
gui_size
|
|
|
|
gui_selector(struct gui_command_buffer *out, gui_float x, gui_float y, gui_float w,
|
|
|
|
gui_float h, const struct gui_selector *s, const char *items[],
|
|
|
|
gui_size item_count, gui_size item_current, const struct gui_input *input,
|
|
|
|
const struct gui_font *font)
|
|
|
|
{
|
|
|
|
gui_size text_len;
|
|
|
|
gui_float label_x, label_y;
|
|
|
|
gui_float label_w, label_h;
|
|
|
|
|
|
|
|
struct gui_button button;
|
|
|
|
gui_bool button_up_clicked;
|
|
|
|
gui_bool button_down_clicked;
|
|
|
|
gui_float button_x, button_y;
|
|
|
|
gui_float button_w, button_h;
|
|
|
|
|
|
|
|
GUI_ASSERT(items);
|
|
|
|
GUI_ASSERT(item_count);
|
|
|
|
GUI_ASSERT(item_current < item_count);
|
|
|
|
|
2015-06-05 16:42:54 +03:00
|
|
|
/* draw selector background and border */
|
2015-06-03 01:58:57 +03:00
|
|
|
gui_command_buffer_push_rect(out, x, y, w, h, 0, s->border);
|
|
|
|
gui_command_buffer_push_rect(out, x+1, y+1, w-2, h-2, 0, s->color);
|
|
|
|
|
2015-06-05 16:42:54 +03:00
|
|
|
/* up/down button setup and execution */
|
2015-06-03 01:58:57 +03:00
|
|
|
button_y = y;
|
|
|
|
button_h = h / 2;
|
|
|
|
button_w = h - s->padding.x;
|
|
|
|
button_x = x + w - button_w;
|
|
|
|
button.rounding = 0;
|
|
|
|
button.border = (gui_float)s->border_button;
|
|
|
|
button.padding.x = MAX(3, (button_h - font->height) / 2);
|
|
|
|
button.padding.y = MAX(3, (button_h - font->height) / 2);
|
|
|
|
button.background = s->button_color;
|
|
|
|
button.foreground = s->button_border;
|
|
|
|
button.content = s->button_triangle;
|
|
|
|
button.highlight = s->button_color;
|
|
|
|
button.highlight_content = s->button_triangle;
|
|
|
|
button_up_clicked = gui_button_triangle(out, button_x, button_y, button_w,
|
|
|
|
button_h, GUI_UP, GUI_BUTTON_DEFAULT, &button, input);
|
|
|
|
|
|
|
|
button_y = y + button_h;
|
|
|
|
button_down_clicked = gui_button_triangle(out, button_x, button_y, button_w,
|
|
|
|
button_h, GUI_DOWN, GUI_BUTTON_DEFAULT, &button, input);
|
|
|
|
item_current = (button_down_clicked && item_current > 0) ?
|
|
|
|
item_current-1 : (button_up_clicked && item_current < item_count-1) ?
|
|
|
|
item_current+1 : item_current;
|
|
|
|
|
2015-06-05 16:42:54 +03:00
|
|
|
/* calculate text bounds and draw current selected selection text */
|
2015-06-03 01:58:57 +03:00
|
|
|
label_x = x + s->padding.x;
|
|
|
|
label_y = y + s->padding.y;
|
|
|
|
label_w = w - (button_w + 2 * s->padding.x);
|
|
|
|
label_h = h - 2 * s->padding.y;
|
|
|
|
text_len = gui_strsiz(items[item_current]);
|
|
|
|
gui_command_buffer_push_text(out, label_x, label_y, label_w, label_h,
|
|
|
|
(const gui_char*)items[item_current], text_len, font,
|
|
|
|
s->text_bg, s->text);
|
|
|
|
return item_current;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* ==============================================================
|
|
|
|
*
|
|
|
|
* Config
|
|
|
|
*
|
|
|
|
* ===============================================================
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
gui_config_default_properties(struct gui_config *config)
|
|
|
|
{
|
|
|
|
config->slider_cursor = GUI_SLIDER_CIRCLE;
|
2015-06-04 23:17:54 +03:00
|
|
|
config->properties[GUI_PROPERTY_SCROLLBAR_WIDTH] = gui_vec2(16, 16);
|
|
|
|
config->properties[GUI_PROPERTY_PADDING] = gui_vec2(15.0f, 10.0f);
|
|
|
|
config->properties[GUI_PROPERTY_SIZE] = gui_vec2(64.0f, 64.0f);
|
2015-06-09 18:05:05 +03:00
|
|
|
config->properties[GUI_PROPERTY_ITEM_SPACING] = gui_vec2(4.0f, 4.0f);
|
2015-06-04 23:17:54 +03:00
|
|
|
config->properties[GUI_PROPERTY_ITEM_PADDING] = gui_vec2(4.0f, 4.0f);
|
|
|
|
config->properties[GUI_PROPERTY_SCALER_SIZE] = gui_vec2(16.0f, 16.0f);
|
2015-06-03 01:58:57 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gui_config_default_rounding(struct gui_config *config)
|
|
|
|
{
|
|
|
|
config->rounding[GUI_ROUNDING_PANEL] = 4.0f;
|
|
|
|
config->rounding[GUI_ROUNDING_BUTTON] = 2.0f;
|
|
|
|
config->rounding[GUI_ROUNDING_CHECK] = 2.0f;
|
|
|
|
config->rounding[GUI_ROUNDING_PROGRESS] = 4.0f;
|
|
|
|
config->rounding[GUI_ROUNDING_INPUT] = 2.0f;
|
|
|
|
config->rounding[GUI_ROUNDING_GRAPH] = 4.0f;
|
|
|
|
config->rounding[GUI_ROUNDING_SCROLLBAR] = 8.0f;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gui_config_default_color(struct gui_config *config)
|
|
|
|
{
|
2015-06-04 23:17:54 +03:00
|
|
|
config->colors[GUI_COLOR_TEXT] = gui_rgba(100, 100, 100, 255);
|
|
|
|
config->colors[GUI_COLOR_PANEL] = gui_rgba(45, 45, 45, 255);
|
|
|
|
config->colors[GUI_COLOR_HEADER] = gui_rgba(40, 40, 40, 255);
|
|
|
|
config->colors[GUI_COLOR_BORDER] = gui_rgba(100, 100, 100, 255);
|
|
|
|
config->colors[GUI_COLOR_BUTTON] = gui_rgba(50, 50, 50, 255);
|
|
|
|
config->colors[GUI_COLOR_BUTTON_HOVER] = gui_rgba(100, 100, 100, 255);
|
|
|
|
config->colors[GUI_COLOR_BUTTON_TOGGLE] = gui_rgba(75, 75, 75, 255);
|
|
|
|
config->colors[GUI_COLOR_BUTTON_HOVER_FONT] = gui_rgba(45, 45, 45, 255);
|
|
|
|
config->colors[GUI_COLOR_BUTTON_BORDER] = gui_rgba(100, 100, 100, 255);
|
|
|
|
config->colors[GUI_COLOR_CHECK] = gui_rgba(100, 100, 100, 255);
|
|
|
|
config->colors[GUI_COLOR_CHECK_BACKGROUND] = gui_rgba(45, 45, 45, 255);
|
|
|
|
config->colors[GUI_COLOR_CHECK_ACTIVE] = gui_rgba(45, 45, 45, 255);
|
|
|
|
config->colors[GUI_COLOR_OPTION] = gui_rgba(100, 100, 100, 255);
|
|
|
|
config->colors[GUI_COLOR_OPTION_BACKGROUND] = gui_rgba(45, 45, 45, 255);
|
|
|
|
config->colors[GUI_COLOR_OPTION_ACTIVE] = gui_rgba(45, 45, 45, 255);
|
|
|
|
config->colors[GUI_COLOR_SLIDER] = gui_rgba(45, 45, 45, 255);
|
|
|
|
config->colors[GUI_COLOR_SLIDER_BAR] = gui_rgba(100, 100, 100, 255);
|
|
|
|
config->colors[GUI_COLOR_SLIDER_BORDER] = gui_rgba(45, 45, 45, 255);
|
|
|
|
config->colors[GUI_COLOR_SLIDER_CURSOR] = gui_rgba(100, 100, 100, 255);
|
|
|
|
config->colors[GUI_COLOR_PROGRESS] = gui_rgba(100, 100, 100, 255);
|
|
|
|
config->colors[GUI_COLOR_PROGRESS_CURSOR] = gui_rgba(45, 45, 45, 255);
|
|
|
|
config->colors[GUI_COLOR_INPUT] = gui_rgba(45, 45, 45, 255);
|
|
|
|
config->colors[GUI_COLOR_INPUT_CURSOR] = gui_rgba(100, 100, 100, 255);
|
|
|
|
config->colors[GUI_COLOR_INPUT_BORDER] = gui_rgba(100, 100, 100, 255);
|
|
|
|
config->colors[GUI_COLOR_INPUT_TEXT] = gui_rgba(100, 100, 100, 255);
|
|
|
|
config->colors[GUI_COLOR_SPINNER] = gui_rgba(45, 45, 45, 255);
|
|
|
|
config->colors[GUI_COLOR_SPINNER_BORDER] = gui_rgba(100, 100, 100, 255);
|
|
|
|
config->colors[GUI_COLOR_SPINNER_TRIANGLE] = gui_rgba(100, 100, 100, 255);
|
|
|
|
config->colors[GUI_COLOR_SPINNER_TEXT] = gui_rgba(100, 100, 100, 255);
|
|
|
|
config->colors[GUI_COLOR_SELECTOR] = gui_rgba(45, 45, 45, 255);
|
|
|
|
config->colors[GUI_COLOR_SELECTOR_BORDER] = gui_rgba(100, 100, 100, 255);
|
|
|
|
config->colors[GUI_COLOR_SELECTOR_TRIANGLE] = gui_rgba(100, 100, 100, 255);
|
|
|
|
config->colors[GUI_COLOR_SELECTOR_TEXT] = gui_rgba(100, 100, 100, 255);
|
|
|
|
config->colors[GUI_COLOR_HISTO] = gui_rgba(120, 120, 120, 255);
|
|
|
|
config->colors[GUI_COLOR_HISTO_BARS] = gui_rgba(45, 45, 45, 255);
|
|
|
|
config->colors[GUI_COLOR_HISTO_NEGATIVE] = gui_rgba(255, 255, 255, 255);
|
|
|
|
config->colors[GUI_COLOR_HISTO_HIGHLIGHT] = gui_rgba( 255, 0, 0, 255);
|
|
|
|
config->colors[GUI_COLOR_PLOT] = gui_rgba(100, 100, 100, 255);
|
|
|
|
config->colors[GUI_COLOR_PLOT_LINES] = gui_rgba(45, 45, 45, 255);
|
|
|
|
config->colors[GUI_COLOR_PLOT_HIGHLIGHT] = gui_rgba(255, 0, 0, 255);
|
|
|
|
config->colors[GUI_COLOR_SCROLLBAR] = gui_rgba(40, 40, 40, 255);
|
|
|
|
config->colors[GUI_COLOR_SCROLLBAR_CURSOR] = gui_rgba(70, 70, 70, 255);
|
|
|
|
config->colors[GUI_COLOR_SCROLLBAR_BORDER] = gui_rgba(45, 45, 45, 255);
|
|
|
|
config->colors[GUI_COLOR_TABLE_LINES] = gui_rgba(100, 100, 100, 255);
|
|
|
|
config->colors[GUI_COLOR_SHELF] = gui_rgba(45, 45, 45, 255);
|
|
|
|
config->colors[GUI_COLOR_SHELF_TEXT] = gui_rgba(150, 150, 150, 255);
|
|
|
|
config->colors[GUI_COLOR_SHELF_ACTIVE] = gui_rgba(30, 30, 30, 255);
|
|
|
|
config->colors[GUI_COLOR_SHELF_ACTIVE_TEXT] = gui_rgba(100, 100, 100, 255);
|
|
|
|
config->colors[GUI_COLOR_SCALER] = gui_rgba(100, 100, 100, 255);
|
2015-06-03 01:58:57 +03:00
|
|
|
}
|
2015-04-10 19:35:17 +03:00
|
|
|
|
2015-06-03 01:58:57 +03:00
|
|
|
void
|
|
|
|
gui_config_default(struct gui_config *config, gui_flags flags, const struct gui_font *font)
|
|
|
|
{
|
|
|
|
GUI_ASSERT(config);
|
|
|
|
if (!config) return;
|
|
|
|
gui_zero(config, sizeof(*config));
|
|
|
|
config->font = *font;
|
|
|
|
|
|
|
|
if (flags & GUI_DEFAULT_COLOR)
|
|
|
|
gui_config_default_color(config);
|
|
|
|
if (flags & GUI_DEFAULT_PROPERTIES)
|
|
|
|
gui_config_default_properties(config);
|
|
|
|
if (flags & GUI_DEFAULT_ROUNDING)
|
|
|
|
gui_config_default_rounding(config);
|
|
|
|
}
|
|
|
|
|
|
|
|
struct gui_vec2
|
|
|
|
gui_config_property(const struct gui_config *config, enum gui_config_properties index)
|
|
|
|
{
|
|
|
|
static struct gui_vec2 zero;
|
|
|
|
GUI_ASSERT(config);
|
|
|
|
if (!config) return zero;
|
|
|
|
return config->properties[index];
|
|
|
|
}
|
|
|
|
|
|
|
|
struct gui_color
|
|
|
|
gui_config_color(const struct gui_config *config, enum gui_config_colors index)
|
|
|
|
{
|
|
|
|
static struct gui_color zero;
|
|
|
|
GUI_ASSERT(config);
|
|
|
|
if (!config) return zero;
|
|
|
|
return config->colors[index];
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gui_config_push_color(struct gui_config *config, enum gui_config_colors index,
|
|
|
|
gui_byte r, gui_byte g, gui_byte b, gui_byte a)
|
|
|
|
{
|
|
|
|
struct gui_saved_color *c;
|
|
|
|
GUI_ASSERT(config);
|
|
|
|
if (!config) return;
|
2015-06-04 23:17:54 +03:00
|
|
|
if (config->stack.color >= GUI_MAX_COLOR_STACK) return;
|
2015-06-05 16:42:54 +03:00
|
|
|
|
2015-06-04 23:17:54 +03:00
|
|
|
c = &config->stack.colors[config->stack.color++];
|
2015-06-03 01:58:57 +03:00
|
|
|
c->value = config->colors[index];
|
|
|
|
c->type = index;
|
2015-06-05 16:42:54 +03:00
|
|
|
|
2015-06-03 01:58:57 +03:00
|
|
|
config->colors[index].r = r;
|
|
|
|
config->colors[index].g = g;
|
|
|
|
config->colors[index].b = b;
|
|
|
|
config->colors[index].a = a;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gui_config_push_property(struct gui_config *config, enum gui_config_properties index,
|
|
|
|
gui_float x, gui_float y)
|
|
|
|
{
|
|
|
|
struct gui_saved_property *p;
|
|
|
|
GUI_ASSERT(config);
|
|
|
|
if (!config) return;
|
2015-06-04 23:17:54 +03:00
|
|
|
if (config->stack.property >= GUI_MAX_ATTRIB_STACK) return;
|
2015-06-05 16:42:54 +03:00
|
|
|
|
2015-06-04 23:17:54 +03:00
|
|
|
p = &config->stack.properties[config->stack.property++];
|
2015-06-03 01:58:57 +03:00
|
|
|
p->value = config->properties[index];
|
|
|
|
p->type = index;
|
2015-06-05 16:42:54 +03:00
|
|
|
|
2015-06-03 01:58:57 +03:00
|
|
|
config->properties[index].x = x;
|
|
|
|
config->properties[index].y = y;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gui_config_pop_color(struct gui_config *config)
|
|
|
|
{
|
|
|
|
struct gui_saved_color *c;
|
|
|
|
GUI_ASSERT(config);
|
|
|
|
if (!config) return;
|
2015-06-04 23:17:54 +03:00
|
|
|
if (!config->stack.color) return;
|
|
|
|
c = &config->stack.colors[--config->stack.color];
|
2015-06-03 01:58:57 +03:00
|
|
|
config->colors[c->type] = c->value;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gui_config_pop_property(struct gui_config *config)
|
|
|
|
{
|
|
|
|
struct gui_saved_property *p;
|
|
|
|
GUI_ASSERT(config);
|
|
|
|
if (!config) return;
|
2015-06-04 23:17:54 +03:00
|
|
|
if (!config->stack.property) return;
|
|
|
|
p = &config->stack.properties[--config->stack.property];
|
2015-06-03 01:58:57 +03:00
|
|
|
config->properties[p->type] = p->value;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gui_config_reset_colors(struct gui_config *config)
|
|
|
|
{
|
|
|
|
GUI_ASSERT(config);
|
|
|
|
if (!config) return;
|
2015-06-04 23:17:54 +03:00
|
|
|
while (config->stack.color)
|
|
|
|
gui_config_pop_color(config);
|
2015-06-03 01:58:57 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gui_config_reset_properties(struct gui_config *config)
|
|
|
|
{
|
|
|
|
GUI_ASSERT(config);
|
|
|
|
if (!config) return;
|
2015-06-04 23:17:54 +03:00
|
|
|
while (config->stack.property)
|
|
|
|
gui_config_pop_property(config);
|
2015-06-03 01:58:57 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gui_config_reset(struct gui_config *config)
|
|
|
|
{
|
|
|
|
GUI_ASSERT(config);
|
|
|
|
if (!config) return;
|
|
|
|
gui_config_reset_colors(config);
|
|
|
|
gui_config_reset_properties(config);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* ==============================================================
|
|
|
|
*
|
|
|
|
* Panel
|
|
|
|
*
|
|
|
|
* ===============================================================
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gui_panel_init(struct gui_panel *panel, gui_float x, gui_float y, gui_float w,
|
|
|
|
gui_float h, gui_flags flags, struct gui_command_buffer *buffer,
|
|
|
|
const struct gui_config *config)
|
|
|
|
{
|
|
|
|
GUI_ASSERT(panel);
|
|
|
|
GUI_ASSERT(config);
|
|
|
|
if (!panel || !config)
|
|
|
|
return;
|
|
|
|
|
|
|
|
panel->x = x;
|
|
|
|
panel->y = y;
|
|
|
|
panel->w = w;
|
|
|
|
panel->h = h;
|
|
|
|
panel->flags = flags;
|
|
|
|
panel->config = config;
|
|
|
|
panel->buffer = buffer;
|
|
|
|
panel->offset = 0;
|
|
|
|
panel->minimized = gui_false;
|
|
|
|
}
|
|
|
|
|
|
|
|
gui_bool
|
|
|
|
gui_panel_begin(struct gui_panel_layout *l, struct gui_panel *p,
|
|
|
|
const char *text, const struct gui_input *i)
|
|
|
|
{
|
|
|
|
const struct gui_config *c;
|
|
|
|
struct gui_command_buffer *out;
|
|
|
|
const struct gui_color *header;
|
|
|
|
gui_float mouse_x, mouse_y;
|
|
|
|
gui_float prev_x, prev_y;
|
|
|
|
gui_float clicked_x, clicked_y;
|
|
|
|
gui_float header_x = 0, header_w = 0;
|
|
|
|
gui_float footer_h;
|
|
|
|
gui_bool ret = gui_true;
|
|
|
|
|
|
|
|
float scrollbar_width;
|
|
|
|
struct gui_vec2 panel_size;
|
|
|
|
struct gui_vec2 item_padding;
|
|
|
|
struct gui_vec2 item_spacing;
|
|
|
|
struct gui_vec2 panel_padding;
|
|
|
|
struct gui_vec2 scaler_size;
|
|
|
|
|
|
|
|
GUI_ASSERT(p);
|
|
|
|
GUI_ASSERT(l);
|
|
|
|
GUI_ASSERT(p->buffer);
|
|
|
|
|
|
|
|
/* check arguments */
|
|
|
|
if (!p || !p->buffer || !l)
|
|
|
|
return gui_false;
|
|
|
|
if (!(p->flags & GUI_PANEL_TAB))
|
|
|
|
gui_command_buffer_reset(p->buffer);
|
|
|
|
if (p->flags & GUI_PANEL_HIDDEN) {
|
|
|
|
gui_zero(l, sizeof(*l));
|
|
|
|
l->valid = gui_false;
|
|
|
|
l->config = p->config;
|
|
|
|
l->buffer = p->buffer;
|
|
|
|
return gui_false;
|
|
|
|
}
|
|
|
|
|
|
|
|
c = p->config;
|
2015-06-05 16:42:54 +03:00
|
|
|
/* aquire all needed configuration style constants */
|
2015-06-03 01:58:57 +03:00
|
|
|
scrollbar_width = gui_config_property(c, GUI_PROPERTY_SCROLLBAR_WIDTH).x;
|
|
|
|
panel_size = gui_config_property(c, GUI_PROPERTY_SIZE);
|
|
|
|
panel_padding = gui_config_property(c, GUI_PROPERTY_PADDING);
|
|
|
|
item_padding = gui_config_property(c, GUI_PROPERTY_ITEM_PADDING);
|
|
|
|
item_spacing = gui_config_property(c, GUI_PROPERTY_ITEM_SPACING);
|
|
|
|
scaler_size = gui_config_property(c, GUI_PROPERTY_SCALER_SIZE);
|
|
|
|
|
2015-06-05 16:42:54 +03:00
|
|
|
/* calculate the height of the panel header */
|
2015-06-05 23:32:44 +03:00
|
|
|
l->header_height = c->font.height + 4 * item_padding.y;
|
2015-06-03 01:58:57 +03:00
|
|
|
l->header_height += panel_padding.y;
|
|
|
|
|
2015-06-05 16:42:54 +03:00
|
|
|
/* cache relevant user input values */
|
2015-06-03 01:58:57 +03:00
|
|
|
mouse_x = (i) ? i->mouse_pos.x : -1;
|
|
|
|
mouse_y = (i) ? i->mouse_pos.y : -1;
|
|
|
|
prev_x = (i) ? i->mouse_prev.x : -1;
|
|
|
|
prev_y = (i) ? i->mouse_prev.y : -1;
|
|
|
|
clicked_x = (i) ? i->mouse_clicked_pos.x : -1;
|
|
|
|
clicked_y = (i) ? i->mouse_clicked_pos.y : -1;
|
|
|
|
|
2015-06-05 16:42:54 +03:00
|
|
|
/* move panel position if requested */
|
2015-06-03 01:58:57 +03:00
|
|
|
if (p->flags & GUI_PANEL_MOVEABLE) {
|
|
|
|
gui_bool incursor;
|
|
|
|
const gui_float move_x = p->x;
|
|
|
|
const gui_float move_y = p->y;
|
|
|
|
const gui_float move_w = p->w;
|
|
|
|
const gui_float move_h = l->header_height;
|
|
|
|
|
|
|
|
incursor = i && GUI_INBOX(i->mouse_prev.x,i->mouse_prev.y,move_x,move_y,move_w,move_h);
|
|
|
|
if (i && i->mouse_down && incursor) {
|
|
|
|
p->x = MAX(0, p->x + i->mouse_delta.x);
|
|
|
|
p->y = MAX(0, p->y + i->mouse_delta.y);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-05 16:42:54 +03:00
|
|
|
/* scale panel size if requested */
|
2015-06-03 01:58:57 +03:00
|
|
|
if (p->flags & GUI_PANEL_SCALEABLE) {
|
|
|
|
gui_bool incursor;
|
|
|
|
gui_float scaler_w = MAX(0, scaler_size.x - item_padding.x);
|
|
|
|
gui_float scaler_h = MAX(0, scaler_size.y - item_padding.y);
|
|
|
|
gui_float scaler_x = (p->x + p->w) - (item_padding.x + scaler_w);
|
|
|
|
gui_float scaler_y = p->y + p->h - scaler_size.y;
|
|
|
|
|
|
|
|
incursor = i && GUI_INBOX(prev_x, prev_y, scaler_x, scaler_y, scaler_w, scaler_h);
|
|
|
|
if (i && i->mouse_down && incursor) {
|
|
|
|
gui_float min_x = panel_size.x;
|
|
|
|
gui_float min_y = panel_size.y;
|
|
|
|
p->w = MAX(min_x, p->w + i->mouse_delta.x);
|
|
|
|
p->h = MAX(min_y, p->h + i->mouse_delta.y);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-05 16:42:54 +03:00
|
|
|
/* setup the rest of the panel */
|
2015-06-03 01:58:57 +03:00
|
|
|
l->input = i;
|
|
|
|
l->index = 0;
|
2015-06-05 16:42:54 +03:00
|
|
|
l->x = p->x; l->y = p->y;
|
|
|
|
l->w = p->w; l->h = p->h;
|
|
|
|
l->at_x = p->x; l->at_y = p->y;
|
|
|
|
l->width = p->w; l->height = p->h;
|
|
|
|
l->config = p->config;
|
|
|
|
l->buffer = p->buffer;
|
2015-06-09 18:05:05 +03:00
|
|
|
l->row.columns = 0;
|
|
|
|
l->row.height = 0;
|
|
|
|
l->row.ratio = NULL;
|
|
|
|
l->row.item_ratio = 0;
|
2015-06-03 01:58:57 +03:00
|
|
|
l->offset = p->offset;
|
2015-06-05 16:01:15 +03:00
|
|
|
out = p->buffer;
|
2015-06-03 01:58:57 +03:00
|
|
|
|
2015-06-05 16:42:54 +03:00
|
|
|
/* calulate the head_height if no header is needed or draw the header otherwise */
|
2015-06-03 01:58:57 +03:00
|
|
|
if (!(p->flags & GUI_PANEL_NO_HEADER)) {
|
|
|
|
header = &c->colors[GUI_COLOR_HEADER];
|
|
|
|
header_x = p->x + panel_padding.x;
|
|
|
|
header_w = p->w - 2 * panel_padding.x;
|
|
|
|
gui_command_buffer_push_rect(out, p->x, p->y, p->w, l->header_height, 0, *header);
|
|
|
|
} else l->header_height = 1;
|
2015-06-09 18:05:05 +03:00
|
|
|
l->row.height = l->header_height + 2 * item_spacing.y;
|
2015-06-03 01:58:57 +03:00
|
|
|
|
2015-06-05 16:42:54 +03:00
|
|
|
/* calculate the panel footer */
|
2015-06-03 01:58:57 +03:00
|
|
|
footer_h = scaler_size.y + item_padding.y;
|
|
|
|
if ((p->flags & GUI_PANEL_SCALEABLE) &&
|
|
|
|
(p->flags & GUI_PANEL_SCROLLBAR) &&
|
|
|
|
!p->minimized) {
|
|
|
|
gui_float footer_x, footer_y, footer_w;
|
|
|
|
footer_x = p->x;
|
|
|
|
footer_w = p->w;
|
|
|
|
footer_y = p->y + p->h - footer_h;
|
|
|
|
gui_command_buffer_push_rect(out, footer_x, footer_y, footer_w, footer_h,
|
|
|
|
0, c->colors[GUI_COLOR_PANEL]);
|
|
|
|
}
|
|
|
|
|
2015-06-05 16:42:54 +03:00
|
|
|
/* fix up some panel flags combinations */
|
2015-06-03 01:58:57 +03:00
|
|
|
if (!(p->flags & GUI_PANEL_TAB)) {
|
|
|
|
p->flags |= GUI_PANEL_SCROLLBAR;
|
|
|
|
if (i && i->mouse_down) {
|
|
|
|
if (!GUI_INBOX(clicked_x, clicked_y, p->x, p->y, p->w, p->h))
|
|
|
|
p->flags &= (gui_flag)~GUI_PANEL_ACTIVE;
|
|
|
|
else p->flags |= GUI_PANEL_ACTIVE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-05 16:42:54 +03:00
|
|
|
/* calculate the panel clipping rectangle*/
|
2015-06-03 01:58:57 +03:00
|
|
|
l->clip.x = p->x;
|
|
|
|
l->clip.w = p->w;
|
|
|
|
l->clip.y = p->y + l->header_height - 1;
|
|
|
|
if (p->flags & GUI_PANEL_SCROLLBAR) {
|
|
|
|
if (p->flags & GUI_PANEL_SCALEABLE)
|
|
|
|
l->clip.h = p->h - (footer_h + l->header_height);
|
|
|
|
else l->clip.h = p->h - l->header_height;
|
|
|
|
l->clip.h -= (panel_padding.y + item_padding.y);
|
|
|
|
} else l->clip.h = gui_null_rect.h;
|
|
|
|
|
2015-06-05 16:42:54 +03:00
|
|
|
|
|
|
|
/* execute the panel closing and closer icon drawing */
|
2015-06-03 01:58:57 +03:00
|
|
|
if ((p->flags & GUI_PANEL_CLOSEABLE) && (!(p->flags & GUI_PANEL_NO_HEADER))) {
|
2015-06-05 16:42:54 +03:00
|
|
|
/* calculate the position of the close icon position and draw it */
|
2015-06-03 01:58:57 +03:00
|
|
|
const gui_char *X = (const gui_char*)"x";
|
|
|
|
const gui_size text_width = c->font.width(c->font.userdata, X, 1);
|
|
|
|
const gui_float close_x = header_x;
|
|
|
|
const gui_float close_y = p->y + panel_padding.y;
|
|
|
|
const gui_float close_w = (gui_float)text_width + 2 * item_padding.x;
|
|
|
|
const gui_float close_h = c->font.height + 2 * item_padding.y;
|
|
|
|
gui_command_buffer_push_text(out, close_x, close_y, close_w, close_h,
|
|
|
|
X, 1, &c->font, c->colors[GUI_COLOR_HEADER], c->colors[GUI_COLOR_TEXT]);
|
|
|
|
|
2015-06-05 16:42:54 +03:00
|
|
|
/* check if the close icon has been pressed and set the panel to hidden */
|
2015-06-03 01:58:57 +03:00
|
|
|
header_w -= close_w;
|
|
|
|
header_x += close_h - item_padding.x;
|
|
|
|
if (i && GUI_INBOX(mouse_x, mouse_y, close_x, close_y, close_w, close_h)) {
|
|
|
|
if (GUI_INBOX(clicked_x, clicked_y, close_x, close_y, close_w, close_h)) {
|
|
|
|
ret = !(i->mouse_down && i->mouse_clicked);
|
|
|
|
if (!ret) p->flags |= GUI_PANEL_HIDDEN;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-05 16:42:54 +03:00
|
|
|
/* execute the panel minimzing and minimizer icon drawing */
|
2015-06-03 01:58:57 +03:00
|
|
|
if ((p->flags & GUI_PANEL_MINIMIZABLE) && (!(p->flags & GUI_PANEL_NO_HEADER))) {
|
|
|
|
gui_size text_width;
|
|
|
|
gui_float min_x, min_y, min_w, min_h;
|
|
|
|
const gui_char *score = (p->minimized) ?
|
|
|
|
(const gui_char*)"+":
|
|
|
|
(const gui_char*)"-";
|
|
|
|
|
2015-06-05 16:42:54 +03:00
|
|
|
/* calculate the icon positon and size of the icon and draw it */
|
2015-06-03 01:58:57 +03:00
|
|
|
text_width = c->font.width(c->font.userdata, score, 1);
|
|
|
|
min_x = header_x;
|
|
|
|
min_y = p->y + panel_padding.y;
|
|
|
|
min_w = (gui_float)text_width + 3 * item_padding.x;
|
|
|
|
min_h = c->font.height + 2 * item_padding.y;
|
|
|
|
gui_command_buffer_push_text(out, min_x, min_y, min_w, min_h,
|
|
|
|
score, 1, &c->font, c->colors[GUI_COLOR_HEADER],
|
|
|
|
c->colors[GUI_COLOR_TEXT]);
|
|
|
|
|
2015-06-05 16:42:54 +03:00
|
|
|
/* minize the panel if the minimize icon has been pressed */
|
2015-06-03 01:58:57 +03:00
|
|
|
header_w -= min_w;
|
|
|
|
header_x += min_w - item_padding.x;
|
|
|
|
if (i && GUI_INBOX(mouse_x, mouse_y, min_x, min_y, min_w, min_h)) {
|
|
|
|
if (GUI_INBOX(clicked_x, clicked_y, min_x, min_y, min_w, min_h))
|
|
|
|
if (i->mouse_down && i->mouse_clicked)
|
|
|
|
p->minimized = !p->minimized;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
l->valid = !(p->minimized || (p->flags & GUI_PANEL_HIDDEN));
|
|
|
|
|
2015-06-05 16:42:54 +03:00
|
|
|
/* draw the panel title into the header */
|
2015-06-03 01:58:57 +03:00
|
|
|
if (text && !(p->flags & GUI_PANEL_NO_HEADER)) {
|
|
|
|
const gui_size text_len = gui_strsiz(text);
|
|
|
|
const gui_float label_x = header_x + item_padding.x;
|
|
|
|
const gui_float label_y = p->y + panel_padding.y;
|
|
|
|
const gui_float label_w = header_w - (3 * item_padding.x);
|
|
|
|
const gui_float label_h = c->font.height + 2 * item_padding.y;
|
|
|
|
gui_command_buffer_push_text(out, label_x, label_y, label_w, label_h,
|
|
|
|
(const gui_char*)text, text_len, &c->font, c->colors[GUI_COLOR_HEADER],
|
|
|
|
c->colors[GUI_COLOR_TEXT]);
|
|
|
|
}
|
|
|
|
|
2015-06-05 16:42:54 +03:00
|
|
|
/* draw scrollbar panel footer */
|
2015-06-03 01:58:57 +03:00
|
|
|
if (p->flags & GUI_PANEL_SCROLLBAR) {
|
|
|
|
const struct gui_color *color = &c->colors[GUI_COLOR_PANEL];
|
|
|
|
l->width = p->w - scrollbar_width;
|
|
|
|
l->height = p->h - (l->header_height + 2 * item_spacing.y);
|
|
|
|
if (p->flags & GUI_PANEL_SCALEABLE) l->height -= footer_h;
|
|
|
|
if (l->valid)
|
|
|
|
gui_command_buffer_push_rect(out, p->x, p->y + l->header_height,
|
|
|
|
p->w, p->h - l->header_height, 0, *color);
|
|
|
|
}
|
|
|
|
|
2015-06-05 16:42:54 +03:00
|
|
|
/* draw the border around the panel header */
|
2015-06-03 01:58:57 +03:00
|
|
|
if (p->flags & GUI_PANEL_BORDER) {
|
|
|
|
const struct gui_color *color = &c->colors[GUI_COLOR_BORDER];
|
|
|
|
const gui_float width = (p->flags & GUI_PANEL_SCROLLBAR) ?
|
|
|
|
l->width + scrollbar_width : l->width;
|
|
|
|
|
|
|
|
gui_command_buffer_push_line(out, p->x, p->y,
|
|
|
|
p->x + p->w, p->y, *color);
|
|
|
|
gui_command_buffer_push_line(out, p->x, p->y, p->x,
|
|
|
|
p->y + l->header_height, c->colors[GUI_COLOR_BORDER]);
|
|
|
|
gui_command_buffer_push_line(out, p->x + width, p->y, p->x + width,
|
|
|
|
p->y + l->header_height, c->colors[GUI_COLOR_BORDER]);
|
|
|
|
if (p->flags & GUI_PANEL_BORDER_HEADER)
|
|
|
|
gui_command_buffer_push_line(out, p->x, p->y + l->header_height,
|
|
|
|
p->x + p->w, p->y + l->header_height, c->colors[GUI_COLOR_BORDER]);
|
|
|
|
}
|
2015-06-05 16:42:54 +03:00
|
|
|
|
|
|
|
/* setup the clipping panel rectangle */
|
2015-06-03 01:58:57 +03:00
|
|
|
gui_command_buffer_push_scissor(out, l->clip.x, l->clip.y, l->clip.w, l->clip.h);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
gui_bool
|
|
|
|
gui_panel_begin_stacked(struct gui_panel_layout *l, struct gui_panel* p,
|
|
|
|
struct gui_stack *s, const char *title, const struct gui_input *i)
|
|
|
|
{
|
|
|
|
gui_bool inpanel;
|
|
|
|
GUI_ASSERT(l);
|
|
|
|
GUI_ASSERT(s);
|
|
|
|
if (!l || !s) return gui_false;
|
|
|
|
|
|
|
|
inpanel = GUI_INBOX(i->mouse_prev.x, i->mouse_prev.y, p->x, p->y, p->w, p->h);
|
|
|
|
if (i->mouse_down && i->mouse_clicked && inpanel && p != s->end) {
|
|
|
|
const struct gui_panel *iter = p->next;
|
|
|
|
while (iter) {
|
2015-06-05 16:42:54 +03:00
|
|
|
/* try to find a panel with higher priorty in the same position */
|
2015-06-03 01:58:57 +03:00
|
|
|
const struct gui_panel *cur = iter;
|
|
|
|
if (GUI_INBOX(i->mouse_prev.x,i->mouse_prev.y,cur->x,cur->y,cur->w,cur->h) &&
|
|
|
|
!cur->minimized) break;
|
|
|
|
iter = iter->next;
|
|
|
|
}
|
2015-06-05 16:42:54 +03:00
|
|
|
/* current panel is active panel in that position so transfer to top
|
2015-06-06 13:45:18 +03:00
|
|
|
* at the highest priority in stack */
|
2015-06-03 01:58:57 +03:00
|
|
|
if (!iter) {
|
|
|
|
gui_stack_pop(s, p);
|
|
|
|
gui_stack_push(s, p);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return gui_panel_begin(l, p, title, (s->end == p) ? i : NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
gui_bool
|
|
|
|
gui_panel_begin_tiled(struct gui_panel_layout *tile, struct gui_panel *panel,
|
|
|
|
struct gui_layout *layout, enum gui_layout_slot_index slot, gui_size index,
|
|
|
|
const char *title, const struct gui_input *in)
|
|
|
|
{
|
|
|
|
struct gui_rect bounds;
|
|
|
|
struct gui_layout_slot *s;
|
|
|
|
|
|
|
|
GUI_ASSERT(panel);
|
|
|
|
GUI_ASSERT(tile);
|
|
|
|
GUI_ASSERT(layout);
|
|
|
|
|
|
|
|
if (!layout || !panel || !tile) return gui_false;
|
|
|
|
if (slot >= GUI_SLOT_MAX) return gui_false;
|
|
|
|
if (index >= layout->slots[slot].capacity) return gui_false;
|
|
|
|
|
2015-06-05 16:42:54 +03:00
|
|
|
/* make sure the correct flags are set */
|
2015-06-03 01:58:57 +03:00
|
|
|
panel->flags &= (gui_flags)~GUI_PANEL_MINIMIZABLE;
|
|
|
|
panel->flags &= (gui_flags)~GUI_PANEL_CLOSEABLE;
|
|
|
|
panel->flags &= (gui_flags)~GUI_PANEL_MOVEABLE;
|
|
|
|
panel->flags &= (gui_flags)~GUI_PANEL_SCALEABLE;
|
|
|
|
|
2015-06-05 16:42:54 +03:00
|
|
|
/* calculate the bounds of the slot */
|
2015-06-03 01:58:57 +03:00
|
|
|
s = &layout->slots[slot];
|
|
|
|
bounds.x = s->offset.x * (gui_float)layout->width;
|
|
|
|
bounds.y = s->offset.y * (gui_float)layout->height;
|
|
|
|
bounds.w = s->ratio.x * (gui_float)layout->width;
|
|
|
|
bounds.h = s->ratio.y * (gui_float)layout->height;
|
|
|
|
|
2015-06-05 16:42:54 +03:00
|
|
|
/* calculate the bounds of the panel */
|
2015-06-03 01:58:57 +03:00
|
|
|
if (s->format == GUI_LAYOUT_HORIZONTAL) {
|
|
|
|
panel->h = bounds.h;
|
|
|
|
panel->y = bounds.y;
|
|
|
|
panel->x = bounds.x + (gui_float)index * panel->w;
|
|
|
|
panel->w = bounds.w / (gui_float)s->capacity;
|
|
|
|
} else {
|
|
|
|
panel->x = bounds.x;
|
|
|
|
panel->w = bounds.w;
|
|
|
|
panel->h = bounds.h / (gui_float)s->capacity;
|
|
|
|
panel->y = bounds.y + (gui_float)index * panel->h;
|
|
|
|
}
|
|
|
|
gui_stack_push(&layout->stack, panel);
|
|
|
|
return gui_panel_begin(tile, panel, title, (layout->state) ? in : NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gui_panel_row(struct gui_panel_layout *layout, gui_float height, gui_size cols)
|
|
|
|
{
|
|
|
|
const struct gui_config *config;
|
|
|
|
const struct gui_color *color;
|
|
|
|
struct gui_command_buffer *out;
|
|
|
|
struct gui_vec2 item_spacing;
|
|
|
|
struct gui_vec2 panel_padding;
|
|
|
|
|
|
|
|
GUI_ASSERT(layout);
|
|
|
|
GUI_ASSERT(layout->config);
|
|
|
|
GUI_ASSERT(layout->buffer);
|
|
|
|
if (!layout) return;
|
|
|
|
if (!layout->valid) return;
|
|
|
|
|
2015-06-05 16:42:54 +03:00
|
|
|
/* prefetch some configuration data */
|
2015-06-03 01:58:57 +03:00
|
|
|
config = layout->config;
|
|
|
|
out = layout->buffer;
|
|
|
|
color = &config->colors[GUI_COLOR_PANEL];
|
|
|
|
item_spacing = gui_config_property(config, GUI_PROPERTY_ITEM_SPACING);
|
|
|
|
panel_padding = gui_config_property(config, GUI_PROPERTY_PADDING);
|
|
|
|
|
2015-06-05 16:42:54 +03:00
|
|
|
/* draw the current row and set the current row layout */
|
2015-06-03 01:58:57 +03:00
|
|
|
layout->index = 0;
|
2015-06-09 18:05:05 +03:00
|
|
|
layout->at_y += layout->row.height;
|
|
|
|
layout->row.ratio = NULL;
|
|
|
|
layout->row.columns = cols;
|
|
|
|
layout->row.height = height + item_spacing.y;
|
2015-06-03 01:58:57 +03:00
|
|
|
gui_command_buffer_push_rect(out, layout->at_x, layout->at_y,
|
|
|
|
layout->width, height + panel_padding.y, 0, *color);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2015-06-09 18:05:05 +03:00
|
|
|
gui_panel_row_templated(struct gui_panel_layout *layout, gui_float height,
|
|
|
|
gui_size cols, const gui_float *ratio)
|
2015-06-03 01:58:57 +03:00
|
|
|
{
|
2015-06-09 18:05:05 +03:00
|
|
|
gui_size i;
|
|
|
|
gui_size n_undef = 0;
|
|
|
|
gui_float r = 0;
|
2015-06-03 01:58:57 +03:00
|
|
|
|
2015-06-09 18:05:05 +03:00
|
|
|
GUI_ASSERT(layout);
|
|
|
|
GUI_ASSERT(layout->config);
|
|
|
|
GUI_ASSERT(layout->buffer);
|
|
|
|
if (!layout) return;
|
|
|
|
if (!layout->valid) return;
|
|
|
|
|
|
|
|
gui_panel_row(layout, height, cols);
|
|
|
|
layout->row.ratio = ratio;
|
|
|
|
for (i = 0; i < cols; ++i) {
|
|
|
|
if (ratio[i] < 0.0f)
|
|
|
|
n_undef++;
|
|
|
|
else r += ratio[i];
|
2015-06-03 01:58:57 +03:00
|
|
|
}
|
2015-06-09 18:05:05 +03:00
|
|
|
|
|
|
|
r = GUI_SATURATE(1.0f - r);
|
2015-06-10 16:09:10 +03:00
|
|
|
layout->row.item_ratio = (r > 0) ? (r / (gui_float)n_undef) : 0;
|
2015-06-03 01:58:57 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gui_panel_alloc_space(struct gui_rect *bounds, struct gui_panel_layout *layout)
|
|
|
|
{
|
|
|
|
const struct gui_config *config;
|
|
|
|
gui_float panel_padding, panel_spacing, panel_space;
|
|
|
|
gui_float item_offset, item_width, item_spacing;
|
|
|
|
struct gui_vec2 spacing;
|
|
|
|
struct gui_vec2 padding;
|
|
|
|
|
|
|
|
GUI_ASSERT(layout);
|
|
|
|
GUI_ASSERT(layout->config);
|
|
|
|
GUI_ASSERT(bounds);
|
|
|
|
if (!layout || !layout->config || !bounds)
|
|
|
|
return;
|
|
|
|
|
|
|
|
config = layout->config;
|
|
|
|
spacing = gui_config_property(config, GUI_PROPERTY_ITEM_SPACING);
|
|
|
|
padding = gui_config_property(config, GUI_PROPERTY_PADDING);
|
|
|
|
|
2015-06-05 16:42:54 +03:00
|
|
|
/* check if the end of the row as hit and begin new row if so*/
|
2015-06-09 18:05:05 +03:00
|
|
|
if (layout->index >= layout->row.columns) {
|
|
|
|
const gui_float *ratio;
|
|
|
|
const gui_float row_height = layout->row.height - spacing.y;
|
|
|
|
ratio = layout->row.ratio;
|
|
|
|
gui_panel_row(layout, row_height, layout->row.columns);
|
|
|
|
layout->row.ratio = ratio;
|
2015-06-03 01:58:57 +03:00
|
|
|
}
|
|
|
|
|
2015-06-05 16:42:54 +03:00
|
|
|
/* calculate the total width in the panel */
|
2015-06-03 01:58:57 +03:00
|
|
|
panel_padding = 2 * padding.x;
|
2015-06-09 18:05:05 +03:00
|
|
|
panel_spacing = (gui_float)(layout->row.columns - 1) * spacing.x;
|
2015-06-03 01:58:57 +03:00
|
|
|
panel_space = layout->width - panel_padding - panel_spacing;
|
|
|
|
|
2015-06-05 16:42:54 +03:00
|
|
|
/* calculate the width of one item inside the panel row */
|
2015-06-09 18:05:05 +03:00
|
|
|
if (!layout->row.ratio) {
|
|
|
|
/* basic standart table layout */
|
|
|
|
item_width = panel_space / (gui_float)layout->row.columns;
|
|
|
|
item_offset = (gui_float)layout->index * item_width;
|
|
|
|
item_spacing = (gui_float)layout->index * spacing.x;
|
|
|
|
} else {
|
|
|
|
/* user provided layout */
|
|
|
|
gui_size i;
|
|
|
|
gui_float ratio = (layout->row.ratio[layout->index] < 0) ?
|
|
|
|
layout->row.item_ratio : layout->row.ratio[layout->index];
|
|
|
|
|
|
|
|
item_offset = 0;
|
|
|
|
item_spacing = (gui_float)layout->index * spacing.x;
|
|
|
|
if (layout->index < layout->row.columns-1)
|
|
|
|
item_width = (ratio * panel_space) - spacing.x;
|
|
|
|
else item_width = (ratio * panel_space);
|
|
|
|
|
|
|
|
for (i = 0; i < layout->index; ++i) {
|
|
|
|
ratio = (layout->row.ratio[i] < 0) ?
|
|
|
|
layout->row.item_ratio : layout->row.ratio[i];
|
|
|
|
item_offset += ratio * panel_space;
|
|
|
|
}
|
|
|
|
}
|
2015-06-03 01:58:57 +03:00
|
|
|
|
2015-06-05 16:42:54 +03:00
|
|
|
/* set the bounds of the newly allocated widget */
|
2015-06-03 01:58:57 +03:00
|
|
|
bounds->x = layout->at_x + item_offset + item_spacing + padding.x;
|
|
|
|
bounds->y = layout->at_y - layout->offset;
|
|
|
|
bounds->w = item_width;
|
2015-06-09 18:05:05 +03:00
|
|
|
bounds->h = layout->row.height - spacing.y;
|
2015-06-03 01:58:57 +03:00
|
|
|
layout->index++;
|
|
|
|
}
|
|
|
|
|
2015-06-09 18:05:05 +03:00
|
|
|
gui_size
|
|
|
|
gui_panel_row_columns(const struct gui_panel_layout *l, gui_size widget_size)
|
|
|
|
{
|
|
|
|
struct gui_vec2 spacing;
|
|
|
|
struct gui_vec2 padding;
|
|
|
|
gui_size cols = 0, size;
|
|
|
|
GUI_ASSERT(l);
|
|
|
|
GUI_ASSERT(widget_size);
|
|
|
|
if (!l || !widget_size)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
/* calculate the number of widgets with given size that fit into the current row layout */
|
|
|
|
spacing = gui_config_property(l->config, GUI_PROPERTY_ITEM_SPACING);
|
|
|
|
padding = gui_config_property(l->config, GUI_PROPERTY_PADDING);
|
|
|
|
cols = (gui_size)(l->width) / widget_size;
|
|
|
|
size = (cols * (gui_size)spacing.x) + 2 * (gui_size)padding.x + widget_size * cols;
|
|
|
|
while ((size > l->width) && --cols)
|
|
|
|
size = (cols*(gui_size)spacing.x) + 2*(gui_size)padding.x + widget_size * cols;
|
|
|
|
return cols;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gui_panel_spacing(struct gui_panel_layout *l, gui_size cols)
|
|
|
|
{
|
|
|
|
gui_size add;
|
|
|
|
GUI_ASSERT(l);
|
|
|
|
GUI_ASSERT(l->config);
|
|
|
|
GUI_ASSERT(l->buffer);
|
|
|
|
if (!l) return;
|
|
|
|
if (!l->valid) return;
|
|
|
|
|
|
|
|
add = (l->index + cols) % l->row.columns;
|
|
|
|
if (l->index + cols > l->row.columns) {
|
|
|
|
gui_size i;
|
|
|
|
const struct gui_config *c = l->config;
|
|
|
|
struct gui_vec2 item_spacing = gui_config_property(c, GUI_PROPERTY_ITEM_SPACING);
|
|
|
|
const gui_float row_height = l->row.height - item_spacing.y;
|
|
|
|
gui_size rows = (l->index + cols) / l->row.columns;
|
|
|
|
for (i = 0; i < rows; ++i)
|
|
|
|
gui_panel_row(l, row_height, l->row.columns);
|
|
|
|
}
|
|
|
|
l->index += add;
|
|
|
|
}
|
|
|
|
|
2015-06-03 01:58:57 +03:00
|
|
|
gui_bool
|
|
|
|
gui_panel_widget(struct gui_rect *bounds, struct gui_panel_layout *layout)
|
|
|
|
{
|
2015-06-04 23:17:54 +03:00
|
|
|
struct gui_rect *c = NULL;
|
2015-06-03 01:58:57 +03:00
|
|
|
GUI_ASSERT(layout);
|
|
|
|
GUI_ASSERT(layout->config);
|
|
|
|
GUI_ASSERT(layout->buffer);
|
|
|
|
if (!layout || !layout->config || !layout->buffer) return gui_false;
|
|
|
|
if (!layout->valid) return gui_false;
|
|
|
|
|
2015-06-05 16:42:54 +03:00
|
|
|
/* allocated space for the panel and check if the widget needs to be updated */
|
2015-06-03 01:58:57 +03:00
|
|
|
gui_panel_alloc_space(bounds, layout);
|
|
|
|
c = &layout->clip;
|
|
|
|
if (!GUI_INTERSECT(c->x, c->y, c->w, c->h, bounds->x, bounds->y, bounds->w, bounds->h))
|
|
|
|
return gui_false;
|
|
|
|
return gui_true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gui_panel_text_colored(struct gui_panel_layout *layout, const char *str, gui_size len,
|
|
|
|
enum gui_text_align alignment, struct gui_color color)
|
|
|
|
{
|
|
|
|
struct gui_rect bounds;
|
|
|
|
struct gui_text text;
|
|
|
|
const struct gui_config *config;
|
|
|
|
struct gui_vec2 item_padding;
|
|
|
|
|
|
|
|
GUI_ASSERT(layout);
|
|
|
|
GUI_ASSERT(layout->config);
|
|
|
|
GUI_ASSERT(layout->buffer);
|
|
|
|
GUI_ASSERT(str && len);
|
|
|
|
|
|
|
|
if (!layout || !layout->config || !layout->buffer) return;
|
|
|
|
if (!layout->valid) return;
|
|
|
|
gui_panel_alloc_space(&bounds, layout);
|
|
|
|
config = layout->config;
|
|
|
|
item_padding = gui_config_property(config, GUI_PROPERTY_ITEM_PADDING);
|
|
|
|
|
|
|
|
text.padding.x = item_padding.x;
|
|
|
|
text.padding.y = item_padding.y;
|
|
|
|
text.foreground = color;
|
|
|
|
text.background = config->colors[GUI_COLOR_PANEL];
|
|
|
|
gui_text(layout->buffer,bounds.x,bounds.y,bounds.w,bounds.h, str, len,
|
|
|
|
&text, alignment, &config->font);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gui_panel_text(struct gui_panel_layout *l, const char *str, gui_size len,
|
|
|
|
enum gui_text_align alignment)
|
|
|
|
{
|
2015-06-04 23:17:54 +03:00
|
|
|
gui_panel_text_colored(l, str, len, alignment,l->config->colors[GUI_COLOR_TEXT]);
|
2015-06-03 01:58:57 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gui_panel_label_colored(struct gui_panel_layout *layout, const char *text,
|
|
|
|
enum gui_text_align align, struct gui_color color)
|
|
|
|
{
|
|
|
|
gui_size len = gui_strsiz(text);
|
|
|
|
gui_panel_text_colored(layout, text, len, align, color);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gui_panel_label(struct gui_panel_layout *layout, const char *text,
|
|
|
|
enum gui_text_align align)
|
|
|
|
{
|
|
|
|
gui_size len = gui_strsiz(text);
|
|
|
|
gui_panel_text(layout, text, len, align);
|
|
|
|
}
|
|
|
|
|
|
|
|
static gui_bool
|
|
|
|
gui_panel_button(struct gui_button *button, struct gui_rect *bounds,
|
|
|
|
struct gui_panel_layout *layout)
|
|
|
|
{
|
|
|
|
const struct gui_config *config;
|
|
|
|
struct gui_vec2 item_padding;
|
|
|
|
if (!gui_panel_widget(bounds, layout)) return gui_false;
|
|
|
|
config = layout->config;
|
|
|
|
item_padding = gui_config_property(config, GUI_PROPERTY_ITEM_PADDING);
|
|
|
|
|
|
|
|
button->border = 1;
|
|
|
|
button->rounding = config->rounding[GUI_ROUNDING_BUTTON];
|
|
|
|
button->padding.x = item_padding.x;
|
|
|
|
button->padding.y = item_padding.y;
|
|
|
|
return gui_true;
|
|
|
|
}
|
|
|
|
|
|
|
|
gui_bool
|
|
|
|
gui_panel_button_text(struct gui_panel_layout *layout, const char *str,
|
|
|
|
enum gui_button_behavior behavior)
|
|
|
|
{
|
|
|
|
struct gui_rect bounds;
|
|
|
|
struct gui_button button;
|
|
|
|
const struct gui_config *config;
|
|
|
|
if (!gui_panel_button(&button, &bounds, layout))
|
|
|
|
return gui_false;
|
|
|
|
|
|
|
|
config = layout->config;
|
|
|
|
button.background = config->colors[GUI_COLOR_BUTTON];
|
|
|
|
button.foreground = config->colors[GUI_COLOR_BUTTON_BORDER];
|
|
|
|
button.content = config->colors[GUI_COLOR_TEXT];
|
|
|
|
button.highlight = config->colors[GUI_COLOR_BUTTON_HOVER];
|
|
|
|
button.highlight_content = config->colors[GUI_COLOR_BUTTON_HOVER_FONT];
|
|
|
|
button.rounding = config->rounding[GUI_ROUNDING_BUTTON];
|
|
|
|
return gui_button_text(layout->buffer, bounds.x, bounds.y, bounds.w, bounds.h,
|
|
|
|
str, behavior, &button, layout->input, &config->font);
|
|
|
|
}
|
|
|
|
|
|
|
|
gui_bool
|
|
|
|
gui_panel_button_color(struct gui_panel_layout *layout,
|
2015-06-04 23:17:54 +03:00
|
|
|
struct gui_color color, enum gui_button_behavior behavior)
|
2015-06-03 01:58:57 +03:00
|
|
|
{
|
|
|
|
struct gui_rect bounds;
|
|
|
|
struct gui_button button;
|
|
|
|
if (!gui_panel_button(&button, &bounds, layout))
|
|
|
|
return gui_false;
|
|
|
|
|
|
|
|
button.background = color;
|
|
|
|
button.foreground = color;
|
|
|
|
button.highlight = color;
|
|
|
|
button.highlight_content = color;
|
|
|
|
button.rounding = layout->config->rounding[GUI_ROUNDING_BUTTON];
|
|
|
|
return gui_do_button(layout->buffer, bounds.x, bounds.y, bounds.w, bounds.h,
|
|
|
|
&button, layout->input, behavior);
|
|
|
|
}
|
|
|
|
|
|
|
|
gui_bool
|
|
|
|
gui_panel_button_triangle(struct gui_panel_layout *layout, enum gui_heading heading,
|
|
|
|
enum gui_button_behavior behavior)
|
|
|
|
{
|
|
|
|
struct gui_rect bounds;
|
|
|
|
struct gui_button button;
|
|
|
|
const struct gui_config *config;
|
|
|
|
if (!gui_panel_button(&button, &bounds, layout))
|
|
|
|
return gui_false;
|
|
|
|
|
|
|
|
config = layout->config;
|
|
|
|
button.rounding = config->rounding[GUI_ROUNDING_BUTTON];
|
|
|
|
button.background = config->colors[GUI_COLOR_BUTTON];
|
|
|
|
button.foreground = config->colors[GUI_COLOR_BUTTON_BORDER];
|
|
|
|
button.content = config->colors[GUI_COLOR_TEXT];
|
|
|
|
button.highlight = config->colors[GUI_COLOR_BUTTON_HOVER];
|
|
|
|
button.highlight_content = config->colors[GUI_COLOR_BUTTON_HOVER_FONT];
|
|
|
|
return gui_button_triangle(layout->buffer, bounds.x, bounds.y, bounds.w,
|
|
|
|
bounds.h, heading, behavior, &button, layout->input);
|
|
|
|
}
|
|
|
|
|
|
|
|
gui_bool
|
2015-06-06 21:13:28 +03:00
|
|
|
gui_panel_button_image(struct gui_panel_layout *layout, struct gui_image image,
|
2015-06-03 01:58:57 +03:00
|
|
|
enum gui_button_behavior behavior)
|
|
|
|
{
|
|
|
|
struct gui_rect bounds;
|
|
|
|
struct gui_button button;
|
|
|
|
const struct gui_config *config;
|
|
|
|
if (!gui_panel_button(&button, &bounds, layout))
|
|
|
|
return gui_false;
|
|
|
|
|
|
|
|
config = layout->config;
|
|
|
|
button.rounding = config->rounding[GUI_ROUNDING_BUTTON];
|
|
|
|
button.background = config->colors[GUI_COLOR_BUTTON];
|
|
|
|
button.foreground = config->colors[GUI_COLOR_BUTTON_BORDER];
|
|
|
|
button.content = config->colors[GUI_COLOR_TEXT];
|
|
|
|
button.highlight = config->colors[GUI_COLOR_BUTTON_HOVER];
|
|
|
|
button.highlight_content = config->colors[GUI_COLOR_BUTTON_HOVER_FONT];
|
|
|
|
return gui_button_image(layout->buffer, bounds.x, bounds.y, bounds.w,
|
|
|
|
bounds.h, image, behavior, &button, layout->input);
|
|
|
|
}
|
|
|
|
|
|
|
|
gui_bool
|
|
|
|
gui_panel_button_toggle(struct gui_panel_layout *layout, const char *str, gui_bool value)
|
|
|
|
{
|
|
|
|
struct gui_rect bounds;
|
|
|
|
struct gui_button button;
|
|
|
|
const struct gui_config *config;
|
|
|
|
GUI_ASSERT(str);
|
|
|
|
if (!gui_panel_button(&button, &bounds, layout))
|
|
|
|
return value;
|
|
|
|
|
|
|
|
config = layout->config;
|
|
|
|
button.rounding = config->rounding[GUI_ROUNDING_BUTTON];
|
|
|
|
if (!value) {
|
|
|
|
button.background = config->colors[GUI_COLOR_BUTTON];
|
|
|
|
button.foreground = config->colors[GUI_COLOR_BUTTON_BORDER];
|
|
|
|
button.content = config->colors[GUI_COLOR_TEXT];
|
|
|
|
button.highlight = config->colors[GUI_COLOR_BUTTON_HOVER];
|
|
|
|
button.highlight_content = config->colors[GUI_COLOR_BUTTON];
|
|
|
|
} else {
|
|
|
|
button.background = config->colors[GUI_COLOR_BUTTON_TOGGLE];
|
|
|
|
button.foreground = config->colors[GUI_COLOR_BUTTON_BORDER];
|
|
|
|
button.content = config->colors[GUI_COLOR_TEXT];
|
|
|
|
button.highlight = config->colors[GUI_COLOR_BUTTON_HOVER];
|
|
|
|
button.highlight_content = config->colors[GUI_COLOR_BUTTON];
|
|
|
|
}
|
|
|
|
if (gui_button_text(layout->buffer, bounds.x, bounds.y, bounds.w, bounds.h,
|
|
|
|
str, GUI_BUTTON_DEFAULT, &button, layout->input, &config->font)) value = !value;
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
2015-06-06 21:13:28 +03:00
|
|
|
gui_bool
|
|
|
|
gui_panel_button_text_triangle(struct gui_panel_layout *layout, enum gui_heading heading,
|
|
|
|
const char *text, enum gui_text_align align, enum gui_button_behavior behavior)
|
|
|
|
{
|
|
|
|
struct gui_rect bounds;
|
|
|
|
struct gui_button button;
|
|
|
|
const struct gui_config *config;
|
|
|
|
if (!gui_panel_button(&button, &bounds, layout))
|
|
|
|
return gui_false;
|
|
|
|
|
|
|
|
config = layout->config;
|
|
|
|
button.rounding = config->rounding[GUI_ROUNDING_BUTTON];
|
|
|
|
button.background = config->colors[GUI_COLOR_BUTTON];
|
|
|
|
button.foreground = config->colors[GUI_COLOR_BUTTON_BORDER];
|
|
|
|
button.content = config->colors[GUI_COLOR_TEXT];
|
|
|
|
button.highlight = config->colors[GUI_COLOR_BUTTON_HOVER];
|
|
|
|
button.highlight_content = config->colors[GUI_COLOR_BUTTON_HOVER_FONT];
|
|
|
|
return gui_button_text_triangle(layout->buffer, bounds.x, bounds.y, bounds.w,
|
|
|
|
bounds.h, heading, text, align, behavior, &button, &config->font, layout->input);
|
|
|
|
}
|
|
|
|
|
2015-06-03 01:58:57 +03:00
|
|
|
static gui_bool
|
|
|
|
gui_panel_toggle_base(struct gui_toggle *toggle, struct gui_rect *bounds,
|
|
|
|
struct gui_panel_layout *layout)
|
|
|
|
{
|
|
|
|
const struct gui_config *config;
|
|
|
|
struct gui_vec2 item_padding;
|
|
|
|
if (!gui_panel_widget(bounds, layout))
|
|
|
|
return gui_false;
|
|
|
|
|
|
|
|
config = layout->config;
|
|
|
|
item_padding = gui_config_property(config, GUI_PROPERTY_ITEM_PADDING);
|
|
|
|
toggle->rounding = 0;
|
|
|
|
toggle->padding.x = item_padding.x;
|
|
|
|
toggle->padding.y = item_padding.y;
|
|
|
|
toggle->font = config->colors[GUI_COLOR_TEXT];
|
|
|
|
return gui_true;
|
|
|
|
}
|
|
|
|
|
|
|
|
gui_bool
|
|
|
|
gui_panel_check(struct gui_panel_layout *layout, const char *text, gui_bool is_active)
|
|
|
|
{
|
|
|
|
struct gui_rect bounds;
|
|
|
|
struct gui_toggle toggle;
|
|
|
|
const struct gui_config *config;
|
|
|
|
if (!text || !gui_panel_toggle_base(&toggle, &bounds, layout))
|
|
|
|
return is_active;
|
|
|
|
|
|
|
|
config = layout->config;
|
|
|
|
toggle.rounding = config->rounding[GUI_ROUNDING_CHECK];
|
|
|
|
toggle.cursor = config->colors[GUI_COLOR_CHECK_ACTIVE];
|
|
|
|
toggle.background = config->colors[GUI_COLOR_CHECK_BACKGROUND];
|
|
|
|
toggle.foreground = config->colors[GUI_COLOR_CHECK];
|
|
|
|
return gui_toggle(layout->buffer, bounds.x, bounds.y, bounds.w, bounds.h,
|
|
|
|
is_active, text, GUI_TOGGLE_CHECK, &toggle, layout->input, &config->font);
|
|
|
|
}
|
|
|
|
|
|
|
|
gui_bool
|
|
|
|
gui_panel_option(struct gui_panel_layout *layout, const char *text, gui_bool is_active)
|
|
|
|
{
|
|
|
|
struct gui_rect bounds;
|
|
|
|
struct gui_toggle toggle;
|
|
|
|
const struct gui_config *config;
|
|
|
|
if (!text || !gui_panel_toggle_base(&toggle, &bounds, layout))
|
|
|
|
return is_active;
|
|
|
|
|
|
|
|
config = layout->config;
|
|
|
|
toggle.cursor = config->colors[GUI_COLOR_OPTION_ACTIVE];
|
|
|
|
toggle.background = config->colors[GUI_COLOR_OPTION_BACKGROUND];
|
|
|
|
toggle.foreground = config->colors[GUI_COLOR_OPTION];
|
|
|
|
return gui_toggle(layout->buffer, bounds.x, bounds.y, bounds.w, bounds.h,
|
|
|
|
is_active, text, GUI_TOGGLE_OPTION, &toggle, layout->input, &config->font);
|
|
|
|
}
|
|
|
|
|
|
|
|
gui_size
|
|
|
|
gui_panel_option_group(struct gui_panel_layout *layout, const char **options,
|
|
|
|
gui_size count, gui_size current)
|
|
|
|
{
|
|
|
|
gui_size i;
|
|
|
|
GUI_ASSERT(layout && options && count);
|
|
|
|
if (!layout || !options || !count) return current;
|
|
|
|
for (i = 0; i < count; ++i) {
|
|
|
|
if (gui_panel_option(layout, options[i], i == current))
|
|
|
|
current = i;
|
|
|
|
}
|
|
|
|
return current;
|
|
|
|
}
|
|
|
|
|
|
|
|
gui_float
|
|
|
|
gui_panel_slider(struct gui_panel_layout *layout, gui_float min_value, gui_float value,
|
|
|
|
gui_float max_value, gui_float value_step)
|
|
|
|
{
|
|
|
|
struct gui_rect bounds;
|
|
|
|
struct gui_slider slider;
|
|
|
|
const struct gui_config *config;
|
|
|
|
struct gui_vec2 item_padding;
|
|
|
|
if (!gui_panel_widget(&bounds, layout))
|
|
|
|
return value;
|
|
|
|
|
|
|
|
config = layout->config;
|
|
|
|
item_padding = gui_config_property(config, GUI_PROPERTY_ITEM_PADDING);
|
|
|
|
slider.cursor = config->slider_cursor;
|
|
|
|
slider.padding.x = item_padding.x;
|
|
|
|
slider.padding.y = item_padding.y;
|
|
|
|
slider.bg = config->colors[GUI_COLOR_SLIDER];
|
|
|
|
slider.fg = config->colors[GUI_COLOR_SLIDER_CURSOR];
|
|
|
|
slider.bar = config->colors[GUI_COLOR_SLIDER_BAR];
|
|
|
|
slider.border = config->colors[GUI_COLOR_SLIDER_BORDER];
|
|
|
|
return gui_slider(layout->buffer, bounds.x, bounds.y, bounds.w, bounds.h,
|
|
|
|
min_value, value, max_value, value_step, &slider, layout->input);
|
|
|
|
}
|
|
|
|
|
|
|
|
gui_size
|
|
|
|
gui_panel_progress(struct gui_panel_layout *layout, gui_size cur_value, gui_size max_value,
|
|
|
|
gui_bool is_modifyable)
|
|
|
|
{
|
|
|
|
struct gui_rect bounds;
|
|
|
|
struct gui_progress prog;
|
|
|
|
const struct gui_config *config;
|
|
|
|
struct gui_vec2 item_padding;
|
|
|
|
if (!gui_panel_widget(&bounds, layout))
|
|
|
|
return cur_value;
|
|
|
|
|
|
|
|
config = layout->config;
|
|
|
|
item_padding = gui_config_property(config, GUI_PROPERTY_ITEM_PADDING);
|
|
|
|
prog.rounding = config->rounding[GUI_ROUNDING_PROGRESS];
|
|
|
|
prog.padding.x = item_padding.x;
|
|
|
|
prog.padding.y = item_padding.y;
|
|
|
|
prog.background = config->colors[GUI_COLOR_PROGRESS];
|
|
|
|
prog.foreground = config->colors[GUI_COLOR_PROGRESS_CURSOR];
|
|
|
|
return gui_progress(layout->buffer, bounds.x, bounds.y, bounds.w, bounds.h,
|
|
|
|
cur_value, max_value, is_modifyable, &prog, layout->input);
|
|
|
|
}
|
|
|
|
|
|
|
|
static gui_bool
|
|
|
|
gui_panel_edit_base(struct gui_rect *bounds, struct gui_edit *field,
|
|
|
|
struct gui_panel_layout *layout)
|
|
|
|
{
|
|
|
|
const struct gui_config *config;
|
|
|
|
struct gui_vec2 item_padding;
|
|
|
|
if (!gui_panel_widget(bounds, layout))
|
|
|
|
return gui_false;
|
|
|
|
|
|
|
|
config = layout->config;
|
|
|
|
item_padding = gui_config_property(config, GUI_PROPERTY_ITEM_PADDING);
|
|
|
|
field->border_size = 1;
|
|
|
|
field->rounding = config->rounding[GUI_ROUNDING_INPUT];
|
|
|
|
field->padding.x = item_padding.x;
|
|
|
|
field->padding.y = item_padding.y;
|
|
|
|
field->show_cursor = gui_true;
|
|
|
|
field->background = config->colors[GUI_COLOR_INPUT];
|
|
|
|
field->border = config->colors[GUI_COLOR_INPUT_BORDER];
|
|
|
|
field->cursor = config->colors[GUI_COLOR_INPUT_CURSOR];
|
|
|
|
field->text = config->colors[GUI_COLOR_INPUT_TEXT];
|
|
|
|
return gui_true;
|
|
|
|
}
|
|
|
|
|
|
|
|
gui_size
|
|
|
|
gui_panel_edit(struct gui_panel_layout *layout, gui_char *buffer, gui_size len,
|
|
|
|
gui_size max, gui_bool *active, enum gui_input_filter filter)
|
|
|
|
{
|
|
|
|
struct gui_rect bounds;
|
|
|
|
struct gui_edit field;
|
|
|
|
const struct gui_config *config = layout->config;
|
|
|
|
if (!gui_panel_edit_base(&bounds, &field, layout)) return len;
|
|
|
|
return gui_edit(layout->buffer, bounds.x, bounds.y, bounds.w, bounds.h,
|
|
|
|
buffer, len, max, active, &field, filter, layout->input, &config->font);
|
|
|
|
}
|
|
|
|
|
|
|
|
gui_size
|
|
|
|
gui_panel_edit_filtered(struct gui_panel_layout *layout, gui_char *buffer, gui_size len,
|
|
|
|
gui_size max, gui_bool *active, gui_filter filter)
|
|
|
|
{
|
|
|
|
struct gui_rect bounds;
|
|
|
|
struct gui_edit field;
|
|
|
|
const struct gui_config *config = layout->config;
|
|
|
|
if (!gui_panel_edit_base(&bounds, &field, layout)) return len;
|
|
|
|
return gui_edit_filtered(layout->buffer, bounds.x, bounds.y, bounds.w, bounds.h,
|
|
|
|
buffer, len, max, active, &field, filter, layout->input, &config->font);
|
|
|
|
}
|
|
|
|
|
|
|
|
gui_int
|
|
|
|
gui_panel_spinner(struct gui_panel_layout *layout, gui_int min, gui_int value,
|
|
|
|
gui_int max, gui_int step, gui_bool *active)
|
|
|
|
{
|
|
|
|
struct gui_rect bounds;
|
|
|
|
struct gui_spinner spinner;
|
|
|
|
const struct gui_config *config;
|
|
|
|
struct gui_command_buffer *out;
|
|
|
|
struct gui_vec2 item_padding;
|
|
|
|
|
|
|
|
if (!gui_panel_widget(&bounds, layout))
|
|
|
|
return value;
|
|
|
|
|
|
|
|
config = layout->config;
|
|
|
|
out = layout->buffer;
|
|
|
|
item_padding = gui_config_property(config, GUI_PROPERTY_ITEM_PADDING);
|
|
|
|
|
|
|
|
spinner.border_button = 1;
|
|
|
|
spinner.button_color = config->colors[GUI_COLOR_BUTTON];
|
|
|
|
spinner.button_border = config->colors[GUI_COLOR_BUTTON_BORDER];
|
|
|
|
spinner.button_triangle = config->colors[GUI_COLOR_SPINNER_TRIANGLE];
|
|
|
|
spinner.padding.x = item_padding.x;
|
|
|
|
spinner.padding.y = item_padding.y;
|
|
|
|
spinner.color = config->colors[GUI_COLOR_SPINNER];
|
|
|
|
spinner.border = config->colors[GUI_COLOR_SPINNER_BORDER];
|
|
|
|
spinner.text = config->colors[GUI_COLOR_SPINNER_TEXT];
|
|
|
|
spinner.show_cursor = gui_false;
|
|
|
|
return gui_spinner(out, bounds.x, bounds.y, bounds.w, bounds.h, &spinner,
|
|
|
|
min, value, max, step, active, layout->input, &layout->config->font);
|
|
|
|
}
|
|
|
|
|
|
|
|
gui_size
|
|
|
|
gui_panel_selector(struct gui_panel_layout *layout, const char *items[],
|
|
|
|
gui_size item_count, gui_size item_current)
|
|
|
|
{
|
|
|
|
struct gui_rect bounds;
|
|
|
|
struct gui_selector selector;
|
|
|
|
const struct gui_config *config;
|
|
|
|
struct gui_command_buffer *out;
|
|
|
|
|
|
|
|
GUI_ASSERT(items);
|
|
|
|
GUI_ASSERT(item_count);
|
|
|
|
GUI_ASSERT(item_current < item_count);
|
|
|
|
if (!gui_panel_widget(&bounds, layout))
|
|
|
|
return item_current;
|
|
|
|
|
|
|
|
out = layout->buffer;
|
|
|
|
config = layout->config;
|
|
|
|
|
|
|
|
selector.border_button = 1;
|
|
|
|
selector.button_color = config->colors[GUI_COLOR_BUTTON];
|
|
|
|
selector.button_border = config->colors[GUI_COLOR_BUTTON_BORDER];
|
|
|
|
selector.button_triangle = config->colors[GUI_COLOR_SELECTOR_TRIANGLE];
|
|
|
|
selector.color = config->colors[GUI_COLOR_SELECTOR];
|
|
|
|
selector.border = config->colors[GUI_COLOR_SELECTOR_BORDER];
|
|
|
|
selector.text = config->colors[GUI_COLOR_TEXT];
|
|
|
|
selector.text_bg = config->colors[GUI_COLOR_PANEL];
|
|
|
|
selector.padding = gui_config_property(config, GUI_PROPERTY_ITEM_PADDING);
|
|
|
|
return gui_selector(out, bounds.x, bounds.y, bounds.w, bounds.h, &selector,
|
|
|
|
items, item_count, item_current, layout->input, &layout->config->font);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gui_panel_graph_begin(struct gui_panel_layout *layout, struct gui_graph *graph,
|
|
|
|
enum gui_graph_type type, gui_size count, gui_float min_value, gui_float max_value)
|
|
|
|
{
|
2015-06-04 23:17:54 +03:00
|
|
|
struct gui_rect bounds = {0, 0, 0, 0};
|
2015-06-03 01:58:57 +03:00
|
|
|
const struct gui_config *config;
|
|
|
|
struct gui_command_buffer *out;
|
|
|
|
struct gui_color color;
|
|
|
|
struct gui_vec2 item_padding;
|
|
|
|
if (!gui_panel_widget(&bounds, layout)) {
|
|
|
|
gui_zero(graph, sizeof(*graph));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
config = layout->config;
|
|
|
|
out = layout->buffer;
|
|
|
|
item_padding = gui_config_property(config, GUI_PROPERTY_ITEM_PADDING);
|
|
|
|
color = (type == GUI_GRAPH_LINES) ?
|
|
|
|
config->colors[GUI_COLOR_PLOT]: config->colors[GUI_COLOR_HISTO];
|
|
|
|
gui_command_buffer_push_rect(out, bounds.x, bounds.y, bounds.w, bounds.h,
|
|
|
|
config->rounding[GUI_ROUNDING_GRAPH], color);
|
|
|
|
|
|
|
|
graph->valid = gui_true;
|
|
|
|
graph->type = type;
|
|
|
|
graph->index = 0;
|
|
|
|
graph->count = count;
|
|
|
|
graph->min = min_value;
|
|
|
|
graph->max = max_value;
|
|
|
|
graph->x = bounds.x + item_padding.x;
|
|
|
|
graph->y = bounds.y + item_padding.y;
|
|
|
|
graph->w = bounds.w - 2 * item_padding.x;
|
|
|
|
graph->h = bounds.h - 2 * item_padding.y;
|
|
|
|
graph->w = MAX(graph->w, 2 * item_padding.x);
|
|
|
|
graph->h = MAX(graph->h, 2 * item_padding.y);
|
|
|
|
graph->last.x = 0; graph->last.y = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gui_bool
|
|
|
|
gui_panel_graph_push_line(struct gui_panel_layout *l,
|
|
|
|
struct gui_graph *g, gui_float value)
|
|
|
|
{
|
|
|
|
struct gui_command_buffer *out = l->buffer;
|
|
|
|
const struct gui_config *config = l->config;
|
|
|
|
const struct gui_input *i = l->input;
|
|
|
|
struct gui_color color = config->colors[GUI_COLOR_PLOT_LINES];
|
|
|
|
gui_bool selected = gui_false;
|
|
|
|
gui_float step, range, ratio;
|
|
|
|
struct gui_vec2 cur;
|
|
|
|
|
|
|
|
GUI_ASSERT(g);
|
|
|
|
GUI_ASSERT(l);
|
|
|
|
GUI_ASSERT(out);
|
|
|
|
if (!g || !l || !g->valid || g->index >= g->count)
|
|
|
|
return gui_false;
|
|
|
|
|
|
|
|
step = g->w / (gui_float)g->count;
|
|
|
|
range = g->max - g->min;
|
|
|
|
ratio = (value - g->min) / range;
|
|
|
|
|
|
|
|
if (g->index == 0) {
|
|
|
|
g->last.x = g->x;
|
|
|
|
g->last.y = (g->y + g->h) - ratio * (gui_float)g->h;
|
|
|
|
if (i && GUI_INBOX(i->mouse_pos.x, i->mouse_pos.y, g->last.x-3, g->last.y-3, 6, 6)){
|
|
|
|
selected = (i->mouse_down && i->mouse_clicked) ? gui_true: gui_false;
|
|
|
|
color = config->colors[GUI_COLOR_PLOT_HIGHLIGHT];
|
|
|
|
}
|
|
|
|
gui_command_buffer_push_rect(out, g->last.x - 3, g->last.y - 3, 6, 6, 0, color);
|
|
|
|
g->index++;
|
|
|
|
return selected;
|
|
|
|
}
|
|
|
|
|
|
|
|
cur.x = g->x + (gui_float)(step * (gui_float)g->index);
|
|
|
|
cur.y = (g->y + g->h) - (ratio * (gui_float)g->h);
|
|
|
|
gui_command_buffer_push_line(out, g->last.x, g->last.y, cur.x, cur.y,
|
|
|
|
config->colors[GUI_COLOR_PLOT_LINES]);
|
|
|
|
|
|
|
|
if (i && GUI_INBOX(i->mouse_pos.x, i->mouse_pos.y, cur.x-3, cur.y-3, 6, 6)) {
|
|
|
|
selected = (i->mouse_down && i->mouse_clicked) ? gui_true: gui_false;
|
|
|
|
color = config->colors[GUI_COLOR_PLOT_HIGHLIGHT];
|
|
|
|
} else color = config->colors[GUI_COLOR_PLOT_LINES];
|
|
|
|
gui_command_buffer_push_rect(out, cur.x - 3, cur.y - 3, 6, 6, 0, color);
|
|
|
|
|
|
|
|
g->last.x = cur.x;
|
|
|
|
g->last.y = cur.y;
|
|
|
|
g->index++;
|
|
|
|
return selected;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gui_bool
|
|
|
|
gui_panel_graph_push_column(struct gui_panel_layout *layout,
|
|
|
|
struct gui_graph *graph, gui_float value)
|
|
|
|
{
|
|
|
|
struct gui_command_buffer *out = layout->buffer;
|
|
|
|
const struct gui_config *config = layout->config;
|
|
|
|
const struct gui_input *in = layout->input;
|
|
|
|
struct gui_vec2 item_padding;
|
|
|
|
struct gui_color color;
|
|
|
|
|
|
|
|
gui_float ratio;
|
|
|
|
gui_bool selected = gui_false;
|
|
|
|
gui_float item_x, item_y;
|
|
|
|
gui_float item_w = 0.0f, item_h = 0.0f;
|
|
|
|
item_padding = gui_config_property(config, GUI_PROPERTY_ITEM_PADDING);
|
|
|
|
|
|
|
|
if (!graph->valid || graph->index >= graph->count)
|
|
|
|
return gui_false;
|
|
|
|
if (graph->count) {
|
|
|
|
gui_float padding = (gui_float)(graph->count-1) * item_padding.x;
|
|
|
|
item_w = (graph->w - padding) / (gui_float)(graph->count);
|
|
|
|
}
|
|
|
|
|
|
|
|
ratio = GUI_ABS(value) / graph->max;
|
|
|
|
color = (value < 0) ? config->colors[GUI_COLOR_HISTO_NEGATIVE]:
|
|
|
|
config->colors[GUI_COLOR_HISTO_BARS];
|
|
|
|
|
|
|
|
item_h = graph->h * ratio;
|
|
|
|
item_y = (graph->y + graph->h) - item_h;
|
|
|
|
item_x = graph->x + ((gui_float)graph->index * item_w);
|
|
|
|
item_x = item_x + ((gui_float)graph->index * item_padding.x);
|
|
|
|
|
|
|
|
if (in && GUI_INBOX(in->mouse_pos.x, in->mouse_pos.y, item_x, item_y, item_w, item_h)) {
|
|
|
|
selected = (in->mouse_down && in->mouse_clicked) ? (gui_int)graph->index: selected;
|
|
|
|
color = config->colors[GUI_COLOR_HISTO_HIGHLIGHT];
|
|
|
|
}
|
|
|
|
gui_command_buffer_push_rect(out, item_x, item_y, item_w, item_h, 0, color);
|
|
|
|
graph->index++;
|
|
|
|
return selected;
|
|
|
|
}
|
|
|
|
|
|
|
|
gui_bool
|
|
|
|
gui_panel_graph_push(struct gui_panel_layout *layout, struct gui_graph *graph,
|
|
|
|
gui_float value)
|
|
|
|
{
|
|
|
|
GUI_ASSERT(layout);
|
|
|
|
GUI_ASSERT(graph);
|
|
|
|
if (!layout || !graph || !layout->valid) return gui_false;
|
|
|
|
switch (graph->type) {
|
|
|
|
case GUI_GRAPH_LINES:
|
|
|
|
return gui_panel_graph_push_line(layout, graph, value);
|
|
|
|
case GUI_GRAPH_COLUMN:
|
|
|
|
return gui_panel_graph_push_column(layout, graph, value);
|
|
|
|
case GUI_GRAPH_MAX:
|
|
|
|
default: return gui_false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gui_panel_graph_end(struct gui_panel_layout *layout, struct gui_graph *graph)
|
|
|
|
{
|
|
|
|
GUI_ASSERT(layout);
|
|
|
|
GUI_ASSERT(graph);
|
|
|
|
if (!layout || !graph) return;
|
|
|
|
graph->type = GUI_GRAPH_MAX;
|
|
|
|
graph->index = 0;
|
|
|
|
graph->count = 0;
|
|
|
|
graph->min = 0;
|
|
|
|
graph->max = 0;
|
|
|
|
graph->x = 0;
|
|
|
|
graph->y = 0;
|
|
|
|
graph->w = 0;
|
|
|
|
graph->h = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
gui_int
|
|
|
|
gui_panel_graph(struct gui_panel_layout *layout, enum gui_graph_type type,
|
|
|
|
const gui_float *values, gui_size count, gui_size offset)
|
|
|
|
{
|
|
|
|
gui_size i;
|
|
|
|
gui_int index = -1;
|
|
|
|
gui_float min_value;
|
|
|
|
gui_float max_value;
|
|
|
|
struct gui_graph graph;
|
|
|
|
|
|
|
|
GUI_ASSERT(layout);
|
|
|
|
GUI_ASSERT(values);
|
|
|
|
GUI_ASSERT(count);
|
|
|
|
if (!layout || !layout->valid || !values || !count)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
max_value = values[0];
|
|
|
|
min_value = values[0];
|
|
|
|
for (i = offset; i < count; ++i) {
|
|
|
|
if (values[i] > max_value)
|
|
|
|
max_value = values[i];
|
|
|
|
if (values[i] < min_value)
|
|
|
|
min_value = values[i];
|
|
|
|
}
|
|
|
|
|
|
|
|
gui_panel_graph_begin(layout, &graph, type, count, min_value, max_value);
|
|
|
|
for (i = offset; i < count; ++i) {
|
|
|
|
if (gui_panel_graph_push(layout, &graph, values[i]))
|
|
|
|
index = (gui_int)i;
|
|
|
|
}
|
|
|
|
gui_panel_graph_end(layout, &graph);
|
|
|
|
return index;
|
|
|
|
}
|
|
|
|
|
|
|
|
gui_int
|
|
|
|
gui_panel_graph_ex(struct gui_panel_layout *layout, enum gui_graph_type type,
|
|
|
|
gui_size count, gui_float(*get_value)(void*, gui_size), void *userdata)
|
|
|
|
{
|
|
|
|
gui_size i;
|
|
|
|
gui_int index = -1;
|
|
|
|
gui_float min_value;
|
|
|
|
gui_float max_value;
|
|
|
|
struct gui_graph graph;
|
|
|
|
|
|
|
|
GUI_ASSERT(layout);
|
|
|
|
GUI_ASSERT(get_value);
|
|
|
|
GUI_ASSERT(count);
|
|
|
|
if (!layout || !layout->valid || !get_value || !count)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
max_value = get_value(userdata, 0);
|
|
|
|
min_value = max_value;
|
|
|
|
for (i = 1; i < count; ++i) {
|
|
|
|
gui_float value = get_value(userdata, i);
|
|
|
|
if (value > max_value)
|
|
|
|
max_value = value;
|
|
|
|
if (value < min_value)
|
|
|
|
min_value = value;
|
|
|
|
}
|
|
|
|
|
|
|
|
gui_panel_graph_begin(layout, &graph, type, count, min_value, max_value);
|
|
|
|
for (i = 0; i < count; ++i) {
|
|
|
|
gui_float value = get_value(userdata, i);
|
|
|
|
if (gui_panel_graph_push(layout, &graph, value))
|
|
|
|
index = (gui_int)i;
|
|
|
|
}
|
|
|
|
gui_panel_graph_end(layout, &graph);
|
|
|
|
return index;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gui_panel_table_hline(struct gui_panel_layout *l, gui_size row_height)
|
|
|
|
{
|
|
|
|
struct gui_command_buffer *out = l->buffer;
|
|
|
|
const struct gui_config *c = l->config;
|
|
|
|
const struct gui_vec2 item_padding = gui_config_property(c, GUI_PROPERTY_ITEM_PADDING);
|
|
|
|
const struct gui_vec2 item_spacing = gui_config_property(c, GUI_PROPERTY_ITEM_SPACING);
|
|
|
|
|
|
|
|
gui_float y = l->at_y + (gui_float)row_height - l->offset;
|
|
|
|
gui_float x = l->at_x + item_spacing.x + item_padding.x;
|
|
|
|
gui_float w = l->width - (2 * item_spacing.x + 2 * item_padding.x);
|
|
|
|
gui_command_buffer_push_line(out, x, y, x + w, y, c->colors[GUI_COLOR_TABLE_LINES]);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gui_panel_table_vline(struct gui_panel_layout *layout, gui_size cols)
|
|
|
|
{
|
|
|
|
gui_size i;
|
|
|
|
struct gui_command_buffer *out = layout->buffer;
|
|
|
|
const struct gui_config *config = layout->config;
|
|
|
|
for (i = 0; i < cols - 1; ++i) {
|
|
|
|
gui_float y, h;
|
|
|
|
struct gui_rect bounds;
|
|
|
|
|
|
|
|
gui_panel_alloc_space(&bounds, layout);
|
2015-06-09 18:05:05 +03:00
|
|
|
y = layout->at_y + layout->row.height;
|
|
|
|
h = layout->row.height;
|
2015-06-03 01:58:57 +03:00
|
|
|
gui_command_buffer_push_line(out, bounds.x + bounds.w, y,
|
|
|
|
bounds.x + bounds.w, h, config->colors[GUI_COLOR_TABLE_LINES]);
|
|
|
|
}
|
|
|
|
layout->index -= i;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gui_panel_table_begin(struct gui_panel_layout *layout, gui_flags flags,
|
|
|
|
gui_size row_height, gui_size cols)
|
|
|
|
{
|
|
|
|
GUI_ASSERT(layout);
|
|
|
|
if (!layout || !layout->valid) return;
|
|
|
|
|
|
|
|
layout->is_table = gui_true;
|
|
|
|
layout->tbl_flags = flags;
|
|
|
|
gui_panel_row(layout, (gui_float)row_height, cols);
|
|
|
|
if (layout->tbl_flags & GUI_TABLE_HHEADER)
|
|
|
|
gui_panel_table_hline(layout, row_height);
|
|
|
|
if (layout->tbl_flags & GUI_TABLE_VHEADER)
|
|
|
|
gui_panel_table_vline(layout, cols);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gui_panel_table_row(struct gui_panel_layout *layout)
|
|
|
|
{
|
|
|
|
const struct gui_config *config;
|
|
|
|
struct gui_vec2 item_spacing;
|
|
|
|
GUI_ASSERT(layout);
|
|
|
|
if (!layout) return;
|
|
|
|
|
|
|
|
config = layout->config;
|
|
|
|
item_spacing = gui_config_property(config, GUI_PROPERTY_ITEM_SPACING);
|
2015-06-09 18:05:05 +03:00
|
|
|
gui_panel_row(layout, layout->row.height - item_spacing.y, layout->row.columns);
|
2015-06-03 01:58:57 +03:00
|
|
|
if (layout->tbl_flags & GUI_TABLE_HBODY)
|
2015-06-09 18:05:05 +03:00
|
|
|
gui_panel_table_hline(layout, (gui_size)(layout->row.height - item_spacing.y));
|
2015-06-03 01:58:57 +03:00
|
|
|
if (layout->tbl_flags & GUI_TABLE_VBODY)
|
2015-06-09 18:05:05 +03:00
|
|
|
gui_panel_table_vline(layout, layout->row.columns);
|
2015-06-03 01:58:57 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gui_panel_table_end(struct gui_panel_layout *layout)
|
|
|
|
{
|
|
|
|
layout->is_table = gui_false;
|
|
|
|
}
|
|
|
|
|
|
|
|
gui_bool
|
|
|
|
gui_panel_tab_begin(struct gui_panel_layout *parent, struct gui_panel_layout *tab,
|
|
|
|
const char *title, gui_bool minimized)
|
|
|
|
{
|
|
|
|
struct gui_rect bounds;
|
|
|
|
struct gui_command_buffer *out;
|
|
|
|
struct gui_panel panel;
|
|
|
|
struct gui_rect clip;
|
|
|
|
gui_flags flags;
|
|
|
|
|
|
|
|
GUI_ASSERT(parent);
|
|
|
|
GUI_ASSERT(tab);
|
|
|
|
if (!parent || !tab) return gui_true;
|
|
|
|
out = parent->buffer;
|
|
|
|
gui_zero(tab, sizeof(*tab));
|
|
|
|
tab->valid = !minimized;
|
2015-06-10 12:25:35 +03:00
|
|
|
|
2015-06-03 01:58:57 +03:00
|
|
|
if (!parent->valid) {
|
|
|
|
tab->valid = gui_false;
|
|
|
|
tab->config = parent->config;
|
|
|
|
tab->buffer = parent->buffer;
|
|
|
|
tab->input = parent->input;
|
|
|
|
return minimized;
|
|
|
|
}
|
|
|
|
|
|
|
|
parent->index = 0;
|
|
|
|
gui_panel_row(parent, 0, 1);
|
|
|
|
gui_panel_alloc_space(&bounds, parent);
|
|
|
|
|
|
|
|
flags = GUI_PANEL_BORDER|GUI_PANEL_MINIMIZABLE|GUI_PANEL_TAB|GUI_PANEL_BORDER_HEADER;
|
|
|
|
gui_panel_init(&panel,bounds.x,bounds.y,bounds.w,gui_null_rect.h,flags,out,parent->config);
|
|
|
|
panel.minimized = minimized;
|
|
|
|
|
|
|
|
gui_panel_begin(tab, &panel, title, parent->input);
|
|
|
|
gui_unify(&clip, &parent->clip, tab->clip.x, tab->clip.y, tab->clip.x + tab->clip.w,
|
|
|
|
tab->clip.y + tab->clip.h);
|
|
|
|
gui_command_buffer_push_scissor(out, clip.x, clip.y, clip.w, clip.h);
|
|
|
|
return panel.minimized;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gui_panel_tab_end(struct gui_panel_layout *p, struct gui_panel_layout *t)
|
|
|
|
{
|
|
|
|
struct gui_panel panel;
|
|
|
|
struct gui_command_buffer *out;
|
|
|
|
struct gui_vec2 item_spacing;
|
2015-06-08 11:55:35 +03:00
|
|
|
struct gui_vec2 panel_padding;
|
2015-06-03 01:58:57 +03:00
|
|
|
GUI_ASSERT(t);
|
|
|
|
GUI_ASSERT(p);
|
|
|
|
if (!p || !t || !p->valid)
|
|
|
|
return;
|
|
|
|
|
|
|
|
panel.x = t->at_x;
|
|
|
|
panel.y = t->y;
|
|
|
|
panel.flags = GUI_PANEL_BORDER|GUI_PANEL_MINIMIZABLE|GUI_PANEL_TAB;
|
|
|
|
gui_panel_end(t, &panel);
|
|
|
|
|
|
|
|
item_spacing = gui_config_property(p->config, GUI_PROPERTY_ITEM_SPACING);
|
2015-06-08 11:55:35 +03:00
|
|
|
panel_padding = gui_config_property(p->config, GUI_PROPERTY_PADDING);
|
|
|
|
if (t->valid)
|
|
|
|
p->at_y += t->height + 2 * item_spacing.y;
|
|
|
|
else
|
|
|
|
p->at_y += t->height - panel_padding.x + 2 * item_spacing.y;
|
2015-06-03 01:58:57 +03:00
|
|
|
out = p->buffer;
|
|
|
|
gui_command_buffer_push_scissor(out, p->clip.x, p->clip.y, p->clip.w, p->clip.h);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gui_panel_group_begin(struct gui_panel_layout *p, struct gui_panel_layout *g,
|
|
|
|
const char *title, gui_float offset)
|
|
|
|
{
|
|
|
|
gui_flags flags;
|
|
|
|
struct gui_rect bounds;
|
|
|
|
struct gui_command_buffer *out;
|
|
|
|
struct gui_rect clip;
|
|
|
|
struct gui_panel panel;
|
|
|
|
const struct gui_rect *c;
|
|
|
|
|
|
|
|
GUI_ASSERT(p);
|
|
|
|
GUI_ASSERT(g);
|
|
|
|
if (!p || !g) return;
|
|
|
|
if (!p->valid)
|
|
|
|
goto failed;
|
|
|
|
|
|
|
|
gui_panel_alloc_space(&bounds, p);
|
|
|
|
gui_zero(g, sizeof(*g));
|
|
|
|
c = &p->clip;
|
|
|
|
if (!GUI_INTERSECT(c->x, c->y, c->w, c->h, bounds.x, bounds.y, bounds.w, bounds.h))
|
|
|
|
goto failed;
|
|
|
|
|
|
|
|
out = p->buffer;
|
|
|
|
flags = GUI_PANEL_BORDER|GUI_PANEL_SCROLLBAR|GUI_PANEL_TAB;
|
|
|
|
gui_panel_init(&panel, bounds.x,bounds.y,bounds.w,bounds.h,flags, out, p->config);
|
|
|
|
|
|
|
|
gui_panel_begin(g, &panel, title, p->input);
|
|
|
|
g->offset = offset;
|
2015-06-04 23:17:54 +03:00
|
|
|
gui_unify(&clip, &p->clip, g->clip.x, g->clip.y, g->clip.x + g->clip.w,
|
2015-06-03 01:58:57 +03:00
|
|
|
g->clip.y + g->clip.h);
|
|
|
|
gui_command_buffer_push_scissor(out, clip.x, clip.y, clip.w, clip.h);
|
|
|
|
return;
|
|
|
|
|
|
|
|
failed:
|
|
|
|
g->valid = gui_false;
|
|
|
|
g->config = p->config;
|
|
|
|
g->buffer = p->buffer;
|
|
|
|
g->input = p->input;
|
|
|
|
}
|
|
|
|
|
|
|
|
gui_float
|
|
|
|
gui_panel_group_end(struct gui_panel_layout *p, struct gui_panel_layout *g)
|
|
|
|
{
|
2015-06-10 16:09:10 +03:00
|
|
|
struct gui_panel pan;
|
2015-06-03 01:58:57 +03:00
|
|
|
struct gui_command_buffer *out;
|
|
|
|
struct gui_rect clip;
|
|
|
|
|
|
|
|
GUI_ASSERT(p);
|
|
|
|
GUI_ASSERT(g);
|
|
|
|
if (!p || !g) return 0;
|
|
|
|
if (!p->valid) return 0;
|
2015-06-10 16:09:10 +03:00
|
|
|
gui_zero(&pan, sizeof(pan));
|
2015-06-03 01:58:57 +03:00
|
|
|
|
|
|
|
out = p->buffer;
|
|
|
|
pan.x = g->at_x;
|
|
|
|
pan.y = g->y;
|
|
|
|
pan.flags = GUI_PANEL_BORDER|GUI_PANEL_MINIMIZABLE|GUI_PANEL_TAB|GUI_PANEL_SCROLLBAR;
|
|
|
|
|
|
|
|
gui_unify(&clip, &p->clip, g->clip.x, g->clip.y, g->x + g->w, g->y + g->h);
|
|
|
|
gui_command_buffer_push_scissor(out, clip.x, clip.y, clip.w, clip.h);
|
|
|
|
gui_panel_end(g, &pan);
|
|
|
|
gui_command_buffer_push_scissor(out, p->clip.x, p->clip.y, p->clip.w, p->clip.h);
|
|
|
|
return pan.offset;
|
|
|
|
}
|
|
|
|
|
|
|
|
gui_size
|
|
|
|
gui_panel_shelf_begin(struct gui_panel_layout *parent, struct gui_panel_layout *shelf,
|
|
|
|
const char *tabs[], gui_size size, gui_size active, gui_float offset)
|
|
|
|
{
|
|
|
|
const struct gui_config *config;
|
|
|
|
struct gui_command_buffer *out;
|
|
|
|
const struct gui_font *font;
|
|
|
|
struct gui_vec2 item_spacing;
|
|
|
|
struct gui_vec2 item_padding;
|
|
|
|
struct gui_vec2 panel_padding;
|
|
|
|
|
|
|
|
struct gui_rect bounds;
|
|
|
|
struct gui_rect clip;
|
|
|
|
struct gui_rect *c;
|
|
|
|
struct gui_panel panel;
|
|
|
|
struct gui_button button;
|
|
|
|
|
|
|
|
gui_float header_x, header_y;
|
|
|
|
gui_float header_w, header_h;
|
|
|
|
gui_float item_width;
|
|
|
|
gui_flags flags;
|
|
|
|
gui_size i;
|
|
|
|
|
|
|
|
GUI_ASSERT(parent);
|
|
|
|
GUI_ASSERT(tabs);
|
|
|
|
GUI_ASSERT(shelf);
|
|
|
|
GUI_ASSERT(active < size);
|
|
|
|
if (!parent || !shelf || !tabs || active >= size)
|
|
|
|
return active;
|
|
|
|
|
|
|
|
if (!parent->valid)
|
|
|
|
goto failed;
|
|
|
|
|
|
|
|
config = parent->config;
|
|
|
|
out = parent->buffer;
|
|
|
|
font = &config->font;
|
|
|
|
item_padding = gui_config_property(config, GUI_PROPERTY_ITEM_PADDING);
|
|
|
|
panel_padding = gui_config_property(config, GUI_PROPERTY_PADDING);
|
|
|
|
|
|
|
|
gui_panel_alloc_space(&bounds, parent);
|
|
|
|
gui_zero(shelf, sizeof(*shelf));
|
|
|
|
c = &parent->clip;
|
|
|
|
if (!GUI_INTERSECT(c->x, c->y, c->w, c->h, bounds.x, bounds.y, bounds.w, bounds.h))
|
|
|
|
goto failed;
|
|
|
|
|
|
|
|
header_x = bounds.x;
|
|
|
|
header_y = bounds.y;
|
|
|
|
header_w = bounds.w;
|
|
|
|
header_h = panel_padding.y + 3 * item_padding.y + config->font.height;
|
|
|
|
item_width = (header_w - (gui_float)size) / (gui_float)size;
|
|
|
|
|
|
|
|
button.border = 1;
|
|
|
|
button.rounding = 0;
|
|
|
|
button.padding.x = item_padding.x;
|
|
|
|
button.padding.y = item_padding.y;
|
|
|
|
button.foreground = config->colors[GUI_COLOR_BORDER];
|
|
|
|
|
|
|
|
for (i = 0; i < size; i++) {
|
|
|
|
gui_float button_x, button_y;
|
|
|
|
gui_float button_w, button_h;
|
|
|
|
gui_size text_width = font->width(font->userdata,
|
|
|
|
(const gui_char*)tabs[i], gui_strsiz(tabs[i]));
|
2015-06-09 21:23:04 +03:00
|
|
|
text_width = text_width + (gui_size)(4 * item_padding.x);
|
2015-06-03 01:58:57 +03:00
|
|
|
|
|
|
|
button_y = header_y;
|
|
|
|
button_h = header_h;
|
|
|
|
button_x = header_x;
|
|
|
|
button_w = MIN(item_width, (gui_float)text_width);
|
|
|
|
header_x += MIN(item_width, (gui_float)text_width);
|
|
|
|
|
|
|
|
if ((button_x + button_w) >= (bounds.x + bounds.w)) break;
|
|
|
|
if (active != i) {
|
|
|
|
button_y += item_padding.y;
|
|
|
|
button_h -= item_padding.y;
|
|
|
|
button.background = config->colors[GUI_COLOR_SHELF];
|
|
|
|
button.content = config->colors[GUI_COLOR_SHELF_TEXT];
|
|
|
|
button.highlight = config->colors[GUI_COLOR_SHELF];
|
|
|
|
button.highlight_content = config->colors[GUI_COLOR_SHELF_TEXT];
|
|
|
|
} else {
|
|
|
|
button.background = config->colors[GUI_COLOR_SHELF_ACTIVE];
|
|
|
|
button.content = config->colors[GUI_COLOR_SHELF_ACTIVE_TEXT];
|
|
|
|
button.highlight = config->colors[GUI_COLOR_SHELF_ACTIVE];
|
|
|
|
button.highlight_content = config->colors[GUI_COLOR_SHELF_ACTIVE_TEXT];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (gui_button_text(out, button_x, button_y, button_w, button_h,
|
|
|
|
tabs[i], GUI_BUTTON_DEFAULT, &button, parent->input, &config->font))
|
|
|
|
active = i;
|
|
|
|
}
|
|
|
|
|
|
|
|
bounds.y += header_h;
|
|
|
|
bounds.h -= header_h;
|
|
|
|
|
|
|
|
flags = GUI_PANEL_BORDER|GUI_PANEL_SCROLLBAR|GUI_PANEL_TAB|GUI_PANEL_NO_HEADER;
|
|
|
|
gui_panel_init(&panel, bounds.x, bounds.y, bounds.w, bounds.h, flags, out, config);
|
|
|
|
gui_panel_begin(shelf, &panel, NULL, parent->input);
|
|
|
|
shelf->offset = offset;
|
|
|
|
|
|
|
|
gui_unify(&clip, &parent->clip, shelf->clip.x, shelf->clip.y,
|
|
|
|
shelf->clip.x + shelf->clip.w, shelf->clip.y + shelf->clip.h);
|
|
|
|
gui_command_buffer_push_scissor(out, clip.x, clip.y, clip.w, clip.h);
|
|
|
|
return active;
|
|
|
|
|
|
|
|
failed:
|
|
|
|
shelf->valid = gui_false;
|
|
|
|
shelf->config = parent->config;
|
|
|
|
shelf->buffer = parent->buffer;
|
|
|
|
shelf->input = parent->input;
|
|
|
|
return active;
|
|
|
|
}
|
|
|
|
|
|
|
|
gui_float
|
|
|
|
gui_panel_shelf_end(struct gui_panel_layout *p, struct gui_panel_layout *s)
|
|
|
|
{
|
|
|
|
struct gui_command_buffer *out;
|
|
|
|
struct gui_rect clip;
|
|
|
|
struct gui_panel pan;
|
|
|
|
|
|
|
|
GUI_ASSERT(p);
|
|
|
|
GUI_ASSERT(s);
|
|
|
|
if (!p || !s) return 0;
|
|
|
|
if (!p->valid) return 0;
|
2015-06-10 16:09:10 +03:00
|
|
|
gui_zero(&pan, sizeof(pan));
|
2015-06-03 01:58:57 +03:00
|
|
|
|
|
|
|
out = p->buffer;
|
|
|
|
pan.x = s->at_x; pan.y = s->y;
|
|
|
|
pan.flags = GUI_PANEL_BORDER|GUI_PANEL_MINIMIZABLE|GUI_PANEL_TAB|GUI_PANEL_SCROLLBAR;
|
|
|
|
|
|
|
|
gui_unify(&clip, &p->clip, s->clip.x, s->clip.y, s->x + s->w, s->y + s->h);
|
|
|
|
gui_command_buffer_push_scissor(out, clip.x, clip.y, clip.w, clip.h);
|
|
|
|
gui_panel_end(s, &pan);
|
|
|
|
gui_command_buffer_push_scissor(out, p->clip.x, p->clip.y, p->clip.w, p->clip.h);
|
|
|
|
return pan.offset;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gui_panel_end(struct gui_panel_layout *layout, struct gui_panel *panel)
|
|
|
|
{
|
|
|
|
const struct gui_config *config;
|
|
|
|
struct gui_command_buffer *out;
|
|
|
|
gui_float scrollbar_width;
|
|
|
|
struct gui_vec2 item_padding;
|
|
|
|
struct gui_vec2 item_spacing;
|
|
|
|
struct gui_vec2 panel_padding;
|
|
|
|
struct gui_vec2 scaler_size;
|
|
|
|
|
|
|
|
GUI_ASSERT(layout);
|
|
|
|
GUI_ASSERT(panel);
|
|
|
|
if (!panel || !layout) return;
|
2015-06-09 18:05:05 +03:00
|
|
|
layout->at_y += layout->row.height;
|
2015-06-03 01:58:57 +03:00
|
|
|
|
|
|
|
config = layout->config;
|
|
|
|
out = layout->buffer;
|
|
|
|
item_padding = gui_config_property(config, GUI_PROPERTY_ITEM_PADDING);
|
|
|
|
item_spacing = gui_config_property(config, GUI_PROPERTY_ITEM_SPACING);
|
|
|
|
panel_padding = gui_config_property(config, GUI_PROPERTY_PADDING);
|
|
|
|
scrollbar_width = gui_config_property(config, GUI_PROPERTY_SCROLLBAR_WIDTH).x;
|
|
|
|
scaler_size = gui_config_property(config, GUI_PROPERTY_SCALER_SIZE);
|
|
|
|
if (!(panel->flags & GUI_PANEL_TAB))
|
|
|
|
gui_command_buffer_push_scissor(out, layout->x,layout->y,layout->w+1,layout->h+1);
|
|
|
|
|
|
|
|
if (panel->flags & GUI_PANEL_SCROLLBAR && layout->valid) {
|
|
|
|
struct gui_scroll scroll;
|
|
|
|
gui_float panel_y;
|
|
|
|
gui_float scroll_x, scroll_y;
|
|
|
|
gui_float scroll_w, scroll_h;
|
|
|
|
gui_float scroll_target, scroll_offset, scroll_step;
|
|
|
|
|
|
|
|
scroll_x = layout->at_x + layout->width;
|
|
|
|
scroll_y = (panel->flags & GUI_PANEL_BORDER) ? layout->y + 1 : layout->y;
|
|
|
|
scroll_y += layout->header_height;
|
|
|
|
scroll_w = scrollbar_width;
|
|
|
|
scroll_h = layout->height;
|
|
|
|
scroll_offset = layout->offset;
|
|
|
|
scroll_step = layout->height * 0.25f;
|
|
|
|
scroll.rounding = config->rounding[GUI_ROUNDING_SCROLLBAR];
|
|
|
|
scroll.background = config->colors[GUI_COLOR_SCROLLBAR];
|
|
|
|
scroll.foreground = config->colors[GUI_COLOR_SCROLLBAR_CURSOR];
|
|
|
|
scroll.border = config->colors[GUI_COLOR_SCROLLBAR_BORDER];
|
|
|
|
if (panel->flags & GUI_PANEL_BORDER) scroll_h -= 1;
|
|
|
|
scroll_target = (layout->at_y-layout->y)-(layout->header_height+2*item_spacing.y);
|
|
|
|
panel->offset = gui_scroll(out, scroll_x, scroll_y, scroll_w, scroll_h,
|
|
|
|
scroll_offset, scroll_target, scroll_step,
|
|
|
|
&scroll, layout->input);
|
|
|
|
|
|
|
|
panel_y = layout->y + layout->height + layout->header_height - panel_padding.y;
|
|
|
|
gui_command_buffer_push_rect(out, layout->x,panel_y,layout->width,panel_padding.y,
|
|
|
|
0, config->colors[GUI_COLOR_PANEL]);
|
|
|
|
} else layout->height = layout->at_y - layout->y;
|
|
|
|
|
|
|
|
if ((panel->flags & GUI_PANEL_SCALEABLE) && layout->valid) {
|
|
|
|
struct gui_color col = config->colors[GUI_COLOR_SCALER];
|
|
|
|
gui_float scaler_w = MAX(0, scaler_size.x - item_padding.x);
|
|
|
|
gui_float scaler_h = MAX(0, scaler_size.y - item_padding.y);
|
|
|
|
gui_float scaler_x = (layout->x + layout->w) - (item_padding.x + scaler_w);
|
|
|
|
gui_float scaler_y = layout->y + layout->h - scaler_size.y;
|
|
|
|
gui_command_buffer_push_triangle(out, scaler_x + scaler_w, scaler_y,
|
|
|
|
scaler_x + scaler_w, scaler_y + scaler_h, scaler_x, scaler_y + scaler_h, col);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (panel->flags & GUI_PANEL_BORDER) {
|
|
|
|
const gui_float width = (panel->flags & GUI_PANEL_SCROLLBAR) ?
|
|
|
|
layout->width + scrollbar_width : layout->width;
|
|
|
|
const gui_float padding_y = (!layout->valid) ?
|
|
|
|
panel->y + layout->header_height:
|
|
|
|
(panel->flags & GUI_PANEL_SCROLLBAR) ?
|
|
|
|
panel->y + layout->h :
|
|
|
|
panel->y + layout->height + item_padding.y;
|
|
|
|
|
|
|
|
gui_command_buffer_push_line(out, panel->x, padding_y, panel->x + width,
|
|
|
|
padding_y, config->colors[GUI_COLOR_BORDER]);
|
|
|
|
gui_command_buffer_push_line(out, panel->x, panel->y, panel->x,
|
|
|
|
padding_y, config->colors[GUI_COLOR_BORDER]);
|
|
|
|
gui_command_buffer_push_line(out, panel->x + width, panel->y, panel->x + width,
|
|
|
|
padding_y, config->colors[GUI_COLOR_BORDER]);
|
|
|
|
}
|
|
|
|
gui_command_buffer_push_scissor(out, 0, 0, gui_null_rect.w, gui_null_rect.h);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* ==============================================================
|
|
|
|
*
|
|
|
|
* Stack
|
|
|
|
*
|
|
|
|
* ===============================================================
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gui_stack_clear(struct gui_stack *stack)
|
|
|
|
{
|
|
|
|
stack->begin = NULL;
|
|
|
|
stack->end = NULL;
|
|
|
|
stack->count = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gui_stack_push(struct gui_stack *stack, struct gui_panel *panel)
|
|
|
|
{
|
|
|
|
struct gui_panel *iter;
|
|
|
|
GUI_ASSERT(stack);
|
|
|
|
GUI_ASSERT(panel);
|
|
|
|
if (!stack || !panel) return;
|
|
|
|
gui_foreach_panel(iter, stack)
|
|
|
|
if (iter == panel) return;
|
|
|
|
|
|
|
|
if (!stack->begin) {
|
|
|
|
panel->next = NULL;
|
|
|
|
panel->prev = NULL;
|
|
|
|
stack->begin = panel;
|
|
|
|
stack->end = panel;
|
|
|
|
stack->count = 1;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
stack->end->next = panel;
|
|
|
|
panel->prev = stack->end;
|
|
|
|
panel->next = NULL;
|
|
|
|
stack->end = panel;
|
|
|
|
stack->count++;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gui_stack_pop(struct gui_stack *stack, struct gui_panel*panel)
|
|
|
|
{
|
|
|
|
GUI_ASSERT(stack);
|
|
|
|
GUI_ASSERT(panel);
|
|
|
|
if (!stack || !panel) return;
|
|
|
|
|
|
|
|
if (panel->prev)
|
|
|
|
panel->prev->next = panel->next;
|
|
|
|
if (panel->next)
|
|
|
|
panel->next->prev = panel->prev;
|
|
|
|
if (stack->begin == panel)
|
|
|
|
stack->begin = panel->next;
|
|
|
|
if (stack->end == panel)
|
|
|
|
stack->end = panel->prev;
|
|
|
|
panel->next = NULL;
|
|
|
|
panel->prev = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* ==============================================================
|
|
|
|
*
|
|
|
|
* Layout
|
|
|
|
*
|
|
|
|
* ===============================================================
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gui_layout_init(struct gui_layout *layout, const struct gui_layout_config *config,
|
|
|
|
gui_size width, gui_size height)
|
|
|
|
{
|
|
|
|
gui_float left, right;
|
|
|
|
gui_float centerh, centerv;
|
|
|
|
gui_float bottom, top;
|
|
|
|
|
|
|
|
GUI_ASSERT(layout);
|
|
|
|
GUI_ASSERT(config);
|
|
|
|
if (!layout || !config) return;
|
|
|
|
|
|
|
|
gui_zero(layout, sizeof(*layout));
|
|
|
|
layout->state = GUI_LAYOUT_ACTIVE;
|
|
|
|
layout->width = width;
|
|
|
|
layout->height = height;
|
|
|
|
|
|
|
|
left = GUI_SATURATE(config->left);
|
|
|
|
right = GUI_SATURATE(config->right);
|
|
|
|
centerh = GUI_SATURATE(config->centerh);
|
|
|
|
centerv = GUI_SATURATE(config->centerv);
|
|
|
|
bottom = GUI_SATURATE(config->bottom);
|
|
|
|
top = GUI_SATURATE(config->top);
|
|
|
|
|
2015-06-04 23:17:54 +03:00
|
|
|
layout->slots[GUI_SLOT_TOP].ratio = gui_vec2(1.0f, top);
|
|
|
|
layout->slots[GUI_SLOT_LEFT].ratio = gui_vec2(left, centerv);
|
|
|
|
layout->slots[GUI_SLOT_BOTTOM].ratio = gui_vec2(1.0f, bottom);
|
|
|
|
layout->slots[GUI_SLOT_CENTER].ratio = gui_vec2(centerh, centerv);
|
|
|
|
layout->slots[GUI_SLOT_RIGHT].ratio = gui_vec2(right, centerv);
|
|
|
|
|
|
|
|
layout->slots[GUI_SLOT_TOP].offset = gui_vec2(0.0f, 0.0f);
|
|
|
|
layout->slots[GUI_SLOT_LEFT].offset = gui_vec2(0.0f, top);
|
|
|
|
layout->slots[GUI_SLOT_BOTTOM].offset = gui_vec2(0.0f, top + centerv);
|
|
|
|
layout->slots[GUI_SLOT_CENTER].offset = gui_vec2(left, top);
|
|
|
|
layout->slots[GUI_SLOT_RIGHT].offset = gui_vec2(left + centerh, top);
|
2015-06-03 01:58:57 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gui_layout_set_size(struct gui_layout *layout, gui_size width, gui_size height)
|
|
|
|
{
|
|
|
|
GUI_ASSERT(layout);
|
|
|
|
if (!layout) return;
|
|
|
|
layout->width = width;
|
|
|
|
layout->height = height;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gui_layout_slot(struct gui_layout *layout, enum gui_layout_slot_index slot,
|
|
|
|
enum gui_layout_format format, gui_size count)
|
|
|
|
{
|
|
|
|
GUI_ASSERT(layout);
|
|
|
|
GUI_ASSERT(count);
|
|
|
|
GUI_ASSERT(slot >= GUI_SLOT_TOP && slot < GUI_SLOT_MAX);
|
|
|
|
if (!layout || !count) return;
|
|
|
|
layout->slots[slot].capacity = count;
|
|
|
|
layout->slots[slot].format = format;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
2015-03-03 19:24:02 +03:00
|
|
|
#endif
|
2015-06-03 01:58:57 +03:00
|
|
|
#endif /* GUI_H_ */
|