diff options
Diffstat (limited to 'autotests/kconfig_compiler/test8c.h.ref')
-rw-r--r-- | autotests/kconfig_compiler/test8c.h.ref | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/autotests/kconfig_compiler/test8c.h.ref b/autotests/kconfig_compiler/test8c.h.ref new file mode 100644 index 00000000..8ed9962c --- /dev/null +++ b/autotests/kconfig_compiler/test8c.h.ref @@ -0,0 +1,70 @@ +// This file is generated by kconfig_compiler_kf5 from test8c.kcfg. +// All changes you do to this file will be lost. +#ifndef TEST8C_H +#define TEST8C_H + +#include <kconfigskeleton.h> +#include <QCoreApplication> +#include <QDebug> + +class Test8c : public KConfigSkeleton +{ + public: + + static Test8c *self(); + static void instance(const QString& cfgfilename); + static void instance(KSharedConfig::Ptr config); + ~Test8c(); + + /** + Set Font + */ + static + void setFont( const QFont & v ) + { + if (!self()->isImmutable( QStringLiteral( "Font" ) )) + self()->mFont = v; + } + + /** + Get Font + */ + static + QFont font() + { + return self()->mFont; + } + + /** + Set TitleFont + */ + static + void setTitleFont( const QFont & v ) + { + if (!self()->isImmutable( QStringLiteral( "TitleFont" ) )) + self()->mTitleFont = v; + } + + /** + Get TitleFont + */ + static + QFont titleFont() + { + return self()->mTitleFont; + } + + protected: + Test8c(KSharedConfig::Ptr config); + friend class Test8cHelper; + + + // Group + QFont mFont; + QFont mTitleFont; + + private: +}; + +#endif + |