You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
1.0 KiB
31 lines
1.0 KiB
// This file is generated by kconfig_compiler_kf5 from test7.kcfg. |
|
// All changes you do to this file will be lost. |
|
|
|
#include "test7.h" |
|
|
|
Test7::Test7( 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" ) ); |
|
addItem( itemColor, QStringLiteral( "Color" ) ); |
|
|
|
setCurrentGroup( QStringLiteral( "Bar%1" ).arg( mParamNumber ) ); |
|
|
|
KConfigSkeleton::ItemString *itemFooBar; |
|
itemFooBar = new KConfigSkeleton::ItemString( currentGroup(), QStringLiteral( "foo bar" ), mFooBar ); |
|
addItem( itemFooBar, QStringLiteral( "FooBar" ) ); |
|
KConfigSkeleton::ItemInt *itemAge; |
|
itemAge = new KConfigSkeleton::ItemInt( currentGroup(), QStringLiteral( "Age" ), mAge, 35 ); |
|
itemAge->setMinValue(8); |
|
itemAge->setMaxValue(88); |
|
addItem( itemAge, QStringLiteral( "Age" ) ); |
|
} |
|
|
|
Test7::~Test7() |
|
{ |
|
} |
|
|
|
|