summaryrefslogtreecommitdiffstats
path: root/knights/setpagegeneral.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-02-17 01:24:36 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-02-17 01:24:36 +0000
commita8c9924456e5335c964e4e55b2dde1963c88726f (patch)
treef5bf107ba079ae460536da778ce2da5e6c68aa69 /knights/setpagegeneral.h
downloadknights-a8c9924456e5335c964e4e55b2dde1963c88726f.tar.gz
knights-a8c9924456e5335c964e4e55b2dde1963c88726f.zip
Added KDE3 version of Knights
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/knights@1091568 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'knights/setpagegeneral.h')
-rw-r--r--knights/setpagegeneral.h80
1 files changed, 80 insertions, 0 deletions
diff --git a/knights/setpagegeneral.h b/knights/setpagegeneral.h
new file mode 100644
index 0000000..16ada66
--- /dev/null
+++ b/knights/setpagegeneral.h
@@ -0,0 +1,80 @@
+/***************************************************************************
+ setpagegeneral.h - description
+ -------------------
+ begin : Fri Nov 23 2001
+ copyright : (C) 2003 by Troy Corbin Jr.
+ email : tcorbin@users.sourceforge.net
+ ***************************************************************************/
+
+/***************************************************************************
+ * *
+ * This program is free software; you can redistribute it and/or modify *
+ * it under the terms of the GNU General Public License as published by *
+ * the Free Software Foundation; either version 2 of the License, or *
+ * (at your option) any later version. *
+ * *
+ ***************************************************************************/
+
+#ifndef SETPAGEGENERAL_H
+#define SETPAGEGENERAL_H
+
+#include <klineedit.h>
+#include <qwidget.h>
+#include <qhbox.h>
+#include <qlabel.h>
+#include <qlayout.h>
+#include <qgroupbox.h>
+#include <qbuttongroup.h>
+#include <qpushbutton.h>
+#include <qradiobutton.h>
+#include <qcheckbox.h>
+#include "resource.h"
+
+/**
+ *@author Troy Corbin Jr.
+ */
+
+class setPageGeneral : public QVBoxLayout
+{
+ Q_OBJECT
+ public:
+ setPageGeneral(QWidget *parent=0, resource *Rsrc=0);
+ ~setPageGeneral();
+ signals:
+ void enableApply( void );
+ public slots:
+ void slot_AutoSave( int state );
+ void slot_Init( int state );
+ void slot_UserName( const QString& );
+ void slot_Pause_On_Minimize( bool state );
+ void slot_Auto_Queen( bool state );
+ void slot_Auto_Flag( bool state );
+ void slot_Reuse_PGN( bool );
+ void slot_PGN_Filename( const QString& );
+ void slot_PGN_Filename_Button( void );
+ private:
+ QWidget *Parent;
+ resource *Resource;
+
+ QGroupBox *GROUP_UserName;
+ KLineEdit *EDIT_UserName;
+ QHBox *BOX_SaveInit;
+ QButtonGroup *GROUP_AutoSave;
+ QRadioButton *BUTTON_AutoSave_Yes;
+ QRadioButton *BUTTON_AutoSave_No;
+ QRadioButton *BUTTON_AutoSave_Ask;
+ QButtonGroup *GROUP_OnInit;
+ QRadioButton *BUTTON_Init_Nothing;
+ QRadioButton *BUTTON_Init_VsPC;
+ QRadioButton *BUTTON_Init_Connect;
+ QGroupBox *GROUP_Reuse_PGN;
+ QCheckBox *BUTTON_Reuse_PGN;
+ QHBox *BOX_Reuse_PGN;
+ KLineEdit *EDIT_PGN_Filename;
+ QPushButton *BUTTON_PGN_Filename;
+ QCheckBox *BUTTON_Pause_On_Minimize;
+ QCheckBox *BUTTON_Auto_Queen;
+ QCheckBox *BUTTON_Auto_Flag;
+};
+
+#endif