QTfrontend/gameuiconfig.h
changeset 4958 84afe376a3b3
parent 4004 b1c2c2f6fc5e
child 4976 088d40d8aba2
equal deleted inserted replaced
4956:48e1f9a04c28 4958:84afe376a3b3
    29 class GameUIConfig : public QSettings
    29 class GameUIConfig : public QSettings
    30 {
    30 {
    31     Q_OBJECT
    31     Q_OBJECT
    32 
    32 
    33 public:
    33 public:
       
    34     HWForm * Form;
    34     GameUIConfig(HWForm * FormWidgets, const QString & fileName);
    35     GameUIConfig(HWForm * FormWidgets, const QString & fileName);
    35     QStringList GetTeamsList();
    36     QStringList GetTeamsList();
    36     QRect vid_Resolution();
    37     QRect vid_Resolution();
    37     bool vid_Fullscreen();
    38     bool vid_Fullscreen();
    38     quint32 translateQuality();
    39     quint32 translateQuality();
    65 
    66 
    66 public slots:
    67 public slots:
    67     void SaveOptions();
    68     void SaveOptions();
    68 
    69 
    69 private:
    70 private:
    70     HWForm * Form;
       
    71     quint8 depth;
    71     quint8 depth;
    72 };
    72 };
    73 
    73 
    74 #endif
    74 #endif