2013-04-27 15:27:27 +00:00
|
|
|
#ifndef MODELDELEGATES_H
|
|
|
|
#define MODELDELEGATES_H
|
|
|
|
|
2013-05-02 22:27:36 +00:00
|
|
|
#include <QStyledItemDelegate>
|
2014-11-17 14:03:37 +00:00
|
|
|
#include <QComboBox>
|
2013-10-03 14:50:40 +00:00
|
|
|
class QPainter;
|
2013-04-27 15:27:27 +00:00
|
|
|
|
2014-02-28 04:09:57 +00:00
|
|
|
class DiveListDelegate : public QStyledItemDelegate {
|
2013-12-11 23:44:05 +00:00
|
|
|
public:
|
2014-02-28 04:09:57 +00:00
|
|
|
explicit DiveListDelegate(QObject *parent = 0)
|
|
|
|
: QStyledItemDelegate(parent)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
QSize sizeHint(const QStyleOptionViewItem &option, const QModelIndex &index) const;
|
2013-12-11 23:44:05 +00:00
|
|
|
};
|
|
|
|
|
2013-05-02 22:27:36 +00:00
|
|
|
class StarWidgetsDelegate : public QStyledItemDelegate {
|
2013-04-27 15:27:27 +00:00
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2014-02-28 04:09:57 +00:00
|
|
|
explicit StarWidgetsDelegate(QWidget *parent = 0);
|
|
|
|
virtual void paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const;
|
|
|
|
virtual QSize sizeHint(const QStyleOptionViewItem &option, const QModelIndex &index) const;
|
2014-10-15 13:30:49 +00:00
|
|
|
const QSize& starSize() const;
|
2014-02-28 04:09:57 +00:00
|
|
|
|
2013-05-02 22:27:36 +00:00
|
|
|
private:
|
|
|
|
QWidget *parentWidget;
|
2014-10-15 13:30:49 +00:00
|
|
|
QSize minStarSize;
|
2013-04-27 15:27:27 +00:00
|
|
|
};
|
2013-05-22 17:11:49 +00:00
|
|
|
|
2014-02-28 04:09:57 +00:00
|
|
|
class ComboBoxDelegate : public QStyledItemDelegate {
|
2013-05-22 17:11:49 +00:00
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2014-02-28 04:09:57 +00:00
|
|
|
explicit ComboBoxDelegate(QAbstractItemModel *model, QObject *parent = 0);
|
|
|
|
virtual QWidget *createEditor(QWidget *parent, const QStyleOptionViewItem &option, const QModelIndex &index) const;
|
|
|
|
virtual void setEditorData(QWidget *editor, const QModelIndex &index) const;
|
|
|
|
virtual void updateEditorGeometry(QWidget *editor, const QStyleOptionViewItem &option, const QModelIndex &index) const;
|
|
|
|
virtual bool eventFilter(QObject *object, QEvent *event);
|
|
|
|
public
|
|
|
|
slots:
|
|
|
|
void testActivation(const QString &currString = QString());
|
2014-04-24 18:17:30 +00:00
|
|
|
void testActivation(const QModelIndex &currIndex);
|
Make the Qt ComboBox behave in a Better Way
So, the ComboBox is a beast, and when used on a Delegate
it's very hard to get things right, wich is a pitty, because
I overly like qt. So:
1 - Combobox needs to show the popup when user press ↓ and ↑ keys
2 - Combobox needs to select when user press enter, not twice.
3 - Combobox neesds to select when user selects from the mouse, not
pressing enter after.
4 - Combobox needs to not mess with stuff when moving around.
Everything that I listed there works on a non-delegate combobox,
but for some reason, a delegate missed those, so I reimplemented
all. not nice, but now we have a code that will work, I hope.
*fingers crossed*
Signed-off-by: Tomaz Canabrava <tcanabrava@kde.org>
2013-09-25 19:37:24 +00:00
|
|
|
//HACK: try to get rid of this in the future.
|
|
|
|
void fakeActivation();
|
2013-10-15 16:45:24 +00:00
|
|
|
void fixTabBehavior();
|
2014-02-28 04:09:57 +00:00
|
|
|
virtual void revertModelData(QWidget *widget, QAbstractItemDelegate::EndEditHint hint) = 0;
|
|
|
|
|
2013-06-16 13:15:19 +00:00
|
|
|
protected:
|
|
|
|
QAbstractItemModel *model;
|
|
|
|
};
|
|
|
|
|
2014-02-28 04:09:57 +00:00
|
|
|
class TankInfoDelegate : public ComboBoxDelegate {
|
2013-06-16 13:15:19 +00:00
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2014-02-28 04:09:57 +00:00
|
|
|
explicit TankInfoDelegate(QObject *parent = 0);
|
|
|
|
virtual void setModelData(QWidget *editor, QAbstractItemModel *model, const QModelIndex &index) const;
|
|
|
|
virtual QWidget *createEditor(QWidget *parent, const QStyleOptionViewItem &option, const QModelIndex &index) const;
|
|
|
|
public
|
|
|
|
slots:
|
|
|
|
void revertModelData(QWidget *widget, QAbstractItemDelegate::EndEditHint hint);
|
2014-12-13 21:06:52 +00:00
|
|
|
void reenableReplot(QWidget *widget, QAbstractItemDelegate::EndEditHint hint);
|
2013-05-22 17:11:49 +00:00
|
|
|
};
|
|
|
|
|
2014-11-17 14:03:37 +00:00
|
|
|
class TankUseDelegate : public QStyledItemDelegate {
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
explicit TankUseDelegate(QObject *parent = 0);
|
|
|
|
virtual void setModelData(QWidget *editor, QAbstractItemModel *model, const QModelIndex &index) const;
|
|
|
|
virtual QWidget *createEditor(QWidget *parent, const QStyleOptionViewItem &option, const QModelIndex &index) const;
|
|
|
|
virtual void setEditorData(QWidget * editor, const QModelIndex & index) const;
|
|
|
|
};
|
|
|
|
|
2014-02-28 04:09:57 +00:00
|
|
|
class WSInfoDelegate : public ComboBoxDelegate {
|
2013-05-24 01:40:16 +00:00
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2014-02-28 04:09:57 +00:00
|
|
|
explicit WSInfoDelegate(QObject *parent = 0);
|
|
|
|
virtual void setModelData(QWidget *editor, QAbstractItemModel *model, const QModelIndex &index) const;
|
|
|
|
virtual QWidget *createEditor(QWidget *parent, const QStyleOptionViewItem &option, const QModelIndex &index) const;
|
|
|
|
public
|
|
|
|
slots:
|
|
|
|
void revertModelData(QWidget *widget, QAbstractItemDelegate::EndEditHint hint);
|
2013-05-24 01:40:16 +00:00
|
|
|
};
|
|
|
|
|
2014-02-28 04:09:57 +00:00
|
|
|
class AirTypesDelegate : public ComboBoxDelegate {
|
2013-08-30 10:14:30 +00:00
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2014-02-28 04:09:57 +00:00
|
|
|
explicit AirTypesDelegate(QObject *parent = 0);
|
|
|
|
virtual void setModelData(QWidget *editor, QAbstractItemModel *model, const QModelIndex &index) const;
|
|
|
|
public
|
|
|
|
slots:
|
|
|
|
void revertModelData(QWidget *widget, QAbstractItemDelegate::EndEditHint hint);
|
2013-08-30 10:14:30 +00:00
|
|
|
};
|
|
|
|
|
2014-07-11 20:42:43 +00:00
|
|
|
class SpinBoxDelegate : public QStyledItemDelegate {
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2014-07-12 12:24:25 +00:00
|
|
|
SpinBoxDelegate(int min, int max, int step, QObject *parent = 0);
|
2014-07-11 20:42:43 +00:00
|
|
|
virtual QWidget *createEditor(QWidget *parent, const QStyleOptionViewItem &option, const QModelIndex &index) const;
|
|
|
|
private:
|
|
|
|
int min;
|
|
|
|
int max;
|
2014-07-12 12:24:25 +00:00
|
|
|
int step;
|
2014-07-11 20:42:43 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class DoubleSpinBoxDelegate : public QStyledItemDelegate {
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2014-07-12 12:24:25 +00:00
|
|
|
DoubleSpinBoxDelegate(double min, double max, double step, QObject *parent = 0);
|
2014-07-11 20:42:43 +00:00
|
|
|
virtual QWidget *createEditor(QWidget *parent, const QStyleOptionViewItem &option, const QModelIndex &index) const;
|
|
|
|
private:
|
2014-07-12 12:24:24 +00:00
|
|
|
double min;
|
|
|
|
double max;
|
2014-07-12 12:24:25 +00:00
|
|
|
double step;
|
2014-07-11 20:42:43 +00:00
|
|
|
};
|
|
|
|
|
2015-07-01 22:31:56 +00:00
|
|
|
class LocationFilterDelegate : public QStyledItemDelegate {
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
LocationFilterDelegate(QObject *parent = 0);
|
|
|
|
void paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const Q_DECL_OVERRIDE;
|
|
|
|
QSize sizeHint(const QStyleOptionViewItem &option, const QModelIndex &index) const Q_DECL_OVERRIDE;
|
|
|
|
};
|
|
|
|
|
2014-02-11 18:14:46 +00:00
|
|
|
#endif // MODELDELEGATES_H
|