diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-06 12:36:58 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-06 12:36:58 -0600 |
commit | d08a0ede1d2cb15bb14b0ff75eacf5c682b1fa0a (patch) | |
tree | e5ce4701bac540038a279b4e208c86390a24ba11 /src/configconnectoptions.cpp | |
download | kvpnc-d08a0ede1d2cb15bb14b0ff75eacf5c682b1fa0a.tar.gz kvpnc-d08a0ede1d2cb15bb14b0ff75eacf5c682b1fa0a.zip |
Initial import of year-and-a-half-old upstream version 0.9.6a
Diffstat (limited to 'src/configconnectoptions.cpp')
-rw-r--r-- | src/configconnectoptions.cpp | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/src/configconnectoptions.cpp b/src/configconnectoptions.cpp new file mode 100644 index 0000000..e0cddfe --- /dev/null +++ b/src/configconnectoptions.cpp @@ -0,0 +1,58 @@ +/*************************************************************************** + * Copyright (C) 2004 by Christoph Thielecke * + * crissi99@gmx.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; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ +#include "configconnectoptions.h" +#include <qcheckbox.h> +#include <kcombobox.h> + +#include <iostream> + +ConfigConnectOptions::ConfigConnectOptions(QWidget *parent) : ConfigConnectOptionsBase(parent) +{ + dialogModified=false; + + // connect changed signals to own signal + connect(AutoConnectProfileComboBox,SIGNAL(textChanged ( const QString & )),this,SIGNAL(changed())); + connect(checkMinimizeAfterConnectCheck,SIGNAL(stateChanged ( int )),this,SIGNAL(changed())); + connect(SilentQuitcheckBox,SIGNAL(stateChanged ( int )),this,SIGNAL(changed())); + connect(DoAutoConnectCheckBox,SIGNAL(stateChanged ( int )),this,SIGNAL(changed())); + + // connect changed to slot + connect(this,SIGNAL(changed ()),this,SLOT(dialogChanged())); +} + + +ConfigConnectOptions::~ConfigConnectOptions() +{} + + +void ConfigConnectOptions::autoConnectToggled(bool) +{ + if (DoAutoConnectCheckBox->isChecked()) + AutoConnectProfileComboBox->setEnabled(true); + else + AutoConnectProfileComboBox->setEnabled(false); +} + +void ConfigConnectOptions::dialogChanged() +{ +// std::cout << "ConfigConnectOptions::dialogChanged()" << std::endl; + dialogModified=true; +} + |