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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
|
/**
This file is part of Kiten, a KDE Japanese Reference Tool...
Copyright (C) 2001 Jason Katz-Brown <jason@katzbrown.com>
(C) 2005 Paul Temple <paul.temple@gmx.net>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
USA
**/
#ifndef RAD_H
#define RAD_H
#include <tqstringlist.h>
class Config;
class TQCheckBox;
class TQLabel;
class TQListBoxItem;
class TQSpinBox;
class KPushButton;
class TDEListBox;
class TQButtonGroup;
class TDE_EXPORT Radical
{
public:
Radical(TQString = TQString(), unsigned int = 0);
TQString radical() { return _Radical; }
unsigned int strokes() { return Strokes; }
TQString kanji() { return Kanji; }
void addKanji(const TQString &);
private:
TQString _Radical;
unsigned int Strokes;
TQString Kanji;
};
class TDE_EXPORT Rad : public TQObject
{
TQ_OBJECT
public:
Rad();
~Rad();
TQStringList radByStrokes(unsigned int);
TQStringList kanjiByRad(const TQString &);
TQStringList kanjiByRad(const TQStringList &);
Radical radByKanji(const TQString &);
unsigned int strokesByRad(const TQString &);
private:
void load();
TQValueList<Radical> list;
bool loaded;
};
class TDE_EXPORT RadWidget : public TQWidget
{
TQ_OBJECT
public:
RadWidget(Rad *, TQWidget *parent = 0, const char *name = 0);
~RadWidget();
signals:
// if totalStrokes == 0, then don't search by total strokes
void set(const TQStringList &radical, unsigned int totalStrokes, unsigned int totalStrokesErr);
public slots:
void addRadical(const TQString &);
private slots:
void updateList(int);
void apply();
void totalClicked(void);
void selectionChanged();
void hotlistClicked(int);
void addToSelected(const TQString &);
void executed(TQListBoxItem *);
void removeSelected();
void clearSelected();
private:
TQSpinBox *strokesSpin;
TQSpinBox *totalSpin;
TQSpinBox *totalErrSpin;
TQLabel *totalErrLabel;
KPushButton *ok;
KPushButton *cancel;
KPushButton *remove;
KPushButton *clear;
TQButtonGroup *hotlistGroup;
TQCheckBox *totalStrokes;
TDEListBox *List;
TDEListBox *selectedList;
TQStringList selected;
Rad *rad;
unsigned int hotlistNum;
TQStringList hotlist;
void numChanged();
};
#endif
|