summaryrefslogtreecommitdiffstats
path: root/knights/setpagegeneral.h
blob: 16ada66dfb8a68ff0537b9f6efd5eb7ca7d0aefe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
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