aboutsummaryrefslogtreecommitdiff
path: root/include/saffron_api.h
blob: 7b6fabbe1a431ae5fee4c317da25d0954809cf94 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#ifndef SAFFRON_API_H
#define SAFFRON_API_H

#include "saffron_widget.h" /* satisfy the lsp and also if someone includes api without the saffron.h wrapper (you lunatic) then it still works */
#include "saffron_window.h"
#include "saffron_layout.h"

bool saffron_init(void);
void saffron_quit(void);

void saffron_widget_draw(SaffronWidget* widget, SDL_Renderer *renderer);
void saffron_widget_add_child(SaffronWidget* parent, SaffronWidget* child);
void saffron_widget_init(SaffronWidget* widget); /* generic primitive for generic widgets as said below. saffron_widget_new just calls this under the hood */
SaffronWidget* saffron_widget_new(); /* generic primitive for generic widgets, e.g. the window root. ideally window root is a hbox/vbox/box once those are implemented */
void saffron_widget_free(SaffronWidget* widget);

SaffronWindow* saffron_window_new(const char* title, int w, int h);
void saffron_window_free(SaffronWindow* window);
void saffron_window_show(SaffronWindow* window);
void saffron_window_main(SaffronWindow* window);
SaffronWidget* saffron_widget_hit_test(SaffronWidget* widget, int x, int y);

SaffronBox* saffron_box_new(SaffronOrientation orientation, SaffronHorizontalAlignment halign, SaffronVerticalAlignment valign, int spacing, int padding, int margin);
void saffron_box_layout(SaffronBox* box);

#endif