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,38 @@
|
||||
// This file is generated by kconfig_compiler_kf6 from test13.kcfg.
|
||||
// All changes you do to this file will be lost.
|
||||
|
||||
#include "test13.h"
|
||||
|
||||
Test13::Test13( )
|
||||
: KConfigSkeleton( QStringLiteral( "muondatasourcesrc" ) )
|
||||
{
|
||||
KConfigCompilerSignallingItem::NotifyFunction notifyFunction = static_cast<KConfigCompilerSignallingItem::NotifyFunction>(&Test13::itemChanged);
|
||||
|
||||
setCurrentGroup( QStringLiteral( "kamoso" ) );
|
||||
|
||||
KConfigSkeleton::ItemUrl *itemPicturesDir;
|
||||
itemPicturesDir = new KConfigSkeleton::ItemUrl( currentGroup(), QStringLiteral( "picturesDir" ), mPicturesDir );
|
||||
addItem( itemPicturesDir, QStringLiteral( "picturesDir" ) );
|
||||
KConfigCompilerSignallingItem *itemBrightness;
|
||||
KConfigSkeleton::ItemDouble *innerItemBrightness;
|
||||
innerItemBrightness = new KConfigSkeleton::ItemDouble( currentGroup(), QStringLiteral( "brightness" ), mBrightness );
|
||||
itemBrightness = new KConfigCompilerSignallingItem(innerItemBrightness, this, notifyFunction, signalBrightnessChanged);
|
||||
addItem( itemBrightness, QStringLiteral( "brightness" ) );
|
||||
KConfigSkeleton::ItemBool *itemStartsWithUppercase;
|
||||
itemStartsWithUppercase = new KConfigSkeleton::ItemBool( currentGroup(), QStringLiteral( "StartsWithUppercase" ), mStartsWithUppercase );
|
||||
addItem( itemStartsWithUppercase, QStringLiteral( "StartsWithUppercase" ) );
|
||||
}
|
||||
|
||||
Test13::~Test13()
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
void Test13::itemChanged(quint64 signalFlag) {
|
||||
|
||||
switch (signalFlag) {
|
||||
case signalBrightnessChanged:
|
||||
Q_EMIT brightnessChanged();
|
||||
break;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user