From ce599e4f9f94b4eb00c1b5edb85bce5431ab3df2 Mon Sep 17 00:00:00 2001 From: toma Date: Wed, 25 Nov 2009 17:56:58 +0000 Subject: Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. BUG:215923 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeedu@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- kiten/rad.h | 123 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 123 insertions(+) create mode 100644 kiten/rad.h (limited to 'kiten/rad.h') diff --git a/kiten/rad.h b/kiten/rad.h new file mode 100644 index 00000000..bae2f8dc --- /dev/null +++ b/kiten/rad.h @@ -0,0 +1,123 @@ +/** + This file is part of Kiten, a KDE Japanese Reference Tool... + Copyright (C) 2001 Jason Katz-Brown + (C) 2005 Paul Temple + + 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 + +class Config; +class QCheckBox; +class QLabel; +class QListBoxItem; +class QSpinBox; +class KPushButton; +class KListBox; +class QButtonGroup; + +class KDE_EXPORT Radical +{ + public: + Radical(QString = QString::null, unsigned int = 0); + + QString radical() { return _Radical; } + unsigned int strokes() { return Strokes; } + QString kanji() { return Kanji; } + + void addKanji(const QString &); + + private: + QString _Radical; + unsigned int Strokes; + QString Kanji; +}; + +class KDE_EXPORT Rad : public QObject +{ + Q_OBJECT + + public: + Rad(); + ~Rad(); + + QStringList radByStrokes(unsigned int); + QStringList kanjiByRad(const QString &); + QStringList kanjiByRad(const QStringList &); + Radical radByKanji(const QString &); + unsigned int strokesByRad(const QString &); + + private: + void load(); + + QValueList list; + bool loaded; +}; + +class KDE_EXPORT RadWidget : public QWidget +{ + Q_OBJECT + + public: + RadWidget(Rad *, QWidget *parent = 0, const char *name = 0); + ~RadWidget(); + + signals: + // if totalStrokes == 0, then don't search by total strokes + void set(const QStringList &radical, unsigned int totalStrokes, unsigned int totalStrokesErr); + + public slots: + void addRadical(const QString &); + + private slots: + void updateList(int); + void apply(); + void totalClicked(void); + void selectionChanged(); + void hotlistClicked(int); + void addToSelected(const QString &); + void executed(QListBoxItem *); + void removeSelected(); + void clearSelected(); + + private: + QSpinBox *strokesSpin; + QSpinBox *totalSpin; + QSpinBox *totalErrSpin; + QLabel *totalErrLabel; + KPushButton *ok; + KPushButton *cancel; + KPushButton *remove; + KPushButton *clear; + QButtonGroup *hotlistGroup; + QCheckBox *totalStrokes; + KListBox *List; + KListBox *selectedList; + QStringList selected; + + Rad *rad; + + unsigned int hotlistNum; + QStringList hotlist; + + void numChanged(); +}; + +#endif -- cgit v1.2.1