mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-11-11 22:50:59 +01:00
Improve documentation for UI classes
This commit is contained in:
@@ -3,19 +3,18 @@
|
||||
|
||||
#include <QComboBox>
|
||||
|
||||
// QComboBox that can be used with QDataWidgetMapper to select
|
||||
// ordinal values from a model.
|
||||
/* 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(int value READ value WRITE setValue NOTIFY valueChanged USER true)
|
||||
public:
|
||||
explicit QValueComboBox(QWidget *parent = 0);
|
||||
|
||||
int value() const;
|
||||
void setValue(int value);
|
||||
|
||||
// Model role to use as value
|
||||
/** Specify model role to use as ordinal value */
|
||||
void setRole(int role);
|
||||
|
||||
signals:
|
||||
|
||||
Reference in New Issue
Block a user