summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpacien2018-01-09 02:02:39 +0100
committerpacien2018-01-09 02:02:39 +0100
commit5980fa86c1fc90849102bbc24679423f978e2a50 (patch)
tree2dee06a66c5fb05b3fc2276ff4789f5ecbc599c6
parent0375e906c5cf767cce441ff6eb00875b63f5ca8b (diff)
downloadmorpher-5980fa86c1fc90849102bbc24679423f978e2a50.tar.gz
Add authorship info in headers doc
Signed-off-by: pacien <pacien.trangirard@pacien.net>
-rw-r--r--include/common/error.h3
-rw-r--r--include/common/geom.h3
-rw-r--r--include/common/mem.h3
-rw-r--r--include/common/time.h3
-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
-rw-r--r--include/morpher/matrix.h3
-rw-r--r--include/morpher/morphing.h3
-rw-r--r--include/morpher/quadrilateral.h3
-rw-r--r--include/morpher/trianglemap.h3
-rw-r--r--include/painter/canvas.h3
-rw-r--r--include/painter/color.h3
-rw-r--r--include/painter/rasterizer.h3
18 files changed, 72 insertions, 14 deletions
diff --git a/include/common/error.h b/include/common/error.h
index 69104cb..ab355b7 100644
--- a/include/common/error.h
+++ b/include/common/error.h
@@ -3,6 +3,9 @@
3 3
4/** 4/**
5 * File: error.h 5 * File: error.h
6 *
7 * Author:
8 * Pacien TRAN-GIRARD
6 */ 9 */
7 10
8/** 11/**
diff --git a/include/common/geom.h b/include/common/geom.h
index 66e6c08..67d4148 100644
--- a/include/common/geom.h
+++ b/include/common/geom.h
@@ -3,6 +3,9 @@
3 3
4/** 4/**
5 * File: geom.h 5 * File: geom.h
6 *
7 * Author:
8 * Pacien TRAN-GIRARD
6 */ 9 */
7 10
8#include <stdbool.h> 11#include <stdbool.h>
diff --git a/include/common/mem.h b/include/common/mem.h
index 1c46778..7a06f39 100644
--- a/include/common/mem.h
+++ b/include/common/mem.h
@@ -3,6 +3,9 @@
3 3
4/** 4/**
5 * File: mem.h 5 * File: mem.h
6 *
7 * Author:
8 * Pacien TRAN-GIRARD
6 */ 9 */
7 10
8#include <stddef.h> 11#include <stddef.h>
diff --git a/include/common/time.h b/include/common/time.h
index 54a81af..bd50533 100644
--- a/include/common/time.h
+++ b/include/common/time.h
@@ -6,6 +6,9 @@
6 * > Who can say where the road goes... 6 * > Who can say where the road goes...
7 * > Where the day flows, only time... 7 * > Where the day flows, only time...
8 * -- Enya 8 * -- Enya
9 *
10 * Author:
11 * Pacien TRAN-GIRARD
9 */ 12 */
10 13
11#include "geom.h" 14#include "geom.h"
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.
diff --git a/include/morpher/matrix.h b/include/morpher/matrix.h
index e3d5517..2763eb3 100644
--- a/include/morpher/matrix.h
+++ b/include/morpher/matrix.h
@@ -5,6 +5,9 @@
5 * File: matrix.h 5 * File: matrix.h
6 * > The matrix is a system Neo, that system is our enemy. 6 * > The matrix is a system Neo, that system is our enemy.
7 * -- Morpheus 7 * -- Morpheus
8 *
9 * Author:
10 * Pacien TRAN-GIRARD
8 */ 11 */
9 12
10#include "common/geom.h" 13#include "common/geom.h"
diff --git a/include/morpher/morphing.h b/include/morpher/morphing.h
index 48c33b4..186144b 100644
--- a/include/morpher/morphing.h
+++ b/include/morpher/morphing.h
@@ -4,6 +4,9 @@
4/** 4/**
5 * File: morphing.h 5 * File: morphing.h
6 * Coordinate mapping for morphing transforms. 6 * Coordinate mapping for morphing transforms.
7 *
8 * Author:
9 * Pacien TRAN-GIRARD
7 */ 10 */
8 11
9#include "common/geom.h" 12#include "common/geom.h"
diff --git a/include/morpher/quadrilateral.h b/include/morpher/quadrilateral.h
index c8cf3