xca/widgets/CertTreeView.h
Christian Hohnstaedt ed53777e78 Fix compiler warnings
clang version 3.8.0-2ubuntu4
gcc version 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.10)
2018-10-25 16:43:19 +02:00

49 lines
933 B
C++

/* vi: set sw=4 ts=4:
*
* Copyright (C) 2015 Christian Hohnstaedt.
*
* All rights reserved.
*/
#ifndef __CERTTREEVIEW_H
#define __CERTTREEVIEW_H
#include "X509SuperTreeView.h"
#include "lib/db_x509.h"
class CertTreeView: public X509SuperTreeView
{
Q_OBJECT
db_x509 *certs;
public:
CertTreeView(QWidget *parent) : X509SuperTreeView(parent)
{
certs = NULL;
}
void fillContextMenu(QMenu *menu, QMenu *subExport,
const QModelIndex &index, QModelIndexList indexes);
void setModel(QAbstractItemModel *model=NULL)
{
certs = dynamic_cast <db_x509*> (model);
X509SuperTreeView::setModel(model);
}
public slots:
void changeView();
void toRequest();
void toCertificate();
void toToken();
void toOtherToken();
void genCrl();
void loadPKCS7();
void loadPKCS12();
void deleteFromToken();
void manageRevocations();
void certRenewal();
void caProperties();
void revoke();
void unRevoke();
};
#endif