diff options
author | Adam NAILI | 2017-12-10 12:59:10 +0100 |
---|---|---|
committer | Adam NAILI | 2017-12-10 12:59:10 +0100 |
commit | e94826bd09fd785c8ae80c132c3e0a8f4125892b (patch) | |
tree | 88b9536b856f954a04d2bf64a4ea0ddefb0eec65 /include | |
parent | 14808ee3083f788fd84c898632407c4d4b4e50d8 (diff) | |
download | morpher-e94826bd09fd785c8ae80c132c3e0a8f4125892b.tar.gz |
Updating button documentation
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; |