summaryrefslogtreecommitdiffstats
path: root/kmyfirewall/kmfdisclaimer.cpp
blob: 25e833494090a9350af4daa1068183ebdf64dabc (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 <tdeconfig.h>
#include <ksimpleconfig.h>
#include <kurl.h>
#include <kdebug.h>
#include <kstandarddirs.h>
#include <tdelocale.h>
#include <tdeapplication.h> 
// qt
#include <tqmessagebox.h>
#include <tqfile.h>
#include <tqstring.h>
#include <tqcheckbox.h>

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

void KMFDisclaimer::accept() {
	TDEConfig * _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();
	}
	TQDialog::accept();
}

#include "kmfdisclaimer.moc"