mirror of
https://github.com/chris2511/xca.git
synced 2026-09-12 19:51:05 +05:00
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
38 lines
722 B
C++
38 lines
722 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 <QObject>
|
|
#include <QPixmap>
|
|
|
|
class db_temp: public db_x509name
|
|
{
|
|
Q_OBJECT
|
|
protected:
|
|
QList<pki_temp*> predefs;
|
|
|
|
public:
|
|
db_temp(database_model *parent);
|
|
~db_temp();
|
|
pki_base *newPKI(enum pki_type type = none);
|
|
bool runTempDlg(pki_temp *temp);
|
|
bool alterTemp(pki_temp *temp);
|
|
void fillContextMenu(QMenu *menu, const QModelIndex &index);
|
|
QList<pki_temp*> getAllAndPredefs();
|
|
void newItem();
|
|
void showPki(pki_base *pki);
|
|
void load();
|
|
void store(QModelIndex index);
|
|
};
|
|
#endif
|