New Settings (permanent Breakbutton, ShowFadeOut) added

This commit is contained in:
doitux
2007-01-28 14:48:18 +00:00
parent 20b99f758d
commit 7166a77d48
11 changed files with 2664 additions and 2552 deletions
+11
View File
@@ -22,15 +22,26 @@
#include "ui_settingsdialog.h"
class QLineEdit;
class settingsDialogImpl: public QDialog, public Ui::settingsDialog {
Q_OBJECT
public:
settingsDialogImpl(QWidget *parent = 0, const char *name = 0);
void setPlayerNickIsChanged(bool theValue) { playerNickIsChanged = theValue; }
bool getPlayerNickIsChanged() const { return playerNickIsChanged; }
public slots:
void isAccepted();
void playerNickChanged() { setPlayerNickIsChanged(TRUE); };
private:
bool playerNickIsChanged;
};
#endif