// This file is generated by kconfig_compiler_kf6 from test_notifiers.kcfg. // All changes you do to this file will be lost. #include "test_notifiers.h" TestNotifiers::TestNotifiers( int Number ) : KConfigSkeleton( QStringLiteral( "test7rc" ) ) , mParamNumber(Number) { setCurrentGroup( QStringLiteral( "Foo" ) ); KConfigSkeleton::ItemColor *itemColor; itemColor = new KConfigSkeleton::ItemColor( currentGroup(), QStringLiteral( "color #%1" ).arg( mParamNumber ), mColor, QColor( "red" ) ); itemColor->setWriteFlags(KConfigBase::Notify); addItem( itemColor, QStringLiteral( "Color" ) ); setCurrentGroup( QStringLiteral( "Bar%1" ).arg( mParamNumber ) ); KConfigSkeleton::ItemString *itemFooBar; itemFooBar = new KConfigSkeleton::ItemString( currentGroup(), QStringLiteral( "foo bar" ), mFooBar ); itemFooBar->setWriteFlags(KConfigBase::Notify); addItem( itemFooBar, QStringLiteral( "FooBar" ) ); KConfigSkeleton::ItemInt *itemAge; itemAge = new KConfigSkeleton::ItemInt( currentGroup(), QStringLiteral( "Age" ), mAge, 35 ); itemAge->setMinValue(8); itemAge->setMaxValue(88); itemAge->setWriteFlags(KConfigBase::Notify); addItem( itemAge, QStringLiteral( "Age" ) ); } TestNotifiers::~TestNotifiers() { }