mirror of
https://github.com/chris2511/xca.git
synced 2026-09-12 19:51:05 +05:00
Why? - QT will switch from qmake to cmake sooner or later. - autotools are good for unix-ish systems, cmake also for macOS and Xcode as well as Windows and VS-code - Cross compiling the windows-binaries on linux is not very helpful to attract windows-centric developers. Also drop qmake's xca.pro Generate man-page and sphinx sources of commandline arguments during build by executing xca (xcadoc.cpp). Generating Version-patchlevel and git hash is now also OS independent.
49 lines
1008 B
C++
49 lines
1008 B
C++
/* vi: set sw=4 ts=4:
|
|
*
|
|
* Copyright (C) 2001 - 2010 Christian Hohnstaedt.
|
|
*
|
|
* All rights reserved.
|
|
*/
|
|
|
|
#ifndef __DB_KEY_H
|
|
#define __DB_KEY_H
|
|
|
|
#include "exportType.h"
|
|
#include "db_base.h"
|
|
#include "pki_key.h"
|
|
|
|
class MainWindow;
|
|
class QModelIndex;
|
|
class QContextMenuEvent;
|
|
|
|
class db_key: public db_base
|
|
{
|
|
Q_OBJECT
|
|
|
|
protected:
|
|
virtual dbheaderList getHeaders();
|
|
exportType::etype clipboardFormat(QModelIndexList indexes) const;
|
|
public:
|
|
db_key();
|
|
QList<pki_key*> getUnusedKeys();
|
|
QList<pki_key*> getAllKeys();
|
|
pki_base *newPKI(enum pki_type type = none);
|
|
void inToCont(pki_base *pki);
|
|
void remFromCont(const QModelIndex &idx);
|
|
pki_base* insert(pki_base *item);
|
|
void setOwnPass(QModelIndex idx, enum pki_key::passType);
|
|
void loadContainer();
|
|
pki_key *newKey(const keyjob &task, const QString &name);
|
|
|
|
public slots:
|
|
void load();
|
|
void store(QModelIndex index);
|
|
|
|
signals:
|
|
void delKey(pki_key *delkey);
|
|
void newKey(pki_key *newkey);
|
|
void keyDone(pki_key *nkey);
|
|
};
|
|
|
|
#endif
|