mirror of
https://github.com/chris2511/xca.git
synced 2026-09-13 18:46:25 +05:00
35 lines
662 B
C++
35 lines
662 B
C++
/* vi: set sw=4 ts=4:
|
|
*
|
|
* Copyright (C) 2001 - 2009 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
|
|
private:
|
|
QStringList string_opts;
|
|
MainWindow *mw;
|
|
public:
|
|
Options(MainWindow *parent);
|
|
public slots:
|
|
void on_extDNadd_clicked();
|
|
void on_extDNdel_clicked();
|
|
QString getDnString();
|
|
void setStringOpt(const QString string_opt);
|
|
QString getStringOpt();
|
|
void on_fileButton_clicked(void);
|
|
void on_tryLoadButton_clicked(void);
|
|
};
|
|
|
|
#endif
|