KIO
kcmssl.h
Go to the documentation of this file.
00001 /* This file is part of the KDE project 00002 Copyright (C) 2010 Andreas Hartmetz <ahartmetz@gmail.com> 00003 00004 This library is free software; you can redistribute it and/or 00005 modify it under the terms of the GNU Library General Public 00006 License as published by the Free Software Foundation; either 00007 version 2 of the License, or (at your option) any later version. 00008 00009 This program is distributed in the hope that it will be useful, 00010 but WITHOUT ANY WARRANTY; without even the implied warranty of 00011 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00012 GNU General Public License for more details. 00013 00014 You should have received a copy of the GNU General Public License 00015 along with this program; if not, write to the Free Software 00016 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 00017 02110-1301, USA. 00018 */ 00019 00020 #ifndef KCMSSL_H 00021 #define KCMSSL_H 00022 00023 #include <kcmodule.h> 00024 00025 class KTabWidget; 00026 class CaCertificatesPage; 00027 00028 class KcmSsl : public KCModule 00029 { 00030 Q_OBJECT 00031 public: 00032 KcmSsl(QWidget *parent, const QVariantList &); 00033 00034 virtual void load(); 00035 virtual void save(); 00036 virtual void defaults(); 00037 00038 private Q_SLOTS: 00039 void pageChanged(bool isChanged); 00040 00041 private: 00042 KTabWidget *m_tabs; 00043 CaCertificatesPage *m_caCertificatesPage; 00044 }; 00045 00046 #endif
KDE 4.6 API Reference