Add Own Flipside Option

This commit is contained in:
doitux
2007-01-28 23:33:48 +00:00
parent 20bb41240c
commit 34fd8aceef
8 changed files with 266 additions and 87 deletions
+6 -4
View File
@@ -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;
};