From: Guillaume Munch Date: Fri, 29 Jul 2016 20:18:43 +0000 (+0100) Subject: Basic implementation of QSignalBlocker for qt4 X-Git-Tag: 2.3.0alpha1~1173 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=bc8eb059db9f25b0cb44af0a26fba13170971f40;p=features.git Basic implementation of QSignalBlocker for qt4 --- diff --git a/src/frontends/qt4/qt_helpers.h b/src/frontends/qt4/qt_helpers.h index 9f239a8131..5574212c26 100644 --- a/src/frontends/qt4/qt_helpers.h +++ b/src/frontends/qt4/qt_helpers.h @@ -213,6 +213,24 @@ QString guiName(std::string const & type, BufferParams const & bp); QString formatToolTip(QString text, int width = 30); +#if QT_VERSION < 0x050300 +// Very partial implementation of QSignalBlocker for archaic qt versions. +class QSignalBlocker { +public: + explicit QSignalBlocker(QObject * o) + : obj(o), init_state(obj && obj->blockSignals(true)) {} + + ~QSignalBlocker() { + if (obj) + obj->blockSignals(init_state); + } +private: + QObject * obj; + bool init_state; +}; +#endif + + } // namespace lyx #endif // QTHELPERS_H