summaryrefslogtreecommitdiffstats
path: root/kmyfirewall/kmfdisclaimer.cpp
blob: 9fa23683a91333f3f11966cf3c3c60aadd9717be (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
/***************************************************************************
 begin                : Tue Mar 19 2002
 copyright            : (C) 2002 by Christian Hubinger
 email                : a9806056@unet.univie.ac.at
***************************************************************************/

/***************************************************************************
 *                                                                         *
 *   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.                                   *
 *                                                                         *
 ***************************************************************************/

#include "kmfdisclaimer.h"
#include "kmyfirewall.h" 
// kde
#include <kconfig.h>
#include <ksimpleconfig.h>
#include <kurl.h>
#include <kdebug.h>
#include <kstandarddirs.h>
#include <klocale.h>
#include <kapplication.h> 
// qt
#include <qmessagebox.h>
#include <qfile.h>
#include <qstring.h>
#include <qcheckbox.h>

KMFDisclaimer::KMFDisclaimer( QWidget *parent, const char *name, bool modal, WFlags fl ) : KMyFirewallDisclaimer( parent, name, modal, fl ) {}
KMFDisclaimer::~KMFDisclaimer() {}

void KMFDisclaimer::accept() {
	KConfig * _config = kapp->config();
	_config->setGroup( "STARTUP" );
	if ( c_show->isChecked() ) {
		_config->writeEntry( "show_disclaimer", "false" );
		_config->sync();
	} else {
		_config->writeEntry( "show_disclaimer", "true" );
		_config->sync();
	}
	QDialog::accept();
}

#include "kmfdisclaimer.moc"