From 5d2ed13479a480111355657bf22324118fa576e9 Mon Sep 17 00:00:00 2001 From: Kai Uwe Broulik Date: Wed, 24 Apr 2019 16:20:56 +0200 Subject: Add Notify capability to KConfigXT Lets you specify Notifiers= in .kcfg for config entries that should be written with Notify flag, i.e. announce the change to KConfigWatcher Differential Revision: https://phabricator.kde.org/D20196 --- autotests/kconfig_compiler/test_notifiers.h.ref | 94 +++++++++++++++++++++++++ 1 file changed, 94 insertions(+) create mode 100644 autotests/kconfig_compiler/test_notifiers.h.ref (limited to 'autotests/kconfig_compiler/test_notifiers.h.ref') diff --git a/autotests/kconfig_compiler/test_notifiers.h.ref b/autotests/kconfig_compiler/test_notifiers.h.ref new file mode 100644 index 00000000..588427e2 --- /dev/null +++ b/autotests/kconfig_compiler/test_notifiers.h.ref @@ -0,0 +1,94 @@ +// This file is generated by kconfig_compiler_kf5 from test_notifiers.kcfg. +// All changes you do to this file will be lost. +#ifndef TESTNOTIFIERS_H +#define TESTNOTIFIERS_H + +#include +#include +#include + +class TestNotifiers : public KConfigSkeleton +{ + public: + + TestNotifiers( int Number ); + ~TestNotifiers(); + + /** + Set Block colors. + */ + void setColor( const QColor & v ) + { + if (!isImmutable( QStringLiteral( "Color" ) )) + mColor = v; + } + + /** + Get Block colors. + */ + QColor color() const + { + return mColor; + } + + /** + Set foo bar + */ + void setFooBar( const QString & v ) + { + if (!isImmutable( QStringLiteral( "FooBar" ) )) + mFooBar = v; + } + + /** + Get foo bar + */ + QString fooBar() const + { + return mFooBar; + } + + /** + Set Age + */ + void setAge( int v ) + { + if (v < 8) + { + qDebug() << "setAge: value " << v << " is less than the minimum value of 8"; + v = 8; + } + + if (v > 88) + { + qDebug() << "setAge: value " << v << " is greater than the maximum value of 88"; + v = 88; + } + + if (!isImmutable( QStringLiteral( "Age" ) )) + mAge = v; + } + + /** + Get Age + */ + int age() const + { + return mAge; + } + + protected: + int mParamNumber; + + // Foo + QColor mColor; + + // Bar$(Number) + QString mFooBar; + int mAge; + + private: +}; + +#endif + -- cgit v1.2.1