You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
656 B
37 lines
656 B
#ifndef MAINOPTIONSPAGE_H |
|
#define MAINOPTIONSPAGE_H |
|
|
|
#include <QWidget> |
|
|
|
QT_BEGIN_NAMESPACE |
|
class QDataWidgetMapper; |
|
class QCheckBox; |
|
class QLineEdit; |
|
QT_END_NAMESPACE |
|
|
|
class OptionsModel; |
|
|
|
class MainOptionsPage : public QWidget |
|
{ |
|
Q_OBJECT |
|
public: |
|
explicit MainOptionsPage(QWidget *parent=0); |
|
|
|
void setMapper(QDataWidgetMapper *mapper); |
|
private: |
|
QCheckBox *bitcoin_at_startup; |
|
QCheckBox *minimize_to_tray; |
|
QCheckBox *map_port_upnp; |
|
QCheckBox *minimize_on_close; |
|
QCheckBox *connect_socks4; |
|
QLineEdit *proxy_ip; |
|
QLineEdit *proxy_port; |
|
QLineEdit *fee_edit; |
|
|
|
signals: |
|
|
|
public slots: |
|
|
|
}; |
|
|
|
#endif // MAINOPTIONSPAGE_H
|
|
|