view ui/listupdatedialog.h @ 84:00a93409e93e

Keep raw data around to later pass it to the installer
author Andre Heinecke <aheinecke@intevation.de>
date Thu, 20 Mar 2014 16:21:27 +0000
parents 1f27d6db5ee3
children 252ffe6e27fd
line wrap: on
line source
#ifndef LISTUPDATEDIALOG_H
#define LISTUPDATEDIALOG_H

#include "certificatelist.h"
#include <QDialog>
/**
 * @file listupdatedialog.h
 * @brief The dialog for certificate selection.
 */

class QListWidget;

class ListUpdateDialog : public QDialog
{
public:
    /** @brief Create a list update dialog for the listToInstall */
    ListUpdateDialog(QDialog *parent, const CertificateList &listToInstall);

private:
    CertificateList mCertificateList;
    void setupGUI();

    QListWidget *mInstallListWidget;
    QListWidget *mRemoveListWidget;

private slots:
    void executeUpdate();
};

#endif // LISTUPDATEDIALOG_H

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