diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2020-12-11 16:15:55 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2020-12-11 16:15:55 +0900 |
commit | 931f81f9fe49f3fe339bb3cb23501393bfbb2d0a (patch) | |
tree | a9a654a2acd2bd8ddfc026fee8c1f9ea18ea8deb /konquest/gameenddlg.cc | |
parent | eb03b1cb9c58427f256e50b857df40aae0db940e (diff) | |
download | tdegames-931f81f9fe49f3fe339bb3cb23501393bfbb2d0a.tar.gz tdegames-931f81f9fe49f3fe339bb3cb23501393bfbb2d0a.zip |
Renaming of files in preparation for code style tools.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'konquest/gameenddlg.cc')
-rw-r--r-- | konquest/gameenddlg.cc | 76 |
1 files changed, 0 insertions, 76 deletions
diff --git a/konquest/gameenddlg.cc b/konquest/gameenddlg.cc deleted file mode 100644 index d999c375..00000000 --- a/konquest/gameenddlg.cc +++ /dev/null @@ -1,76 +0,0 @@ -#include <tqlabel.h> -#include <tqlayout.h> -#include <tqslider.h> -#include <tqvbox.h> - -#include <tdeapplication.h> -#include <tdeconfig.h> -#include <tdelocale.h> -#include <kstdguiitem.h> - -#include "gameenddlg.h" -#include "gameenddlg.moc" - -GameEndDlg::GameEndDlg( TQWidget *parent ) - : KDialogBase( i18n("Out of Turns"), - KDialogBase::Yes|KDialogBase::No, KDialogBase::Yes, KDialogBase::No, - parent, "end_game_dialog", true, true ) -{ - TQVBox *page = makeVBoxMainWidget(); - - // Create controls - TQLabel *label1 = new TQLabel( i18n("This is the last turn.\nDo you wish to add extra turns?")+"\n\n", page ); - label1->setAlignment( AlignCenter ); - - turnCountLbl = new TQLabel( page ); - turnCount = new TQSlider( 1, 40, 1, 5, Qt::Horizontal, page ); - - KGuiItem addTurns(i18n("&Add Turns"), TQString(), TQString(), - i18n("Add the specified number of turns to the game and continue playing.")); - KGuiItem gameOver(i18n("&Game Over"), TQString(), TQString(), - i18n("Terminate the current game.")); - - setButtonGuiItem(KDialogBase::Yes, addTurns); - setButtonGuiItem(KDialogBase::No, gameOver); - - init(); - - connect( turnCount, TQT_SIGNAL(valueChanged( int )), this, TQT_SLOT(turnCountChange( int )) ); -} - -GameEndDlg::~GameEndDlg() -{ -} - -void -GameEndDlg::init() -{ - TDEConfig *config = kapp->config(); - config->setGroup("Game"); - int turns = config->readNumEntry("ExtraTurns", 10); - turnCount->setValue(turns); - turnCountChange(turns); -} - -void -GameEndDlg::slotYes() -{ - TDEConfig *config = kapp->config(); - config->setGroup("Game"); - config->writeEntry("ExtraTurns", extraTurns()); - config->sync(); - KDialogBase::slotYes(); -} - -int -GameEndDlg::extraTurns() -{ - return turnCount->value(); -} - -void -GameEndDlg::turnCountChange( int newTurnCount ) -{ - TQString newLbl = i18n("Extra turns: %1").arg( newTurnCount ); - turnCountLbl->setText( newLbl); -} |