xca/lib/db_x509req.h
Christian Hohnstaedt 113a201d39 Separate database from Mainwin for better cmdline support
New classes:
 - database_model: Manage the database tables (keys, req, cert, crl, templ)
   extracted from widgets/MW_database.cpp
 - arguments: parse commandline, dynamically create help text
2020-03-11 07:19:56 +01:00

45 lines
917 B
C++

/* vi: set sw=4 ts=4:
*
* Copyright (C) 2001 - 2007 Christian Hohnstaedt.
*
* All rights reserved.
*/
#ifndef __DB_X509REQ_H
#define __DB_X509REQ_H
#include "db_key.h"
#include "db_x509super.h"
#include "pki_temp.h"
#include "pki_x509req.h"
class db_x509req: public db_x509super
{
Q_OBJECT
protected:
dbheaderList getHeaders();
public:
db_x509req(database_model *parent);
pki_base* insert(pki_base *item);
pki_base *newPKI(enum pki_type type = none);
void fillContextMenu(QMenu *menu, const QModelIndex &index);
void store(QModelIndex index);
void signReq(QModelIndex index);
void toRequest(QModelIndex index);
void load();
QList<pki_x509req*> getAllRequests();
void resetX509count();
void setSigned(QModelIndex index, bool signe);
public slots:
void newItem(pki_temp *temp, pki_x509req *orig = NULL);
void newItem();
signals:
void newCert(pki_x509req *req);
};
#endif