• Skip to content
  • Skip to link menu
Trinity API Reference
  • Trinity API Reference
  • tdeio/kssl
 

tdeio/kssl

  • tdeio
  • kssl
ksslcertdlg.h
1/* This file is part of the KDE project
2 *
3 * Copyright (C) 2001-2003 George Staikos <staikos@kde.org>
4 *
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
9 *
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Library General Public License for more details.
14 *
15 * You should have received a copy of the GNU Library General Public License
16 * along with this library; see the file COPYING.LIB. If not, write to
17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18 * Boston, MA 02110-1301, USA.
19 */
20
21#ifndef _KSSLCERTDLG_H
22#define _KSSLCERTDLG_H
23
24#include <tqstringlist.h>
25#include <kdialog.h>
26
27class TQWidget;
28class TQCheckBox;
29class TQRadioButton;
30class TQListView;
31class TQPushButton;
32
43class TDEIO_EXPORT KSSLCertDlg : public KDialog {
44 TQ_OBJECT
45public:
53 KSSLCertDlg(TQWidget *parent=0L, const char *name=0L, bool modal=false);
54
58 virtual ~KSSLCertDlg();
59
68 void setup(TQStringList certs, bool saveChecked = false, bool sendChecked = true) TDE_DEPRECATED;
69
77 void setupDialog(const TQStringList& certs, bool saveChecked = false, bool sendChecked = true);
78
84 TQString getChoice();
85
91 bool wantsToSend();
92
98 bool saveChoice();
99
105 void setHost(const TQString& host);
106
107private slots:
108 void slotSend();
109 void slotDont();
110
111private:
112 class KSSLCertDlgPrivate;
113 KSSLCertDlgPrivate *d;
114 TQCheckBox *_save;
115 TQRadioButton *_send, *_dont;
116 TQListView *_certs;
117 TQPushButton *_ok;
118 TQString _host;
119};
120
121
122class TDEIO_EXPORT KSSLCertDlgRet {
123public:
124 bool ok;
125 TQString choice;
126 bool send;
127 bool save;
128
129protected:
130 class KSSLCertDlgRetPrivate;
131 KSSLCertDlgRetPrivate *d;
132};
133
134TDEIO_EXPORT TQDataStream& operator<<(TQDataStream& s, const KSSLCertDlgRet& r);
135TDEIO_EXPORT TQDataStream& operator>>(TQDataStream& s, KSSLCertDlgRet& r);
136
137#endif
138
KSSLCertDlg
KDE X.509 Certificate Dialog.
Definition: ksslcertdlg.h:43

tdeio/kssl

Skip menu "tdeio/kssl"
  • Main Page
  • Alphabetical List
  • Class List
  • File List
  • Class Members
  • Related Pages

tdeio/kssl

Skip menu "tdeio/kssl"
  • arts
  • dcop
  • dnssd
  • interfaces
  •   kspeech
  •     interface
  •     library
  •   tdetexteditor
  • kate
  • kded
  • kdoctools
  • kimgio
  • kjs
  • libtdemid
  • libtdescreensaver
  • tdeabc
  • tdecmshell
  • tdecore
  • tdefx
  • tdehtml
  • tdeinit
  • tdeio
  •   bookmarks
  •   httpfilter
  •   kpasswdserver
  •   kssl
  •   tdefile
  •   tdeio
  •   tdeioexec
  • tdeioslave
  •   http
  • tdemdi
  •   tdemdi
  • tdenewstuff
  • tdeparts
  • tdeprint
  • tderandr
  • tderesources
  • tdespell2
  • tdesu
  • tdeui
  • tdeunittest
  • tdeutils
  • tdewallet
Generated for tdeio/kssl by doxygen 1.9.4
This website is maintained by Timothy Pearson.