view ui/certificatetablemodel.h @ 345:fe86c45755d8

Add another hint for nss include lookup. On Ubuntu nspr is installed in it's own subdirectory
author Andre Heinecke <andre.heinecke@intevation.de>
date Thu, 10 Apr 2014 11:11:27 +0200
parents fba80767fd7a
children e6aa82466420
line wrap: on
line source
#ifndef CERTIFICATETABLEMODEL_H
#define CERTIFICATETABLEMODEL_H

/**
 * @file certificatetablemodel.h
 * @brief Table model for certificates.
 */

#include <QAbstractTableModel>
#include <QString>
#include "certificate.h"

class CertificateTabelModel : public QAbstractTableModel
{
    Q_OBJECT

public:
    CertificateTabelModel(QObject *parent = 0);

    void addCertificate(const Certificate &certificate);
    int rowCount(const QModelIndex &parent = QModelIndex()) const;
    int columnCount(const QModelIndex &parent = QModelIndex()) const;

    QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const;
    QVariant headerData(int section, Qt::Orientation orientation,
            int role = Qt::DisplayRole) const;

private:
    QList<Certificate> certificates;
    QList<QString> header;
};

#endif

http://wald.intevation.org/projects/trustbridge/