Imported version 0.2-4
[mstardict] / src / mstardict.hpp
1 /*
2  *  MStarDict - International dictionary for Maemo.
3  *  Copyright (C) 2010 Roman Moravcik
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
16  *  along with this program; if not, write to the Free Software
17  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18  */
19
20 #include <gtk/gtk.h>
21 #include <hildon/hildon.h>
22
23 class Library;
24 class MStarDict;
25
26 extern MStarDict *pMStarDict;
27
28 class MStarDict {
29 private:
30         GtkWidget *label_widget;
31         GtkWidget *results_widget;
32         GtkWidget *search;
33         GtkWidget *results_view;
34         GtkWidget *results_view_scroll;
35
36         GtkListStore *results_list;
37
38         Library *oLibs;
39         TSearchResultList results;
40
41         static gboolean onResultsViewSelectionChanged (GtkTreeSelection *selection, MStarDict *mStarDict);
42         static gboolean onSearchEntryChanged (GtkEditable *editable, MStarDict *mStarDict);
43
44 public:
45         MStarDict();
46         ~MStarDict();
47
48         void CreateTranslationWindow(const gchar *bookname, const gchar *def, const gchar *exp);
49         void CreateMainWindow();
50
51         void LoadDictionaries();
52
53         void ResultsListClear();
54         void ResultsListInsertLast(const gchar *word);
55         void ReScroll();
56 };