diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/gui/button.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/include/gui/button.h b/include/gui/button.h index 8537151..4e8ad95 100644 --- a/include/gui/button.h +++ b/include/gui/button.h | |||
@@ -1,15 +1,18 @@ | |||
1 | #ifndef UPEM_MORPHING_BUTTON | 1 | #ifndef UPEM_MORPHING_BUTTON |
2 | #define UPEM_MORPHING_BUTTON | 2 | #define UPEM_MORPHING_BUTTON |
3 | 3 | ||
4 | #include "window.h" | ||
5 | /** | 4 | /** |
6 | * File: button.h | 5 | * File: button.h |
7 | * Buttons handling | 6 | * Buttons handling |
8 | */ | 7 | */ |
8 | #include "window.h" | ||
9 | 9 | ||
10 | /** | 10 | /** |
11 | * Type: Button | 11 | * Struct: Button |
12 | * Component that can be triggered by click to execute a specific action. | 12 | * Component that can be triggered by click to execute a specific action. |
13 | * | ||
14 | * Fields: | ||
15 | * component - component that will acted as a button thanks to a rightful initialization. | ||
13 | */ | 16 | */ |
14 | typedef struct { | 17 | typedef struct { |
15 | Component component; | 18 | Component component; |