summaryrefslogtreecommitdiff
path: root/include/gui/pictureframe.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/gui/pictureframe.h')
-rw-r--r--include/gui/pictureframe.h17
1 files changed, 11 insertions, 6 deletions
diff --git a/include/gui/pictureframe.h b/include/gui/pictureframe.h
index d679b6b..11eaf90 100644
--- a/include/gui/pictureframe.h
+++ b/include/gui/pictureframe.h
@@ -1,16 +1,22 @@
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
10 * Pictures handling. 6 * Pictures handling.
7 *
8 * Author:
9 * Adam NAILI
11 */ 10 */
12 11
13/*Needed storage point to share memory between the origin PictureFrame and the target PictureFrame. It ables to cancel the Add constraint functionality*/ 12#include "gui/component.h"
13#include "morpher/morphing.h"
14#include "painter/canvas.h"
15
16/*
17 * Needed storage point to share memory between the origin PictureFrame and the target PictureFrame.
18 * It ables to cancel the Add constraint functionality
19 */
14CartesianVector savedPoint; 20CartesianVector savedPoint;
15 21
16/** 22/**
@@ -116,5 +122,4 @@ void pictureframe_click_handler_origin(int x_pos, int y_pos, Component *paramete
116 */ 122 */
117void pictureframe_click_handler_target(int x_pos, int y_pos, Component *parameterSelf); 123void pictureframe_click_handler_target(int x_pos, int y_pos, Component *parameterSelf);
118 124
119
120#endif 125#endif