summaryrefslogtreecommitdiff
path: root/include/gui/button.h
diff options
context:
space:
mode:
authorAdam NAILI2017-12-31 15:00:23 +0100
committerAdam NAILI2017-12-31 15:00:23 +0100
commit41da8b54ed619ea869ca286cd8ec02e105e21c19 (patch)
treef69a6ba2ece9ec4b0b8fa5d6880f61d5f13fc5ee /include/gui/button.h
parent4b30bfee527edd88e035b93c1230ddf2101291f6 (diff)
downloadmorpher-41da8b54ed619ea869ca286cd8ec02e105e21c19.tar.gz
Implementing all kinds of buttons. Rendering to fix
Diffstat (limited to 'include/gui/button.h')
-rw-r--r--include/gui/button.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/include/gui/button.h b/include/gui/button.h
index 26d7970..41008c1 100644
--- a/include/gui/button.h
+++ b/include/gui/button.h
@@ -58,6 +58,20 @@ void button_print(Component *parameterSelf);
58void button_click_test(int x, int y, Component *parameterSelf); 58void button_click_test(int x, int y, Component *parameterSelf);
59 59
60void button_click_add_constraint(int x, int y, Component *parameterSelf); 60void button_click_add_constraint(int x, int y, Component *parameterSelf);
61
62void button_click_show_hide(int x, int y, Component *parameterSelf);
63
64void button_click_exit(int x, int y, Component *parameterSelf);
65
66void button_click_none(int x, int y, Component *parameterSelf);
67
68void button_click_more_frame(int x, int y, Component *parameterSelf);
69
70void button_click_less_frame(int x, int y, Component *parameterSelf);
71
72void button_click_rendering(int x, int y, Component *parameterSelf);
73
74
61/** 75/**
62 * Function: button_is_selected 76 * Function: button_is_selected
63 * Checks if the button is selected or not. 77 * Checks if the button is selected or not.