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:
2026-04-14 10:51:06 +01:00
parent 51f3c21121
commit cf12defd28
15214 changed files with 20594243 additions and 269 deletions
@@ -0,0 +1,66 @@
// This file is generated by kconfig_compiler_kf6 from test10.kcfg.
// All changes you do to this file will be lost.
#ifndef TEST10_H
#define TEST10_H
#include <kconfigskeleton.h>
#include <QCoreApplication>
#include <QDebug>
class Test10 : public KConfigSkeleton
{
public:
static Test10 *self();
~Test10() override;
/**
Get foo bar
*/
static
QUrl fooBar()
{
return self()->mFooBar;
}
/**
Is foo bar Immutable
*/
static
bool isFooBarImmutable()
{
return self()->isImmutable( QStringLiteral( "FooBar" ) );
}
/**
Get bar foo
*/
static
QList<QUrl> barFoo()
{
return self()->mBarFoo;
}
/**
Is bar foo Immutable
*/
static
bool isBarFooImmutable()
{
return self()->isImmutable( QStringLiteral( "BarFoo" ) );
}
protected:
Test10();
friend class Test10Helper;
// Foo
QUrl mFooBar;
QList<QUrl> mBarFoo;
private:
};
#endif