diff options
author | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
---|---|---|
committer | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
commit | ce599e4f9f94b4eb00c1b5edb85bce5431ab3df2 (patch) | |
tree | d3bb9f5d25a2dc09ca81adecf39621d871534297 /kiten/widgets.h | |
download | tdeedu-ce599e4f9f94b4eb00c1b5edb85bce5431ab3df2.tar.gz tdeedu-ce599e4f9f94b4eb00c1b5edb85bce5431ab3df2.zip |
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
Diffstat (limited to 'kiten/widgets.h')
-rw-r--r-- | kiten/widgets.h | 122 |
1 files changed, 122 insertions, 0 deletions
diff --git a/kiten/widgets.h b/kiten/widgets.h new file mode 100644 index 00000000..ab9b7725 --- /dev/null +++ b/kiten/widgets.h @@ -0,0 +1,122 @@ +/** + This file is part of Kiten, a KDE Japanese Reference Tool... + Copyright (C) 2001 Jason Katz-Brown <jason@katzbrown.com> + + 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 KITEN_WIDGETS_H +#define KITEN_WIDGETS_H + +#include <qguardedptr.h> + +#include <kaction.h> +#include <klineedit.h> +#include <kmainwindow.h> +#include <ktextbrowser.h> + +class KListView; +class KStatusBar; + +#include "dict.h" +#include "rad.h" + +class KDE_EXPORT ResultView : public KTextBrowser +{ + Q_OBJECT + + public: + ResultView(bool showLinks, QWidget *parent = 0, const char *name = 0); + + void addResult(Dict::Entry result, bool common = false); + void addKanjiResult(Dict::Entry, bool common = false, Radical = Radical()); + + void addHeader(const QString &, unsigned int degree = 3); + + public slots: + void print(QString = QString::null); + void append(const QString &); + void flush(); + void clear(); + void setBasicMode(bool yes) { basicMode = yes; } + + void updateFont(); + + private: + QString putchars(const QString &); + QString printText; + + bool links; + bool basicMode; +}; + +class KDE_EXPORT eEdit : public KMainWindow +{ + Q_OBJECT + + public: + eEdit(const QString &, QWidget *parent = 0, const char *name = 0); + ~eEdit(); + + private slots: + void add(); + void save(); + void del(); + void disable(); + void openFile(const QString &); + + private: + KListView *List; + QString filename; + KStatusBar *StatusBar; + KAction *addAct; + KAction *removeAct; + KAction *saveAct; + bool isMod; +}; + +class KDE_EXPORT EditAction : public KAction +{ + Q_OBJECT + public: + EditAction( const QString& text, int accel, const QObject *receiver, const char *member, QObject* parent, const char* name ); + virtual ~EditAction(); + + virtual int plug( QWidget *w, int index = -1 ); + + virtual void unplug( QWidget *w ); + + QString text() { return m_combo->text(); } + void setText(const QString &text); + + QGuardedPtr<KLineEdit> editor(); + + public slots: + void insert(const QString &); + + // also sets focus to the lineedit widget + void clear(); + + signals: + void plugged(); + +private: + QGuardedPtr<KLineEdit> m_combo; + const QObject *m_receiver; + const char *m_member; +}; + +#endif |