summaryrefslogtreecommitdiffstats
path: root/kolf/objects/poolball/poolball.cpp
blob: 2b5e7f987e7cb34f500104497a7c842a7b3e3673 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
#include <tqbrush.h>
#include <tqcolor.h>
#include <tqcanvas.h>
#include <tqlabel.h>
#include <tqlayout.h>
#include <tqpainter.h>

#include <klocale.h>
#include <klibloader.h>
#include <kapplication.h>
#include <kdebug.h>
#include <knuminput.h>
#include <tdeconfig.h>

#include <kolf/statedb.h>
#include <kolf/canvasitem.h>
#include "poolball.h"

K_EXPORT_COMPONENT_FACTORY(libkolfpoolball, PoolBallFactory)
TQObject *PoolBallFactory::createObject (TQObject *, const char *, const char *, const TQStringList &) { return new PoolBallObj; }

PoolBall::PoolBall(TQCanvas *canvas)
	: Ball(canvas)
{
	setBrush(black);
	m_number = 1;
}

void PoolBall::save(TDEConfig *cfg)
{
	cfg->writeEntry("number", number());
}

void PoolBall::saveState(StateDB *db)
{
	db->setPoint(TQPoint(x(), y()));
}

void PoolBall::load(TDEConfig *cfg)
{
	setNumber(cfg->readNumEntry("number", 1));
}

void PoolBall::loadState(StateDB *db)
{
	move(db->point().x(), db->point().y());
	setVelocity(0, 0);
	setState(Stopped);
}

void PoolBall::draw(TQPainter &p)
{
	// we should draw the number here
	Ball::draw(p);
}

PoolBallConfig::PoolBallConfig(PoolBall *poolBall, TQWidget *parent)
	: Config(parent), m_poolBall(poolBall)
{
	TQVBoxLayout *layout = new TQVBoxLayout(this, marginHint(), spacingHint());

	layout->addStretch();

	TQLabel *num = new TQLabel(i18n("Number:"), this);
	layout->addWidget(num);
	KIntNumInput *slider = new KIntNumInput(m_poolBall->number(), this);
	slider->setRange(1, 15);
	layout->addWidget(slider);

	layout->addStretch();

	connect(slider, TQT_SIGNAL(valueChanged(int)), this, TQT_SLOT(numberChanged(int)));
}

void PoolBallConfig::numberChanged(int newNumber)
{
	m_poolBall->setNumber(newNumber);
	changed();
}

Config *PoolBall::config(TQWidget *parent)
{
	return new PoolBallConfig(this, parent);
}

#include "poolball.moc"