1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
|
/* vi: set sw=4 ts=4:
*
* Copyright (C) 2001 - 2010 Christian Hohnstaedt.
*
* All rights reserved.
*/
#ifndef __IMPORTMULTI_H
#define __IMPORTMULTI_H
#include "ui_ImportMulti.h"
#include "lib/db_token.h"
#include "lib/db_base.h"
#include <QList>
class pki_x509;
class pki_key;
class ImportMulti: public QDialog, private Ui::ImportMulti
{
Q_OBJECT
private:
slotid slot{};
db_token *mcont{};
void importError(QStringList failed);
public:
ImportMulti(QWidget *parent);
~ImportMulti();
void addItem(pki_base *pki);
pki_base *getSelected();
pki_base *import(const QModelIndex &idx);
pki_base *import(pki_base *pki);
void importIndexes(const QModelIndexList &indexes);
void execute(int force=0, QStringList failed = QStringList());
int entries();
void tokenInfo(const slotid &s);
void dragEnterEvent(QDragEnterEvent *event);
void dropEvent(QDropEvent *event);
bool openDB() const;
void showDetail(pki_base *pki);
void showDetail(const QModelIndex &idx);
public slots:
void on_butRemove_clicked();
void on_butImport_clicked();
void on_butDetails_clicked();
void on_butOk_clicked();
void on_deleteToken_clicked();
void on_renameToken_clicked();
};
#endif
|