~ubuntu-branches/ubuntu/wily/psi/wily

« back to all changes in this revision

Viewing changes to src/Certificates/CertificateDisplayDialog.h

  • Committer: Bazaar Package Importer
  • Author(s): Jan Niehusmann
  • Date: 2009-09-25 17:49:51 UTC
  • mfrom: (6.1.3 sid)
  • Revision ID: james.westby@ubuntu.com-20090925174951-lvm7kdap82o8xhn3
Tags: 0.13-1
* Updated to upstream version 0.13
* Set Standards-Version to 3.8.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2003  Justin Karneges
 
3
 *
 
4
 * This program is free software; you can redistribute it and/or
 
5
 * modify it under the terms of the GNU General Public License
 
6
 * as published by the Free Software Foundation; either version 2
 
7
 * of the License, or (at your option) any later version.
 
8
 *
 
9
 * This program is distributed in the hope that it will be useful,
 
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
 * GNU General Public License for more details.
 
13
 *
 
14
 * You should have received a copy of the GNU General Public License
 
15
 * along with this library; if not, write to the Free Software
 
16
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
17
 *
 
18
 */
 
19
 
 
20
#ifndef CERTIFICATEDISPLAYDIALOG_H
 
21
#define CERTIFICATEDISPLAYDIALOG_H
 
22
 
 
23
#include <QtCrypto>
 
24
 
 
25
#include "ui_CertificateDisplay.h"
 
26
 
 
27
class CertificateDisplayDialog : public QDialog
 
28
{
 
29
                Q_OBJECT
 
30
 
 
31
        public:
 
32
                CertificateDisplayDialog(const QCA::Certificate &, int result, QCA::Validity, QWidget *parent=0);
 
33
 
 
34
        protected:
 
35
                static void setLabelStatus(QLabel& l, bool ok);
 
36
                static QString makePropEntry(QCA::CertificateInfoType var, const QString &name, const QCA::CertificateInfo &list);
 
37
                QString makePropTable(const QString &heading, const QCA::CertificateInfo &props);
 
38
 
 
39
        private:
 
40
                Ui::CertificateDisplay ui_;
 
41
};
 
42
 
 
43
#endif