mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-11-12 06:58:57 +01:00
Make it possible to set user interface language from options dialog
This commit is contained in:
@@ -2,19 +2,20 @@
|
||||
#define QVALUECOMBOBOX_H
|
||||
|
||||
#include <QComboBox>
|
||||
#include <QVariant>
|
||||
|
||||
/* QComboBox that can be used with QDataWidgetMapper to select ordinal values from a model. */
|
||||
class QValueComboBox : public QComboBox
|
||||
{
|
||||
Q_OBJECT
|
||||
Q_PROPERTY(int value READ value WRITE setValue NOTIFY valueChanged USER true)
|
||||
Q_PROPERTY(QVariant value READ value WRITE setValue NOTIFY valueChanged USER true)
|
||||
public:
|
||||
explicit QValueComboBox(QWidget *parent = 0);
|
||||
|
||||
int value() const;
|
||||
void setValue(int value);
|
||||
QVariant value() const;
|
||||
void setValue(const QVariant &value);
|
||||
|
||||
/** Specify model role to use as ordinal value */
|
||||
/** Specify model role to use as ordinal value (defaults to Qt::UserRole) */
|
||||
void setRole(int role);
|
||||
|
||||
signals:
|
||||
|
||||
Reference in New Issue
Block a user