• Skip to content
  • Skip to link menu
KDE API Reference
  • KDE API Reference
  • kdepim API Reference
  • KDE Home
  • Contact Us
 

kleopatra

  • sources
  • kde-4.14
  • kdepim
  • kleopatra
  • dialogs
lookupcertificatesdialog.h
Go to the documentation of this file.
1 /* -*- mode: c++; c-basic-offset:4 -*-
2  dialogs/lookupcertificatesdialog.h
3 
4  This file is part of Kleopatra, the KDE keymanager
5  Copyright (c) 2008 Klarälvdalens Datakonsult AB
6 
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.
11 
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.
16 
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
20 
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
30  your version.
31 */
32 
33 #ifndef __KLEOPATRA_DIALOGS_LOOKUPCERTIFICATESDIALOG_H__
34 #define __KLEOPATRA_DIALOGS_LOOKUPCERTIFICATESDIALOG_H__
35 
36 #include <QDialog>
37 
38 #include <utils/pimpl_ptr.h>
39 
40 #include <vector>
41 
42 namespace GpgME {
43  class Key;
44 }
45 
46 namespace Kleo {
47 namespace Dialogs {
48 
49  class LookupCertificatesDialog : public QDialog {
50  Q_OBJECT
51  public:
52  explicit LookupCertificatesDialog( QWidget * parent=0, Qt::WindowFlags f=0 );
53  ~LookupCertificatesDialog();
54 
55  void setCertificates( const std::vector<GpgME::Key> & certs );
56  std::vector<GpgME::Key> selectedCertificates() const;
57 
58  void setPassive( bool passive );
59  bool isPassive() const;
60  void setSearchText( const QString &text );
61  QString searchText() const;
62 
63  Q_SIGNALS:
64  void searchTextChanged( const QString & text );
65  void saveAsRequested( const std::vector<GpgME::Key> & certs );
66  void importRequested( const std::vector<GpgME::Key> & certs );
67  void detailsRequested( const GpgME::Key & certs );
68 
69  public Q_SLOTS:
70  /* reimp */ void accept();
71 
72  private:
73  class Private;
74  kdtools::pimpl_ptr<Private> d;
75  Q_PRIVATE_SLOT( d, void slotSearchTextChanged() )
76  Q_PRIVATE_SLOT( d, void slotSearchClicked() )
77  Q_PRIVATE_SLOT( d, void slotSelectionChanged() )
78  Q_PRIVATE_SLOT( d, void slotDetailsClicked() )
79  Q_PRIVATE_SLOT( d, void slotSaveAsClicked() )
80  };
81 
82 }
83 }
84 
85 #endif /* __KLEOPATRA_DIALOGS_LOOKUPCERTIFICATESDIALOG_H__ */
QWidget
Kleo::Dialogs::LookupCertificatesDialog::searchTextChanged
void searchTextChanged(const QString &text)
Kleo::Dialogs::LookupCertificatesDialog
Definition: lookupcertificatesdialog.h:49
kdtools::pimpl_ptr< Private >
pimpl_ptr.h
Kleo::Dialogs::LookupCertificatesDialog::selectedCertificates
std::vector< GpgME::Key > selectedCertificates() const
Definition: lookupcertificatesdialog.cpp:198
Kleo::Dialogs::LookupCertificatesDialog::importRequested
void importRequested(const std::vector< GpgME::Key > &certs)
Kleo::Dialogs::LookupCertificatesDialog::setSearchText
void setSearchText(const QString &text)
Definition: lookupcertificatesdialog.cpp:213
Kleo::Dialogs::LookupCertificatesDialog::~LookupCertificatesDialog
~LookupCertificatesDialog()
Definition: lookupcertificatesdialog.cpp:187
Kleo::Dialogs::LookupCertificatesDialog::searchText
QString searchText() const
Definition: lookupcertificatesdialog.cpp:218
d
#define d
Definition: adduseridcommand.cpp:89
Kleo::Dialogs::LookupCertificatesDialog::detailsRequested
void detailsRequested(const GpgME::Key &certs)
Kleo::Dialogs::LookupCertificatesDialog::LookupCertificatesDialog
LookupCertificatesDialog(QWidget *parent=0, Qt::WindowFlags f=0)
Definition: lookupcertificatesdialog.cpp:180
Kleo::Dialogs::LookupCertificatesDialog::accept
void accept()
Definition: lookupcertificatesdialog.cpp:223
QString
Kleo::Dialogs::LookupCertificatesDialog::isPassive
bool isPassive() const
Definition: lookupcertificatesdialog.cpp:209
QDialog
Qt::WindowFlags
typedef WindowFlags
QObject::parent
QObject * parent() const
Kleo::Dialogs::LookupCertificatesDialog::setPassive
void setPassive(bool passive)
Definition: lookupcertificatesdialog.cpp:202
Kleo::Dialogs::LookupCertificatesDialog::saveAsRequested
void saveAsRequested(const std::vector< GpgME::Key > &certs)
Kleo::Dialogs::LookupCertificatesDialog::setCertificates
void setCertificates(const std::vector< GpgME::Key > &certs)
Definition: lookupcertificatesdialog.cpp:192
This file is part of the KDE documentation.
Documentation copyright © 1996-2020 The KDE developers.
Generated on Mon Jun 22 2020 13:33:11 by doxygen 1.8.7 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.

kleopatra

Skip menu "kleopatra"
  • Main Page
  • Namespace List
  • Namespace Members
  • Alphabetical List
  • Class List
  • Class Hierarchy
  • Class Members
  • File List
  • File Members

kdepim API Reference

Skip menu "kdepim API Reference"
  • akonadi_next
  • akregator
  • blogilo
  • calendarsupport
  • console
  •   kabcclient
  •   konsolekalendar
  • kaddressbook
  • kalarm
  •   lib
  • kdgantt2
  • kjots
  • kleopatra
  • kmail
  • knode
  • knotes
  • kontact
  • korgac
  • korganizer
  • ktimetracker
  • libkdepim
  • libkleo
  • libkpgp
  • mailcommon
  • messagelist
  • messageviewer
  • pimprint

Search



Report problems with this website to our bug tracking system.
Contact the specific authors with questions and comments about the page contents.

KDE® and the K Desktop Environment® logo are registered trademarks of KDE e.V. | Legal