~ubuntu-branches/ubuntu/oneiric/psi/oneiric

« back to all changes in this revision

Viewing changes to src/sslcertdlg.h

  • Committer: Bazaar Package Importer
  • Author(s): Jan Niehusmann
  • Date: 2005-01-10 17:41:43 UTC
  • mfrom: (1.2.1 upstream) (2.1.2 hoary)
  • Revision ID: james.westby@ubuntu.com-20050110174143-ltocv5zapl6blf5d
Tags: 0.9.3-1
* New upstream release
* Cleaned up debian/rules (some things are done by upstream Makefiles now)
* Fixed some lintian warnings:
  - removed executable bit from some .png files
  - moved psi.desktop to /usr/share/applications
* Updated menu files

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef SSLCERTDLG_H
 
2
#define SSLCERTDLG_H
 
3
 
 
4
#include"ui_sslcert.h"
 
5
#include<qvaluelist.h>
 
6
#include<qca.h>
 
7
 
 
8
class SSLCertDlg : public SSLCertUI
 
9
{
 
10
        Q_OBJECT
 
11
public:
 
12
        SSLCertDlg(QWidget *parent=0, const char *name=0);
 
13
 
 
14
        void setCert(const QCA::Cert &, int result);
 
15
 
 
16
        static void showCert(const QCA::Cert &, int result);
 
17
 
 
18
private:
 
19
        QString makePropTable(const QString &heading, const QCA::CertProperties &props);
 
20
};
 
21
 
 
22
#endif