mirror of
https://github.com/chris2511/xca.git
synced 2026-09-14 11:06:19 +05:00
23 lines
410 B
C++
23 lines
410 B
C++
#include "ExportKey_UI.h"
|
|
#include <qfiledialog.h>
|
|
#include <qcombobox.h>
|
|
#include <qcheckbox.h>
|
|
#include <qlineedit.h>
|
|
|
|
#ifndef EXPORTKEY_H
|
|
#define EXPORTKEY_H
|
|
|
|
|
|
class ExportKey: public ExportKey_UI
|
|
{
|
|
Q_OBJECT
|
|
bool onlyPub;
|
|
public:
|
|
ExportKey(QString fname, bool onlypub,
|
|
QWidget *parent = 0, const char *name = 0);
|
|
public slots:
|
|
virtual void chooseFile();
|
|
virtual void canEncrypt();
|
|
};
|
|
#endif
|