You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
925 B
C++
33 lines
925 B
C++
#ifndef CMONTHLYITEMDELEGATE_H
|
|
#define CMONTHLYITEMDELEGATE_H
|
|
|
|
|
|
#include <QTimeEdit>
|
|
#include <QComboBox>
|
|
#include <QStyledItemDelegate>
|
|
#include <QStandardItem>
|
|
|
|
#include <QMap>
|
|
|
|
|
|
class cMonthlyItemDelegate : public QStyledItemDelegate
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
cMonthlyItemDelegate(const QMap<QString, QString>& code, QObject* parent = nullptr);
|
|
~cMonthlyItemDelegate();
|
|
|
|
virtual QWidget* createEditor(QWidget *parent, const QStyleOptionViewItem &option, const QModelIndex &index) const;
|
|
virtual void setEditorData(QWidget *editor, const QModelIndex &index) const;
|
|
virtual void setModelData(QWidget *editor, QAbstractItemModel *model, const QModelIndex &index) const;
|
|
|
|
signals:
|
|
void timeChanged(const int day, const int field, const QTime& time) const;
|
|
void textChanged(const int day, const int field, const QString& text) const;
|
|
|
|
private:
|
|
QMap<QString, QString> m_code;
|
|
};
|
|
|
|
#endif // CMONTHLYITEMDELEGATE_H
|