mirror of
https://github.com/chris2511/xca.git
synced 2026-09-13 18:46:25 +05:00
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.
39 lines
720 B
C++
39 lines
720 B
C++
/* vi: set sw=4 ts=4:
|
|
*
|
|
* Copyright (C) 2006 - 2015 Christian Hohnstaedt.
|
|
*
|
|
* All rights reserved.
|
|
*/
|
|
|
|
#ifndef __X509SUPERTREEVIEW_H
|
|
#define __X509SUPERTREEVIEW_H
|
|
|
|
#include "XcaTreeView.h"
|
|
#include "lib/db_x509req.h"
|
|
|
|
class X509SuperTreeView: public XcaTreeView
|
|
{
|
|
Q_OBJECT
|
|
db_x509super *x509super;
|
|
|
|
public:
|
|
QMenu *transform;
|
|
X509SuperTreeView(QWidget *parent) : XcaTreeView(parent)
|
|
{
|
|
x509super = NULL;
|
|
}
|
|
void fillContextMenu(QMenu *menu, QMenu *subExport,
|
|
const QModelIndex &index, QModelIndexList indexes);
|
|
void setModel(db_x509super *model=NULL)
|
|
{
|
|
x509super = model;
|
|
XcaTreeView::setModel(model);
|
|
}
|
|
|
|
public slots:
|
|
void extractPubkey();
|
|
void toTemplate();
|
|
void toOpenssl();
|
|
};
|
|
#endif
|