move around - flatter.
[profile/ivi/evas.git] / src / modules / engines / software_qtopia / Evas_Engine_Software_Qtopia.h
1 #ifndef _EVAS_ENGINE_SOFTWARE_QTOPIA_H
2 #define _EVAS_ENGINE_SOFTWARE_QTOPIA_H
3
4 #ifdef EVAS_COMMON_H
5 #ifdef EVAS_PRIVATE_H
6 typedef void QWidget;
7 #endif
8 #endif
9
10 #ifndef EVAS_COMMON_H
11 #ifndef EVAS_PRIVATE_H
12 #include <qwidget.h>
13 #endif
14 #endif
15
16 typedef struct _Evas_Engine_Info_Software_Qtopia Evas_Engine_Info_Software_Qtopia;
17
18 struct _Evas_Engine_Info_Software_Qtopia
19 {
20    /* PRIVATE - don't mess with this baby or evas will poke its tongue out */
21    /* at you and make nasty noises */
22    Evas_Engine_Info magic;
23
24    struct {
25       QWidget *target;
26       int      rotation;
27    } info;
28 };
29 #endif
30
31