summaryrefslogtreecommitdiff
path: root/include/gui
diff options
context:
space:
mode:
authorAdam NAILI2017-12-10 12:59:10 +0100
committerAdam NAILI2017-12-10 12:59:10 +0100
commite94826bd09fd785c8ae80c132c3e0a8f4125892b (patch)
tree88b9536b856f954a04d2bf64a4ea0ddefb0eec65 /include/gui
parent14808ee3083f788fd84c898632407c4d4b4e50d8 (diff)
downloadmorpher-e94826bd09fd785c8ae80c132c3e0a8f4125892b.tar.gz
Updating button documentation
Diffstat (limited to 'include/gui')
-rw-r--r--include/gui/button.h7
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 */
14typedef struct { 17typedef struct {
15 Component component; 18 Component component;