Subversion Repositories public

Rev

Rev 88 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 88 Rev 230
1
/***************************************************************************
1
/***************************************************************************
2
 *   Copyright (C) 2007 by Andreas Theofilu                             *
2
 *   Copyright (C) 2007 by Andreas Theofilu                             *
3
 *   andreas@theosys.at                                               *
3
 *   andreas@theosys.at                                               *
4
 *                                                                         *
4
 *                                                                         *
5
 *   This program is free software; you can redistribute it and/or modify  *
5
 *   This program is free software; you can redistribute it and/or modify  *
6
 *   it under the terms of the GNU General Public License as published by  *
6
 *   it under the terms of the GNU General Public License as published by  *
7
 *   the Free Software Foundation version 3 of the License.                *
7
 *   the Free Software Foundation version 3 of the License.                *
8
 *                                                                         *
8
 *                                                                         *
9
 *   This program is distributed in the hope that it will be useful,       *
9
 *   This program is distributed in the hope that it will be useful,       *
10
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
10
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
11
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
11
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
12
 *   GNU General Public License for more details.                          *
12
 *   GNU General Public License for more details.                          *
13
 *                                                                         *
13
 *                                                                         *
14
 *   You should have received a copy of the GNU General Public License     *
14
 *   You should have received a copy of the GNU General Public License     *
15
 *   along with this program; if not, write to the                         *
15
 *   along with this program; if not, write to the                         *
16
 *   Free Software Foundation, Inc.,                                       *
16
 *   Free Software Foundation, Inc.,                                       *
17
 *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
17
 *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
18
 ***************************************************************************/
18
 ***************************************************************************/
19
 
19
 
20
#ifndef SETTINGSWIDGET_H
20
#ifndef SETTINGSWIDGET_H
21
#define SETTINGSWIDGET_H
21
#define SETTINGSWIDGET_H
22
 
22
 
23
#include "settingswidgetbase.h"
23
#include "settingswidgetbase.h"
24
 
24
 
25
class settingsWidget : public settingsWidgetBase
25
class settingsWidget : public settingsWidgetBase
26
{
26
{
27
		Q_OBJECT
27
		Q_OBJECT
28
 
28
 
29
	public:
29
	public:
30
		settingsWidget ( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
30
		settingsWidget ( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 );
31
		~settingsWidget();
31
		~settingsWidget();
32
		/*$PUBLIC_FUNCTIONS$*/
32
		/*$PUBLIC_FUNCTIONS$*/
33
 
33
 
34
	public slots:
34
	public slots:
35
		/*$PUBLIC_SLOTS$*/
35
		/*$PUBLIC_SLOTS$*/
36
		virtual void          btCancelSlot();
36
		virtual void          btCancelSlot();
37
		virtual void          btSaveSlot();
37
		virtual void          btSaveSlot();
-
 
38
		virtual void	      cbSerialSlot(bool state);
-
 
39
		virtual void	      rbFr50Slot(bool state);
-
 
40
		virtual void	      rbFr405Slot(bool state);
38
 
41
 
39
	protected:
42
	protected:
40
		/*$PROTECTED_FUNCTIONS$*/
43
		/*$PROTECTED_FUNCTIONS$*/
41
 
44
 
42
	protected slots:
45
	protected slots:
43
		/*$PROTECTED_SLOTS$*/
46
		/*$PROTECTED_SLOTS$*/
44
};
47
};
45
 
48
 
46
#endif
49
#endif
47
 
50
 
48
 
51