summaryrefslogtreecommitdiffstats
path: root/qt-ui/modeldelegates.h
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2015-11-02 19:54:34 -0800
committerGravatar Dirk Hohndel <dirk@hohndel.org>2015-11-02 19:54:34 -0800
commit8ea7f404574c2ee571d2dde6bb6be3791e962150 (patch)
tree6a050178bfc71bf10558968f2a3bc0a12d8c525f /qt-ui/modeldelegates.h
parentb273c1b0ca7bfe933e7c83742f1610f6bbe3f4d3 (diff)
parentdf7818a9b8495285b4d9812e5d6d50d6f9c08813 (diff)
downloadsubsurface-8ea7f404574c2ee571d2dde6bb6be3791e962150.tar.gz
Merge branch 'cmakeAndPreferences'
Diffstat (limited to 'qt-ui/modeldelegates.h')
-rw-r--r--qt-ui/modeldelegates.h141
1 files changed, 0 insertions, 141 deletions
diff --git a/qt-ui/modeldelegates.h b/qt-ui/modeldelegates.h
deleted file mode 100644
index 95701775a..000000000
--- a/qt-ui/modeldelegates.h
+++ /dev/null
@@ -1,141 +0,0 @@
-#ifndef MODELDELEGATES_H
-#define MODELDELEGATES_H
-
-#include <QStyledItemDelegate>
-#include <QComboBox>
-class QPainter;
-
-class DiveListDelegate : public QStyledItemDelegate {
-public:
- explicit DiveListDelegate(QObject *parent = 0)
- : QStyledItemDelegate(parent)
- {
- }
- QSize sizeHint(const QStyleOptionViewItem &option, const QModelIndex &index) const;
-};
-
-class StarWidgetsDelegate : public QStyledItemDelegate {
- Q_OBJECT
-public:
- 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;
- const QSize& starSize() const;
-
-private:
- QWidget *parentWidget;
- QSize minStarSize;
-};
-
-class ComboBoxDelegate : public QStyledItemDelegate {
- Q_OBJECT
-public:
- 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());
- void testActivation(const QModelIndex &currIndex);
- //HACK: try to get rid of this in the future.
- void fakeActivation();
- void fixTabBehavior();
- virtual void revertModelData(QWidget *widget, QAbstractItemDelegate::EndEditHint hint) = 0;
-
-protected:
- QAbstractItemModel *model;
-};
-
-class TankInfoDelegate : public ComboBoxDelegate {
- Q_OBJECT
-public:
- 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);
- void reenableReplot(QWidget *widget, QAbstractItemDelegate::EndEditHint hint);
-};
-
-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;
-};
-
-class WSInfoDelegate : public ComboBoxDelegate {
- Q_OBJECT
-public:
- 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);
-};
-
-class AirTypesDelegate : public ComboBoxDelegate {
- Q_OBJECT
-public:
- 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);
-};
-
-/* ProfilePrintDelagate:
- * this delegate is used to modify the look of the table that is printed
- * bellow profiles.
- */
-class ProfilePrintDelegate : public QStyledItemDelegate {
-public:
- explicit ProfilePrintDelegate(QObject *parent = 0);
- void paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const;
-};
-
-class SpinBoxDelegate : public QStyledItemDelegate {
- Q_OBJECT
-public:
- SpinBoxDelegate(int min, int max, int step, QObject *parent = 0);
- virtual QWidget *createEditor(QWidget *parent, const QStyleOptionViewItem &option, const QModelIndex &index) const;
-private:
- int min;
- int max;
- int step;
-};
-
-class DoubleSpinBoxDelegate : public QStyledItemDelegate {
- Q_OBJECT
-public:
- DoubleSpinBoxDelegate(double min, double max, double step, QObject *parent = 0);
- virtual QWidget *createEditor(QWidget *parent, const QStyleOptionViewItem &option, const QModelIndex &index) const;
-private:
- double min;
- double max;
- double step;
-};
-
-class HTMLDelegate : public ProfilePrintDelegate {
- Q_OBJECT
-public:
- explicit HTMLDelegate(QObject *parent = 0);
- virtual void paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const;
- virtual QSize sizeHint(const QStyleOptionViewItem &option, const QModelIndex &index) const;
-};
-
-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;
-};
-
-#endif // MODELDELEGATES_H