Russian translation. Gui fix.
[qstardict] / qstardict / dictbrowser.h
1 /*****************************************************************************
2  * dictbrowser.h - QStarDict, a StarDict clone written with using Qt         *
3  * Copyright (C) 2007 Alexander Rodin                                        *
4  *                                                                           *
5  * This program is free software; you can redistribute it and/or modify      *
6  * it under the terms of the GNU General Public License as published by      *
7  * the Free Software Foundation; either version 2 of the License, or         *
8  * (at your option) any later version.                                       *
9  *                                                                           *
10  * This program is distributed in the hope that it will be useful,           *
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of            *
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the             *
13  * GNU General Public License for more details.                              *
14  *                                                                           *
15  * You should have received a copy of the GNU General Public License along   *
16  * with this program; if not, write to the Free Software Foundation, Inc.,   *
17  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.               *
18  *****************************************************************************/
19
20 #ifndef DICTBROWSER_H
21 #define DICTBROWSER_H
22
23 #include <QTextBrowser>
24
25 #include <QTextCursor>
26 #include <QTextCharFormat>
27 #include "dictcore.h"
28
29 namespace QStarDict
30 {
31
32 /**
33  * The DictBrowser widget provides view of translations from given dictionary.
34  */
35 class DictBrowser: public QTextBrowser
36 {
37     Q_OBJECT
38     public:
39         /**
40          * Construct empty DictWidget.
41          */
42         DictBrowser(QWidget *parent = 0);
43
44         /**
45          * Set source dictionary.
46          * Warning: DictBrowser will copy only a pointer to dict. So set dictionaries
47          * allocated from heap and don't destroy it befor DictWidget.
48          */
49         void setDict(DictCore *dict)
50         { m_dict = dict; }
51         /**
52          * Return pointer to dictionary.
53          */
54         const DictCore* dict() const
55         { return m_dict; }
56
57         QVariant loadResource(int type, const QUrl &name);
58
59     protected:
60         void mouseMoveEvent(QMouseEvent *event);
61         void mousePressEvent(QMouseEvent *event);
62
63     private slots:
64         void on_anchorClicked(const QUrl &link);
65
66     private:
67         DictCore *m_dict;
68
69         QTextCursor m_oldCursor;
70         QTextCharFormat m_oldFormat;
71         bool m_highlighted;
72 };
73
74 }
75
76 #endif // DICTBROWSER_H
77
78 // vim: tabstop=4 softtabstop=4 shiftwidth=4 expandtab cindent textwidth=120 formatoptions=tc
79