mirror of
https://github.com/chris2511/xca.git
synced 2026-09-14 11:06:19 +05:00
By Andreas Piesk. Thanks! adapt to HEAD since the patch is based on 0.6.4 drop qt4/Qt include in list of includes during configuration
30 lines
499 B
C++
30 lines
499 B
C++
/* vi: set sw=4 ts=4:
|
|
*
|
|
* Copyright (C) 2001 - 2010 Christian Hohnstaedt.
|
|
*
|
|
* All rights reserved.
|
|
*/
|
|
|
|
#ifndef __NEWKEY_H
|
|
#define __NEWKEY_H
|
|
|
|
#include "ui_NewKey.h"
|
|
#include <QtCore/QStringList>
|
|
|
|
class NewKey: public QDialog, public Ui::NewKey
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
NewKey(QWidget *parent, QString name);
|
|
int getKeytype();
|
|
int getKeysize();
|
|
int getKeyCurve_nid();
|
|
unsigned long getKeyCardSlot();
|
|
bool isToken();
|
|
public slots:
|
|
void on_keyType_currentIndexChanged(int);
|
|
|
|
};
|
|
#endif
|