diff options
Diffstat (limited to 'src/profilecertoptions.cpp')
-rw-r--r-- | src/profilecertoptions.cpp | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/src/profilecertoptions.cpp b/src/profilecertoptions.cpp new file mode 100644 index 0000000..3558144 --- /dev/null +++ b/src/profilecertoptions.cpp @@ -0,0 +1,67 @@ +/*************************************************************************** + * Copyright (C) 2004 by Christoph Thielecke * + * [email protected] * + * * + * 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 "profilecertoptions.h" + +#include <qcheckbox.h> +#include <qspinbox.h> +#include <klineedit.h> +#include <kurlrequester.h> +#include <qlabel.h> +#include <klocale.h> +#include <kcombobox.h> +#include "widgetnotifyhelper.h" +#include <iostream> + +ProfileCertOptions::ProfileCertOptions(QWidget *parent) + : ProfileCertOptionsBase(parent) +{ + WidgetNotifyHelper h; + h.setupChangedAction(this); + dialogModified=false; +} + + +ProfileCertOptions::~ProfileCertOptions() +{} + +void ProfileCertOptions::dialogChanged() +{ +// std::cout << "ProfileCertOptions::dialogChanged()" << std::endl; + dialogModified=true; +} + +void ProfileCertOptions::useSpecialServerCertificateToggled(bool) +{ + if (UseSpecialServerCertificateCheckBox->isChecked()) + { + SpecialServerCertificateURLRequester->setEnabled(TRUE); + } + else + { + SpecialServerCertificateURLRequester->setEnabled(FALSE); + } +} + + + + + + + |