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,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
|
||||
|
||||
Reference in New Issue
Block a user