Add Own Flipside Option
This commit is contained in:
@@ -22,7 +22,8 @@
|
||||
|
||||
#include "ui_settingsdialog.h"
|
||||
|
||||
class QLineEdit;
|
||||
#include <QtCore>
|
||||
#include <QtGui>
|
||||
|
||||
|
||||
class settingsDialogImpl: public QDialog, public Ui::settingsDialog {
|
||||
@@ -30,16 +31,17 @@ Q_OBJECT
|
||||
public:
|
||||
settingsDialogImpl(QWidget *parent = 0, const char *name = 0);
|
||||
|
||||
void setPlayerNickIsChanged(bool theValue) { playerNickIsChanged = theValue; }
|
||||
bool getPlayerNickIsChanged() const { return playerNickIsChanged; }
|
||||
void setPlayerNickIsChanged(bool theValue){ playerNickIsChanged = theValue;}
|
||||
bool getPlayerNickIsChanged() const{ return playerNickIsChanged;}
|
||||
|
||||
public slots:
|
||||
|
||||
void isAccepted();
|
||||
void playerNickChanged() { setPlayerNickIsChanged(TRUE); };
|
||||
void setFlipsidePicFileName();
|
||||
|
||||
private:
|
||||
|
||||
|
||||
bool playerNickIsChanged;
|
||||
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user