Advance Wayland and KDE package bring-up
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
// This file is generated by kconfig_compiler_kf6 from test6.kcfg.
|
||||
// All changes you do to this file will be lost.
|
||||
|
||||
#include "test6.h"
|
||||
|
||||
Test6::Test6( const QString & Number )
|
||||
: KConfigSkeleton( QStringLiteral( "test4rc" ) )
|
||||
, 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" ) );
|
||||
}
|
||||
|
||||
Test6::~Test6()
|
||||
{
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user