diff options
author | Adam NAILI | 2017-12-31 15:00:23 +0100 |
---|---|---|
committer | Adam NAILI | 2017-12-31 15:00:23 +0100 |
commit | 41da8b54ed619ea869ca286cd8ec02e105e21c19 (patch) | |
tree | f69a6ba2ece9ec4b0b8fa5d6880f61d5f13fc5ee /include/gui/button.h | |
parent | 4b30bfee527edd88e035b93c1230ddf2101291f6 (diff) | |
download | morpher-41da8b54ed619ea869ca286cd8ec02e105e21c19.tar.gz |
Implementing all kinds of buttons. Rendering to fix
Diffstat (limited to 'include/gui/button.h')
-rw-r--r-- | include/gui/button.h | 14 |
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); | |||
58 | void button_click_test(int x, int y, Component *parameterSelf); | 58 | void button_click_test(int x, int y, Component *parameterSelf); |
59 | 59 | ||
60 | void button_click_add_constraint(int x, int y, Component *parameterSelf); | 60 | void button_click_add_constraint(int x, int y, Component *parameterSelf); |
61 | |||
62 | void button_click_show_hide(int x, int y, Component *parameterSelf); | ||
63 | |||
64 | void button_click_exit(int x, int y, Component *parameterSelf); | ||
65 | |||
66 | void button_click_none(int x, int y, Component *parameterSelf); | ||
67 | |||
68 | void button_click_more_frame(int x, int y, Component *parameterSelf); | ||
69 | |||
70 | void button_click_less_frame(int x, int y, Component *parameterSelf); | ||
71 | |||
72 | void 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. |