summaryrefslogtreecommitdiffstats
path: root/krec/krecconfig_files.h
blob: 0ef74b49d7ac609e9631e63a0833fcc8237c053a (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
/***************************************************************************
    copyright            : (C) 2003 by Arnold Krille
    email                : arnold@arnoldarts.de
 ***************************************************************************/

/***************************************************************************
 *                                                                         *
 *   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; version 2 of the License.               *
 *                                                                         *
 ***************************************************************************/

#ifndef KREC_CONFIGURE_FILES_H
#define KREC_CONFIGURE_FILES_H

#include <kcmodule.h>
#include <qstringlist.h>
#include <qstring.h>

class QBoxLayout;
class QRadioButton;
class QButtonGroup;
class QLineEdit;
class QHBox;
class QLabel;

class KRecConfigFilesWidget;

class KRecConfigFiles : public KCModule {
   Q_OBJECT
public:
	KRecConfigFiles( QWidget*, const char* =0, const QStringList& = QStringList() );
	~KRecConfigFiles();

	void load();
	void save();
	void defaults();
private slots:
	void ratechanged( int );
	void channelschanged( int );
	void bitschanged( int );
	void usedefaultschanged( bool );

private:
	QBoxLayout *_layout;
	KRecConfigFilesWidget *_filewidget;
};

#endif

// vim:sw=4:ts=4