xca/widgets/NewKey.h
Christian Hohnstaedt de851ed3a9 Changed all header includes to QT4 names and included the correct component name
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
2010-06-13 11:49:38 +02:00

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