aboutsummaryrefslogtreecommitdiffstats
path: root/qt-ui/modeldelegates.h
diff options
context:
space:
mode:
authorGravatar Tomaz Canabrava <tcanabrava@kde.org>2013-07-18 11:53:47 -0300
committerGravatar Dirk Hohndel <dirk@hohndel.org>2013-07-18 12:01:48 -0700
commit3aa55462dc2fc44151962a292f9b7034ec3863b2 (patch)
treea23bb4c4ac539673f59dc2bd0bc11a3b9d1fcc0b /qt-ui/modeldelegates.h
parent7e029980b80b176282743fe3b43a3cc49bac9154 (diff)
downloadsubsurface-3aa55462dc2fc44151962a292f9b7034ec3863b2.tar.gz
Added the code to revert Weigths when user cancels edition
This is a follow up commit to the previous one that enabled cancel for cylinders, everything in the commit log for the cylinders also applyes here. Signed-off-by: Tomaz Canabrava <tcanabrava@kde.org>
Diffstat (limited to 'qt-ui/modeldelegates.h')
-rw-r--r--qt-ui/modeldelegates.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/qt-ui/modeldelegates.h b/qt-ui/modeldelegates.h
index 4ddf53df3..9603d5dce 100644
--- a/qt-ui/modeldelegates.h
+++ b/qt-ui/modeldelegates.h
@@ -24,6 +24,7 @@ public:
virtual bool eventFilter(QObject* object, QEvent* event);
public slots:
void testActivation(const QString& s);
+ virtual void revertModelData(QWidget* widget, QAbstractItemDelegate::EndEditHint hint) = 0;
protected:
QAbstractItemModel *model;
};
@@ -44,6 +45,8 @@ 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);
};
#endif