blob: 1eb6ed96425d1f824702e7901d4b0b746e70d210 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
// This file is generated by kconfig_compiler_kf5 from test_qdebugcategory.kcfg.
// All changes you do to this file will be lost.
#include "test_qdebugcategory.h"
TestQCategory::TestQCategory( 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" ) );
}
TestQCategory::~TestQCategory()
{
}
|