mirror of
https://github.com/chris2511/xca.git
synced 2026-09-13 18:46:25 +05:00
27 lines
417 B
C++
27 lines
417 B
C++
/* vi: set sw=4 ts=4:
|
|
*
|
|
* Copyright (C) 2001 - 2009 Christian Hohnstaedt.
|
|
*
|
|
* All rights reserved.
|
|
*/
|
|
|
|
#ifndef __NEWKEY_H
|
|
#define __NEWKEY_H
|
|
|
|
#include "ui_NewKey.h"
|
|
|
|
class NewKey: public QDialog, public Ui::NewKey
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
NewKey(QWidget *parent, QString name);
|
|
int getKeytype();
|
|
int getKeysize();
|
|
int getKeyCurve_nid();
|
|
public slots:
|
|
void on_keyType_currentIndexChanged(int);
|
|
|
|
};
|
|
#endif
|