xca/widgets/Options.h
Christian b0b9cd1d00 Add options dialog, not done yet...
unfy hashAlgo handling (hashBox)
2007-05-13 20:09:45 +02:00

28 lines
456 B
C++

/* vi: set sw=4 ts=4:
*
* Copyright (C) 2001 - 2007 Christian Hohnstaedt.
*
* All rights reserved.
*/
#ifndef OPTIONS_H
#define OPTIONS_H
#include "ui_Options.h"
#include <qdialog.h>
#include "lib/base.h"
#include "widgets/MainWindow.h"
class Options: public QDialog, public Ui::Options
{
Q_OBJECT
public:
Options(QWidget *parent);
public slots:
void on_extDNadd_clicked();
void on_extDNdel_clicked();
QString getDnString();
};
#endif