summaryrefslogtreecommitdiff
path: root/include/gui
diff options
context:
space:
mode:
authorpacien2018-01-09 02:02:39 +0100
committerpacien2018-01-09 02:02:39 +0100
commit5980fa86c1fc90849102bbc24679423f978e2a50 (patch)
tree2dee06a66c5fb05b3fc2276ff4789f5ecbc599c6 /include/gui
parent0375e906c5cf767cce441ff6eb00875b63f5ca8b (diff)
downloadmorpher-5980fa86c1fc90849102bbc24679423f978e2a50.tar.gz
Add authorship info in headers doc
Signed-off-by: pacien <pacien.trangirard@pacien.net>
Diffstat (limited to 'include/gui')
-rw-r--r--include/gui/button.h3
-rw-r--r--include/gui/component.h11
-rw-r--r--include/gui/group.h4
-rw-r--r--include/gui/gui.h6
-rw-r--r--include/gui/pictureframe.h11
-rw-r--r--include/gui/textview.h6
-rw-r--r--include/gui/window.h12
7 files changed, 39 insertions, 14 deletions
diff --git a/include/gui/button.h b/include/gui/button.h
index b5908cb..c447328 100644
--- a/include/gui/button.h
+++ b/include/gui/button.h
@@ -3,6 +3,9 @@
3/** 3/**
4 * File: button.h 4 * File: button.h
5 * Buttons handling 5 * Buttons handling
6 *
7 * Author:
8 * Adam NAILI
6 */ 9 */
7 10
8#include "component.h" 11#include "component.h"
diff --git a/include/gui/component.h b/include/gui/component.h
index 9700dfe..f545bbc 100644
--- a/include/gui/component.h
+++ b/include/gui/component.h
@@ -1,5 +1,12 @@
1#ifndef UPEM_C_COMPONENT_H 1#ifndef UPEM_MORPHING_COMPONENT
2#define UPEM_C_COMPONENT_H 2#define UPEM_MORPHING_COMPONENT
3
4/**
5 * File: component.h
6 *
7 * Author:
8 * Adam NAILI
9 */
3 10
4/** 11/**
5 * Enum: Mode 12 * Enum: Mode
diff --git a/include/gui/group.h b/include/gui/group.h
index 2a02ee4..1006c74 100644
--- a/include/gui/group.h
+++ b/include/gui/group.h
@@ -4,7 +4,11 @@
4/** 4/**
5 * File: group.h 5 * File: group.h
6 * Group of components 6 * Group of components
7 *
8 * Author:
9 * Adam NAILI
7 */ 10 */
11
8#include "component.h" 12#include "component.h"
9 13
10/** 14/**
diff --git a/include/gui/gui.h b/include/gui/gui.h
index 10f59e8..a8b7bd0 100644
--- a/include/gui/gui.h
+++ b/include/gui/gui.h
@@ -1,12 +1,14 @@
1#ifndef UPEM_MORPHING_GUI 1#ifndef UPEM_MORPHING_GUI
2#define UPEM_MORPHING_GUI 2#define UPEM_MORPHING_GUI
3 3
4#include "gui/window.h"
5
6/** 4/**
7 * File: gui.h 5 * File: gui.h
6 *
7 * Author:
8 * Adam NAILI
8 */ 9 */
9 10
11#include "gui/window.h"
10 12
11/** 13/**
12 * Struct: GUI 14 * Struct: GUI
diff --git a/include/gui/pictureframe.h b/include/gui/pictureframe.h
index a070190..f6edbf6 100644
--- a/include/gui/pictureframe.h
+++ b/include/gui/pictureframe.h
@@ -1,14 +1,17 @@
1#ifndef UPEM_MORPHING_PITUREFRAME 1#ifndef UPEM_MORPHING_PITUREFRAME
2#define UPEM_MORPHING_PITUREFRAME 2#define UPEM_MORPHING_PITUREFRAME
3 3
4#include "morpher/morphing.h"
5#include "painter/canvas.h"
6#include "component.h"
7
8/** 4/**
9 * File: pictureframe.h 5 * File: pictureframe.h
6 *
7 * Author:
8 * Adam NAILI
10 */ 9 */
11 10
11#include "morpher/morphing.h"
12#include "painter/canvas.h"
13#include "component.h"
14
12/*Needed storage point to share memory between the origin PictureFrame and the target PictureFrame. It ables to cancel the Add constraint functionality*/ 15/*Needed storage point to share memory between the origin PictureFrame and the target PictureFrame. It ables to cancel the Add constraint functionality*/
13CartesianVector savedPoint; 16CartesianVector savedPoint;
14 17
diff --git a/include/gui/textview.h b/include/gui/textview.h
index 7414336..91106c0 100644
--- a/include/gui/textview.h
+++ b/include/gui/textview.h
@@ -1,11 +1,13 @@
1#ifndef UPEM_MORPHING_TEXTVIEW 1#ifndef UPEM_MORPHING_TEXTVIEW
2#define UPEM_MORPHING_TEXTVIEW 2#define UPEM_MORPHING_TEXTVIEW
3 3
4#include "component.h"
5
6/** 4/**
7 * File: textview.h 5 * File: textview.h
6 *
7 * Author:
8 * Adam NAILI
8 */ 9 */
10#include "component.h"
9 11
10typedef struct { 12typedef struct {
11 Component component; 13 Component component;
diff --git a/include/gui/window.h b/include/gui/window.h
index e6b14dc..612da28 100644
--- a/include/gui/window.h
+++ b/include/gui/window.h
@@ -1,15 +1,19 @@
1#ifndef UPEM_MORPHING_WINDOW 1#ifndef UPEM_MORPHING_WINDOW
2#define UPEM_MORPHING_WINDOW 2#define UPEM_MORPHING_WINDOW
3 3
4#include "MLV/MLV_keyboard.h"
5#include "group.h"
6#include "button.h"
7#include "pictureframe.h"
8/** 4/**
9 * File: window.h 5 * File: window.h
10 * Windows and components handling. 6 * Windows and components handling.
7 *
8 * Author:
9 * Adam NAILI
11 */ 10 */
12 11
12#include "MLV/MLV_keyboard.h"
13#include "group.h"
14#include "button.h"
15#include "pictureframe.h"
16
13/** 17/**
14 * Struct: Window 18 * Struct: Window
15 * Supports and handles components. 19 * Supports and handles components.