mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-24 19:02:48 +00:00
61 lines
954 B
Text
61 lines
954 B
Text
// This file is generated by kconfig_compiler from test8a.kcfg.
|
|
// All changes you do to this file will be lost.
|
|
#ifndef TEST8A_H
|
|
#define TEST8A_H
|
|
|
|
#include <kglobal.h>
|
|
#include <kconfigskeleton.h>
|
|
#include <kdebug.h>
|
|
|
|
class Test8a : public KConfigSkeleton
|
|
{
|
|
public:
|
|
|
|
Test8a( KSharedConfig::Ptr config = KGlobal::config() );
|
|
~Test8a();
|
|
|
|
/**
|
|
Set Font
|
|
*/
|
|
void setFont( const QFont & v )
|
|
{
|
|
if (!isImmutable( QString::fromLatin1( "Font" ) ))
|
|
mFont = v;
|
|
}
|
|
|
|
/**
|
|
Get Font
|
|
*/
|
|
QFont font() const
|
|
{
|
|
return mFont;
|
|
}
|
|
|
|
/**
|
|
Set TitleFont
|
|
*/
|
|
void setTitleFont( const QFont & v )
|
|
{
|
|
if (!isImmutable( QString::fromLatin1( "TitleFont" ) ))
|
|
mTitleFont = v;
|
|
}
|
|
|
|
/**
|
|
Get TitleFont
|
|
*/
|
|
QFont titleFont() const
|
|
{
|
|
return mTitleFont;
|
|
}
|
|
|
|
protected:
|
|
|
|
// Group
|
|
QFont mFont;
|
|
QFont mTitleFont;
|
|
|
|
private:
|
|
};
|
|
|
|
#endif
|
|
|