PGE Engine
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Macros Pages
setup_title_screen.h
1 #ifndef SETUP_TITLE_SCREEN_H
2 #define SETUP_TITLE_SCREEN_H
3 
4 #include <QString>
5 #include <QColor>
6 #include <QList>
7 class QSettings;
8 
10 {
11  enum align{
12  NO_ALIGN=0,
13  LEFT_ALIGN,
14  TOP_ALIGN,
15  RIGHT_ALIGN,
16  BOTTOM_ALIGN,
17  CENTER_ALIGN
18  };
19 
20  QString imgFile;
21  bool animated;
22  int frames;
23  unsigned int framespeed;
24  align align_to;
25  int x;
26  int y;
27  bool center_x;
28  bool center_y;
29 };
30 
32 {
33  void init(QSettings &engine_ini);
34  QString backgroundImg;
35  QColor backgroundColor;
36  QList<TitleScreenAdditionalImage > AdditionalImages;
37  QString luaFile;
38 };
39 
40 #endif // SETUP_TITLE_SCREEN_H
41 
Definition: setup_title_screen.h:31
Definition: setup_title_screen.h:9