2 directoryserviceswidget.h
4 This file is part of Kleopatra, the KDE keymanager
5 Copyright (c) 2001,2002,2004 Klarälvdalens Datakonsult AB
7 Kleopatra is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 Kleopatra is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21 In addition, as a special exception, the copyright holders give
22 permission to link the code of this program with any edition of
23 the Qt library by Trolltech AS, Norway (or with modified versions
24 of Qt that use the same license as Qt), and distribute linked
25 combinations including the two. You must obey the GNU General
26 Public License in all respects for all of the code used other than
27 Qt. If you modify this file, you may extend this exception to
28 your version of the file, but you are not obligated to do so. If
29 you do not wish to do so, delete this exception statement from
33 #ifndef DIRECTORYSERVICESWIDGET_H
34 #define DIRECTORYSERVICESWIDGET_H
36 #include "kleo/kleo_export.h"
38 #include <QtGui/QWidget>
42 class KLEO_EXPORT DirectoryServicesWidget
: public QWidget
{
45 explicit DirectoryServicesWidget( QWidget
* parent
=0, Qt::WindowFlags f
=0 );
46 ~DirectoryServicesWidget();
55 AllSchemes
= HKP
|HTTP
|FTP
|LDAP
57 Q_DECLARE_FLAGS( Schemes
, Scheme
)
64 AllProtocols
= X509Protocol
|OpenPGPProtocol
66 Q_DECLARE_FLAGS( Protocols
, Protocol
)
68 void setAllowedSchemes( Schemes schemes
);
69 Schemes
allowedSchemes() const;
71 void setAllowedProtocols( Protocols protocols
);
72 Protocols
allowedProtocols() const;
74 void setX509Allowed( bool allowed
);
75 void setOpenPGPAllowed( bool allowed
);
77 void setReadOnlyProtocols( Protocols protocols
);
78 Protocols
readOnlyProtocols() const;
80 void setOpenPGPReadOnly( bool ro
);
81 void setX509ReadOnly( bool ro
);
83 void addOpenPGPServices( const KUrl::List
& urls
);
84 KUrl::List
openPGPServices() const;
86 void addX509Services( const KUrl::List
& urls
);
87 KUrl::List
x509Services() const;
98 Q_PRIVATE_SLOT( d
, void slotNewClicked() )
99 Q_PRIVATE_SLOT( d
, void slotNewX509Clicked() )
100 Q_PRIVATE_SLOT( d
, void slotNewOpenPGPClicked() )
101 Q_PRIVATE_SLOT( d
, void slotDeleteClicked() )
102 Q_PRIVATE_SLOT( d
, void slotSelectionChanged() )
103 Q_PRIVATE_SLOT( d
, void slotShowUserAndPasswordToggled(bool) )
108 inline void Kleo::DirectoryServicesWidget::setOpenPGPAllowed( bool allowed
) {
110 setAllowedProtocols( allowedProtocols() | OpenPGPProtocol
);
112 setAllowedProtocols( allowedProtocols() & ~OpenPGPProtocol
);
115 inline void Kleo::DirectoryServicesWidget::setX509Allowed( bool allowed
) {
117 setAllowedProtocols( allowedProtocols() | X509Protocol
);
119 setAllowedProtocols( allowedProtocols() & ~X509Protocol
);
122 inline void Kleo::DirectoryServicesWidget::setOpenPGPReadOnly( bool ro
) {
124 setReadOnlyProtocols( readOnlyProtocols() | OpenPGPProtocol
);
126 setReadOnlyProtocols( readOnlyProtocols() & ~OpenPGPProtocol
);
129 inline void Kleo::DirectoryServicesWidget::setX509ReadOnly( bool ro
) {
131 setReadOnlyProtocols( readOnlyProtocols() | X509Protocol
);
133 setReadOnlyProtocols( readOnlyProtocols() & ~X509Protocol
);
136 #endif // DIRECTORYSERVICESWIDGET_H