EComboBox and StringListEdit improvments

This commit is contained in:
2021-07-06 17:36:40 +03:00
parent 3f7306cea6
commit e3a87fbb9b
9 changed files with 178 additions and 146 deletions

View File

@@ -39,16 +39,15 @@ class QAD_WIDGETS_EXPORT StringListEdit: public QWidget
Q_OBJECT
public:
StringListEdit(QWidget * parent = 0);
~StringListEdit();
QStringList value() const;
private:
virtual void changeEvent(QEvent * e);
QBoxLayout lay;
QBoxLayout * lay;
EComboBox * combo;
QPushButton * butt_add, * butt_del, * butt_clear;
QPushButton * butt_apply, * butt_add, * butt_del, * butt_clear;
public slots:
void setValue(const QStringList & v);