2013-11-04 16:20:43 +01:00
|
|
|
// Copyright (c) 2011-2013 The Bitcoin developers
|
|
|
|
// Distributed under the MIT/X11 software license, see the accompanying
|
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
2011-05-12 09:40:40 +02:00
|
|
|
#ifndef OPTIONSDIALOG_H
|
|
|
|
#define OPTIONSDIALOG_H
|
|
|
|
|
|
|
|
#include <QDialog>
|
2012-06-08 15:21:55 +02:00
|
|
|
|
2013-04-13 07:13:08 +02:00
|
|
|
class MonitoredDataMapper;
|
|
|
|
class OptionsModel;
|
|
|
|
class QValidatedLineEdit;
|
|
|
|
|
2012-06-08 15:21:55 +02:00
|
|
|
namespace Ui {
|
|
|
|
class OptionsDialog;
|
|
|
|
}
|
2011-05-12 09:40:40 +02:00
|
|
|
|
2011-11-13 13:19:52 +01:00
|
|
|
/** Preferences dialog. */
|
2011-05-12 09:40:40 +02:00
|
|
|
class OptionsDialog : public QDialog
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
2012-06-08 15:21:55 +02:00
|
|
|
|
2011-05-12 09:40:40 +02:00
|
|
|
public:
|
2012-06-08 15:21:55 +02:00
|
|
|
explicit OptionsDialog(QWidget *parent = 0);
|
|
|
|
~OptionsDialog();
|
2011-05-31 22:24:53 +02:00
|
|
|
|
|
|
|
void setModel(OptionsModel *model);
|
2012-06-08 15:21:55 +02:00
|
|
|
void setMapper();
|
2011-05-12 09:40:40 +02:00
|
|
|
|
2012-06-08 15:21:55 +02:00
|
|
|
protected:
|
|
|
|
bool eventFilter(QObject *object, QEvent *event);
|
2011-07-25 21:35:45 +02:00
|
|
|
|
2011-06-01 09:33:48 +02:00
|
|
|
private slots:
|
2012-08-02 09:02:05 +02:00
|
|
|
/* enable only apply button */
|
|
|
|
void enableApplyButton();
|
|
|
|
/* disable only apply button */
|
|
|
|
void disableApplyButton();
|
2012-06-08 15:21:55 +02:00
|
|
|
/* enable apply button and OK button */
|
|
|
|
void enableSaveButtons();
|
|
|
|
/* disable apply button and OK button */
|
|
|
|
void disableSaveButtons();
|
|
|
|
/* set apply button and OK button state (enabled / disabled) */
|
|
|
|
void setSaveButtonState(bool fState);
|
2012-08-18 15:54:39 +02:00
|
|
|
void on_resetButton_clicked();
|
2012-06-08 15:21:55 +02:00
|
|
|
void on_okButton_clicked();
|
|
|
|
void on_cancelButton_clicked();
|
|
|
|
void on_applyButton_clicked();
|
|
|
|
|
|
|
|
void showRestartWarning_Proxy();
|
|
|
|
void showRestartWarning_Lang();
|
|
|
|
void updateDisplayUnit();
|
2012-07-09 11:14:38 +02:00
|
|
|
void handleProxyIpValid(QValidatedLineEdit *object, bool fState);
|
2012-06-08 15:21:55 +02:00
|
|
|
|
|
|
|
signals:
|
2012-07-09 11:14:38 +02:00
|
|
|
void proxyIpValid(QValidatedLineEdit *object, bool fValid);
|
2011-11-13 13:19:52 +01:00
|
|
|
|
2011-05-12 14:44:52 +02:00
|
|
|
private:
|
2012-06-08 15:21:55 +02:00
|
|
|
Ui::OptionsDialog *ui;
|
2011-05-31 22:24:53 +02:00
|
|
|
OptionsModel *model;
|
2011-06-01 14:40:06 +02:00
|
|
|
MonitoredDataMapper *mapper;
|
2012-06-08 15:21:55 +02:00
|
|
|
bool fRestartWarningDisplayed_Proxy;
|
|
|
|
bool fRestartWarningDisplayed_Lang;
|
|
|
|
bool fProxyIpValid;
|
2011-05-12 09:40:40 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // OPTIONSDIALOG_H
|