summaryrefslogtreecommitdiffstats
path: root/atlantik/client/configdlg.h
diff options
context:
space:
mode:
authortoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
committertoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
commitc90c389a8a8d9d8661e9772ec4144c5cf2039f23 (patch)
tree6d8391395bce9eaea4ad78958617edb20c6a7573 /atlantik/client/configdlg.h
downloadtdegames-c90c389a8a8d9d8661e9772ec4144c5cf2039f23.tar.gz
tdegames-c90c389a8a8d9d8661e9772ec4144c5cf2039f23.zip
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdegames@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'atlantik/client/configdlg.h')
-rw-r--r--atlantik/client/configdlg.h139
1 files changed, 139 insertions, 0 deletions
diff --git a/atlantik/client/configdlg.h b/atlantik/client/configdlg.h
new file mode 100644
index 00000000..c1f74294
--- /dev/null
+++ b/atlantik/client/configdlg.h
@@ -0,0 +1,139 @@
+// Copyright (c) 2002-2004 Rob Kaper <cap@capsi.com>
+//
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// version 2 as published by the Free Software Foundation.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+// General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; see the file COPYING. If not, write to
+// the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+// Boston, MA 02110-1301, USA.
+
+#ifndef ATLANTIK_CONFIGDLG_H
+#define ATLANTIK_CONFIGDLG_H
+
+#include <qwidget.h>
+#include <qcheckbox.h>
+#include <qlineedit.h>
+
+#include <kdialogbase.h>
+
+class QString;
+
+class KPushButton;
+
+class Atlantik;
+class ConfigDialog;
+
+struct AtlantikConfig;
+
+class ConfigPlayer : public QWidget
+{
+Q_OBJECT
+
+public:
+ ConfigPlayer(ConfigDialog *configDialog, QWidget *parent, const char *name=0);
+
+ QString playerName();
+ QString playerImage();
+
+private slots:
+ void chooseImage();
+
+private:
+ void setImage();
+ void reset();
+
+ ConfigDialog *m_configDialog;
+ QLineEdit *m_playerName;
+ QString m_playerImage;
+ KPushButton *m_playerIcon;
+};
+
+class ConfigBoard : public QWidget
+{
+Q_OBJECT
+
+public:
+ ConfigBoard(ConfigDialog *configDialog, QWidget *parent, const char *name=0);
+
+ bool indicateUnowned();
+ bool highliteUnowned();
+ bool darkenMortgaged();
+ bool animateToken();
+ bool quartzEffects();
+
+private:
+ void reset();
+
+ ConfigDialog *m_configDialog;
+ QCheckBox *m_indicateUnowned, *m_highliteUnowned, *m_darkenMortgaged, *m_animateToken, *m_quartzEffects;
+};
+
+class ConfigMonopigator : public QWidget
+{
+Q_OBJECT
+
+public:
+ ConfigMonopigator(ConfigDialog *dialog, QWidget *parent, const char *name = 0);
+
+ bool connectOnStart();
+ bool hideDevelopmentServers();
+
+private:
+ void reset();
+
+ ConfigDialog *m_configDialog;
+ QCheckBox *m_connectOnStart, *m_hideDevelopmentServers;
+};
+
+class ConfigGeneral : public QWidget
+{
+Q_OBJECT
+
+public:
+ ConfigGeneral(ConfigDialog *dialog, QWidget *parent, const char *name = 0);
+
+ bool chatTimestamps();
+
+private:
+ void reset();
+
+ ConfigDialog *m_configDialog;
+ QCheckBox *m_chatTimestamps;
+};
+
+class ConfigDialog : public KDialogBase
+{
+Q_OBJECT
+
+public:
+ ConfigDialog(Atlantik *parent, const char *name=0);
+
+ bool chatTimestamps();
+ bool indicateUnowned();
+ bool highliteUnowned();
+ bool darkenMortgaged();
+ bool animateToken();
+ bool quartzEffects();
+ AtlantikConfig config();
+ QString playerName();
+ QString playerImage();
+ bool connectOnStart();
+ bool hideDevelopmentServers();
+
+private:
+ Atlantik *m_parent;
+ QFrame *p_general, *p_p13n, *p_board, *p_monopigator;
+ ConfigPlayer *configPlayer;
+ ConfigBoard *configBoard;
+ ConfigMonopigator *configMonopigator;
+ ConfigGeneral *configGeneral;
+};
+
+#endif