xca/ExportKey.h
chris d29f711ef9 changes made to compile with qt3
tests with debian 3.0 (woody) were successful see README
access violation with qt3 :-(
2002-05-19 14:23:48 +00:00

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