summaryrefslogtreecommitdiff
path: root/include/gui/button.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/gui/button.h')
-rw-r--r--include/gui/button.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/include/gui/button.h b/include/gui/button.h
index c447328..1b82a7f 100644
--- a/include/gui/button.h
+++ b/include/gui/button.h
@@ -1,5 +1,6 @@
1#ifndef UPEM_MORPHING_BUTTON 1#ifndef UPEM_MORPHING_BUTTON
2#define UPEM_MORPHING_BUTTON 2#define UPEM_MORPHING_BUTTON
3
3/** 4/**
4 * File: button.h 5 * File: button.h
5 * Buttons handling 6 * Buttons handling
@@ -8,7 +9,7 @@
8 * Adam NAILI 9 * Adam NAILI
9 */ 10 */
10 11
11#include "component.h" 12#include "gui/component.h"
12 13
13/** 14/**
14 * Struct: Button 15 * Struct: Button
@@ -39,8 +40,7 @@ typedef struct {
39 * Returns: 40 * Returns:
40 * A pointer of Button 41 * A pointer of Button
41 */ 42 */
42Button * 43Button *button_create(const char *text, int sizeInterligne, int x_pos, int y_pos, ClickHandler clickHandler);
43button_create(const char *text, int sizeInterligne, int x_pos, int y_pos, ClickHandler clickHandler);
44 44
45/** 45/**
46 * Function: button_destroy 46 * Function: button_destroy
@@ -95,7 +95,6 @@ void button_click_exit(int x, int y, Component *parameterSelf);
95 */ 95 */
96void button_click_none(int x, int y, Component *parameterSelf); 96void button_click_none(int x, int y, Component *parameterSelf);
97 97
98
99/** 98/**
100 * Function: button_click_more_frame 99 * Function: button_click_more_frame
101 * Multiplies by two the number of frames to create when rendering. 100 * Multiplies by two the number of frames to create when rendering.
@@ -129,5 +128,4 @@ void button_click_less_frame(int x, int y, Component *parameterSelf);
129 */ 128 */
130void button_click_rendering(int x, int y, Component *parameterSelf); 129void button_click_rendering(int x, int y, Component *parameterSelf);
131 130
132
133#endif 131#endif