Filer
AppGlobals.h
1 #ifndef GLOBALS_H
2 #define GLOBALS_H
3 
4 #include <QColor>
5 
6 class AppGlobals {
7 public:
8  class Colors {
9  public:
10  static const QColor BackgroundColor;
11  static const QColor TextColor;
12  };
13 
14  static const int MaxItems;
15 
16  static const QString mediaPath;
17  static const QString hardDiskName;
18  static const QString desktopPictureWindowObjectName;
19 
20 };
21 
22 #endif // GLOBALS_H
Definition: AppGlobals.h:8
Definition: AppGlobals.h:6