blob: 97b0446888bfdfad70d022ed754ad4e85bccf081 (
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
|
#ifndef GROUP_H
#define GROUP_H
#include <tqcolor.h>
#include <tqptrlist.h>
#include <kdialogbase.h>
#include <atlantic/estategroup.h>
class KColorButton;
class KLineEdit;
class KListBox;
class KPushButton;
class TQComboBox;
class TQListBoxItem;
class TQSpinBox;
class TQVGroupBox;
class ConfigEstateGroup
{
public:
ConfigEstateGroup() { init(); }
ConfigEstateGroup(const TQString &name) { setName(name); init(); }
void init() { setHousePrice(0); setGlobalPrice(0); }
void setHousePrice(int newPrice) { m_housePrice = newPrice; }
int housePrice()const { return m_housePrice; }
void setGlobalPrice(int newGlobalPrice) { m_globalPrice = newGlobalPrice; }
int globalPrice()const { return m_globalPrice; }
const TQString &rentMath() { return m_rentMath; }
void setRentMath(const TQString &newMath) { m_rentMath = newMath; }
bool dynamicRent()const { return !m_rentMath.isEmpty(); }
void setName(const TQString &name) { m_name = name; }
const TQString &name() { return m_name; }
const TQColor &fgColor() { return m_fgColor; }
void setFgColor(const TQColor &color) { m_fgColor = color; }
const TQColor &bgColor() { return m_bgColor; }
void setBgColor(const TQColor &color) { m_bgColor = color; }
private:
TQColor m_fgColor;
TQColor m_bgColor;
TQString m_rentMath;
int m_housePrice;
int m_globalPrice;
TQString m_name;
};
typedef TQValueList<ConfigEstateGroup> ConfigEstateGroupList;
class GroupEditor : public KDialogBase
{
Q_OBJECT
TQ_OBJECT
public:
GroupEditor(ConfigEstateGroupList *, TQWidget *tqparent=0);
signals:
void changed();
void update();
protected slots:
virtual void slotOk();
virtual void slotApply();
private slots:
void updateSettings(TQListBoxItem *item);
void fgChanged(const TQColor &);
void bgChanged(const TQColor &);
void housePriceChanged(int);
void globalPriceChanged(int);
void rentMathChanged(const TQString &);
void add();
void remove();
void selectionChanged();
private:
KListBox *groups;
KLineEdit *rentMathEdit;
KColorButton *fgButton;
KColorButton *bgButton;
TQWidget *pricesWidget;
TQWidget *mathWidget;
TQSpinBox *housePrice;
TQSpinBox *globalPrice;
TQVGroupBox *tqcolorGroupBox;
TQVGroupBox *pricesGroupBox;
TQVGroupBox *dynamicGroupBox;
KPushButton *removeB;
ConfigEstateGroupList *list;
ConfigEstateGroupList mylist;
ConfigEstateGroup *currentGroup();
};
#endif
|