-
Notifications
You must be signed in to change notification settings - Fork 41
/
lineeditdelegate.h
40 lines (29 loc) · 1.09 KB
/
lineeditdelegate.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#ifndef LINEEDITDELEGATE_H
#define LINEEDITDELEGATE_H
#include <QDate>
#include <QDateTime>
#include <QItemDelegate>
#include <QLineEdit>
#include <QStyledItemDelegate>
#include <QTime>
class LineEditDelegate : public QStyledItemDelegate {
Q_OBJECT
public:
LineEditDelegate(QObject* parent = 0);
QWidget* createEditor(QWidget* parent, const QStyleOptionViewItem& option,
const QModelIndex& index) const;
void setEditorData(QWidget* editor, const QModelIndex& index) const;
void setModelData(QWidget* editor, QAbstractItemModel* model,
const QModelIndex& index) const;
void updateEditorGeometry(QWidget* editor,
const QStyleOptionViewItem& option, const QModelIndex& index) const;
QSize sizeHint(const QStyleOptionViewItem& option, const QModelIndex& index) const;
signals:
void dataChanged(const QModelIndex&, QString) const;
private slots:
void on_setText();
void on_textChanged();
private:
static bool checkInput(const QString& type, const QString& val, int col);
};
#endif // LINEEDITDELEGATE_H