xca/lib/db_temp.h
Christian Hohnstaedt 75a6d117f3 Refactor context menu
Better support multiple selections
 - Export all selected items into one PEM file
 - Batch Revoke/unrevoke/renew of many selected certificates
   of the same issuer
 - allow exporting templates as PEM

Add Feat. Reg. #83 Option to revoke old certificate when renewing

Always put all signed certificate to the newest CA.
If a CA certificate is renewed, all certificates issued by
the old CA are now shown as signed by the new one.
2015-05-17 09:17:04 +02:00

41 lines
811 B
C++

/* vi: set sw=4 ts=4:
*
* Copyright (C) 2001 - 2007 Christian Hohnstaedt.
*
* All rights reserved.
*/
#ifndef __DB_TEMP_H
#define __DB_TEMP_H
#include "db_base.h"
#include "pki_temp.h"
#include "db_x509super.h"
#include <QtCore/QObject>
#include <QtGui/QPixmap>
class db_temp: public db_x509name
{
Q_OBJECT
protected:
QPixmap *keyicon;
pki_base *predefs;
dbheaderList getHeaders();
public:
db_temp(QString DBfile, MainWindow *mw);
~db_temp();
pki_base *newPKI(db_header_t *head = NULL);
bool runTempDlg(pki_temp *temp);
bool alterTemp(pki_temp *temp);
void fillContextMenu(QMenu *menu, const QModelIndex &index);
pki_base *getByName(QString desc);
QStringList getDescPredefs();
void newItem();
void showPki(pki_base *pki);
void load();
void store(QModelIndex index);
};
#endif