Imported version 0.4-2
[mstardict] / src / mstardict.hpp
1 /*
2  *  MStarDict - International dictionary for Maemo.
3  *  Copyright (C) 2010 Roman Moravcik
4  *
5  *  base on code of stardict:
6  *  Copyright (C) 2003-2007 Hu Zheng <huzheng_001@163.com>
7  *
8  *  based on code of sdcv:
9  *  Copyright (C) 2005-2006 Evgeniy <dushistov@mail.ru>
10  *
11  *  This program is free software; you can redistribute it and/or modify
12  *  it under the terms of the GNU General Public License as published by
13  *  the Free Software Foundation; either version 2 of the License, or
14  *  (at your option) any later version.
15  *
16  *  This program is distributed in the hope that it will be useful,
17  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
18  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  *  GNU General Public License for more details.
20  *
21  *  You should have received a copy of the GNU General Public License
22  *  along with this program; if not, write to the Free Software
23  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
24  */
25
26 #include <gtk/gtk.h>
27 #include <hildon/hildon.h>
28
29 #include "lib/pluginmanager.h"
30
31 extern MStarDict *pMStarDict;
32
33 class Conf;
34 class DictMngr;
35 class TransWin;
36 class Library;
37 class MStarDict;
38
39 class MStarDict {
40   private:
41     GtkWidget *window;
42     GtkWidget *label_widget;
43     GtkWidget *results_widget;
44     GtkWidget *search;
45     GtkWidget *results_view;
46     GtkWidget *results_view_scroll;
47
48     GtkListStore *results_list;
49
50     static gboolean onResultsViewSelectionChanged(GtkTreeSelection *selection,
51                                                   MStarDict *mStarDict);
52     static gboolean onSearchEntryChanged(GtkEditable *editable,
53                                          MStarDict *mStarDict);
54     static gboolean onDictionariesMenuItemClicked(GtkButton *button,
55                                                   MStarDict *mStarDict);
56     static gboolean onQuitMenuItemClicked(GtkButton *button,
57                                           MStarDict *mStarDict);
58     static gboolean onLookupProgressDialogResponse(GtkDialog *dialog,
59                                                    gint response_id,
60                                                    bool *cancel);
61     static gboolean onMainWindowKeyPressEvent(GtkWidget *window,
62                                               GdkEventKey *event,
63                                               MStarDict *mStarDict);
64
65   public:
66      MStarDict();
67     ~MStarDict();
68
69     Conf *oConf;
70     DictMngr *oDict;
71     TransWin *oTransWin;
72     Library *oLibs;
73     StarDictPlugins *oStarDictPlugins;
74
75     GtkWidget *CreateLookupProgressDialog(bool *cancel);
76     void DestroyLookupProgressDialog(GtkWidget *dialog);
77     void CreateMainWindow();
78     void CreateMainMenu();
79
80     void SearchWord();
81
82     void ResultsListClear();
83     void ResultsListInsertLast(const gchar *word);
84     void ResultsReScroll();
85     void ResultsUnselectAll(GtkSelectionMode mode);
86     void ShowNoResults(bool bNoResults);
87     void ShowNoDictionary(bool bNoDictionary);
88     void ShowProgressIndicator(bool bShow);
89     void GrabFocus();
90 };