summaryrefslogtreecommitdiffstats
path: root/qt-ui/modeldelegates.h
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2014-02-27 20:09:57 -0800
committerGravatar Dirk Hohndel <dirk@hohndel.org>2014-02-27 20:09:57 -0800
commit76e6420f6b3503b76bd3eec00ab0e53d6ea17a20 (patch)
tree8b50298f41bd29d55bbd6f4301f36ad31dc0b008 /qt-ui/modeldelegates.h
parent006265d7a088cff4fea665159dbb454956c2cd76 (diff)
downloadsubsurface-76e6420f6b3503b76bd3eec00ab0e53d6ea17a20.tar.gz
Massive automated whitespace cleanup
I know everyone will hate it. Go ahead. Complain. Call me names. At least now things are consistent and reproducible. If you want changes, have your complaint come with a patch to scripts/whitespace.pl so that we can automate it. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/modeldelegates.h')
-rw-r--r--qt-ui/modeldelegates.h76
1 files changed, 42 insertions, 34 deletions
diff --git a/qt-ui/modeldelegates.h b/qt-ui/modeldelegates.h
index a2ecf2900..d4060f940 100644
--- a/qt-ui/modeldelegates.h
+++ b/qt-ui/modeldelegates.h
@@ -5,75 +5,83 @@
class QComboBox;
class QPainter;
-class DiveListDelegate : public QStyledItemDelegate{
+class DiveListDelegate : public QStyledItemDelegate {
public:
- explicit DiveListDelegate(QObject *parent = 0): QStyledItemDelegate(parent){}
- QSize sizeHint ( const QStyleOptionViewItem & option, const QModelIndex & index ) const;
+ 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;
+ 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;
+
private:
QWidget *parentWidget;
};
-class ComboBoxDelegate : public QStyledItemDelegate{
+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());
+ 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());
//HACK: try to get rid of this in the future.
void fakeActivation();
void fixTabBehavior();
- virtual void revertModelData(QWidget* widget, QAbstractItemDelegate::EndEditHint hint) = 0;
+ virtual void revertModelData(QWidget *widget, QAbstractItemDelegate::EndEditHint hint) = 0;
+
protected:
QAbstractItemModel *model;
};
-class TankInfoDelegate : public ComboBoxDelegate{
+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);
+ 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);
};
-class WSInfoDelegate : public ComboBoxDelegate{
+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);
+ 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{
+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);
+ 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
-{
+class ProfilePrintDelegate : public QStyledItemDelegate {
public:
explicit ProfilePrintDelegate(QObject *parent = 0);
void paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const;