You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
128 lines
2.3 KiB
128 lines
2.3 KiB
12 years ago
|
// This file is generated by tdeconfig_compiler from test5.kcfg.
|
||
15 years ago
|
// All changes you do to this file will be lost.
|
||
|
#ifndef TEST5_H
|
||
|
#define TEST5_H
|
||
|
|
||
12 years ago
|
#include <tdeconfigskeleton.h>
|
||
15 years ago
|
#include <kdebug.h>
|
||
|
|
||
12 years ago
|
class Test5 : public TDEConfigSkeleton
|
||
15 years ago
|
{
|
||
|
public:
|
||
|
enum { Encrypt, Decrypt, CrashNBurn, PumpNDump };
|
||
|
enum { right, mid, left };
|
||
|
static const char* const EnumButtonToString[];
|
||
|
|
||
|
static Test5 *self();
|
||
|
~Test5();
|
||
|
|
||
|
/**
|
||
|
Set Block colors.
|
||
|
*/
|
||
|
static
|
||
14 years ago
|
void setColor( int i, const TQColor & v )
|
||
15 years ago
|
{
|
||
13 years ago
|
if (!self()->isImmutable( TQString::fromLatin1( "Color%1" ).arg( i ) ))
|
||
15 years ago
|
self()->mColor[i] = v;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
Get Block colors.
|
||
|
*/
|
||
|
static
|
||
14 years ago
|
TQColor color( int i )
|
||
15 years ago
|
{
|
||
|
return self()->mColor[i];
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
Set Mouse actions.
|
||
|
*/
|
||
|
static
|
||
|
void setMouseAction( int i, int v )
|
||
|
{
|
||
13 years ago
|
if (!self()->isImmutable( TQString::fromLatin1( "MouseAction%1" ).arg( TQString::fromLatin1( EnumButtonToString[i] ) ) ))
|
||
15 years ago
|
self()->mMouseAction[i] = v;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
Get Mouse actions.
|
||
|
*/
|
||
|
static
|
||
|
int mouseAction( int i )
|
||
|
{
|
||
|
return self()->mMouseAction[i];
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
Set foo bar
|
||
|
*/
|
||
|
static
|
||
14 years ago
|
void setFooBar( const TQString & v )
|
||
15 years ago
|
{
|
||
13 years ago
|
if (!self()->isImmutable( TQString::fromLatin1( "FooBar" ) ))
|
||
15 years ago
|
self()->mFooBar = v;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
Get foo bar
|
||
|
*/
|
||
|
static
|
||
14 years ago
|
TQString fooBar()
|
||
15 years ago
|
{
|
||
|
return self()->mFooBar;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
Set Age
|
||
|
*/
|
||
|
static
|
||
|
void setAge( int v )
|
||
|
{
|
||
|
if (v < 8)
|
||
|
{
|
||
|
kdDebug() << "setAge: value " << v << " is less than the minimum value of 8" << endl;
|
||
|
v = 8;
|
||
|
}
|
||
|
|
||
|
if (v > 88)
|
||
|
{
|
||
|
kdDebug() << "setAge: value " << v << " is greater than the maximum value of 88" << endl;
|
||
|
v = 88;
|
||
|
}
|
||
|
|
||
13 years ago
|
if (!self()->isImmutable( TQString::fromLatin1( "Age" ) ))
|
||
15 years ago
|
self()->mAge = v;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
Get Age
|
||
|
*/
|
||
|
static
|
||
|
int age()
|
||
|
{
|
||
|
return self()->mAge;
|
||
|
}
|
||
|
|
||
|
static
|
||
|
void writeConfig()
|
||
|
{
|
||
12 years ago
|
static_cast<TDEConfigSkeleton*>(self())->writeConfig();
|
||
15 years ago
|
}
|
||
|
protected:
|
||
|
Test5();
|
||
|
static Test5 *mSelf;
|
||
|
|
||
|
|
||
|
// Foo
|
||
14 years ago
|
TQColor mColor[4];
|
||
15 years ago
|
int mMouseAction[3];
|
||
14 years ago
|
TQString mFooBar;
|
||
15 years ago
|
int mAge;
|
||
|
|
||
|
private:
|
||
|
};
|
||
|
|
||
|
#endif
|
||
|
|