Imported version 0.4-3
[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_entry;
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 onSearchClearClicked(GtkButton *button,
55                                          MStarDict *mStarDict);
56     static gboolean onDictionariesMenuItemClicked(GtkButton *button,
57                                                   MStarDict *mStarDict);
58     static gboolean onQuitMenuItemClicked(GtkButton *button,
59                                           MStarDict *mStarDict);
60     static gboolean onLookupProgressDialogResponse(GtkDialog *dialog,
61                                                    gint response_id,
62                                                    bool *cancel);
63     static gboolean onMainWindowKeyPressEvent(GtkWidget *window,
64                                               GdkEventKey *event,
65                                               MStarDict *mStarDict);
66
67   public:
68      MStarDict();
69     ~MStarDict();
70
71     Conf *oConf;
72     DictMngr *oDict;
73     TransWin *oTransWin;
74     Library *oLibs;
75     StarDictPlugins *oStarDictPlugins;
76
77     GtkWidget *CreateLookupProgressDialog(bool *cancel);
78     void DestroyLookupProgressDialog(GtkWidget *dialog);
79     void CreateMainWindow();
80     GtkWidget *CreateSearchBar();
81     void CreateMainMenu();
82
83     void SearchWord();
84
85     void ResultsListClear();
86     void ResultsListInsertLast(const gchar *word);
87     void ResultsReScroll();
88     void ResultsUnselectAll(GtkSelectionMode mode);
89     void ShowNoResults(bool bNoResults);
90     void ShowNoDictionary(bool bNoDictionary);
91     void ShowProgressIndicator(bool bShow);
92     void GrabFocus();
93 };