Version bump (0.6-4)
[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 #include <libosso.h>
29
30 #include "lib/pluginmanager.h"
31
32 extern MStarDict *pMStarDict;
33
34 class Conf;
35 class DictMngr;
36 class TransWin;
37 class Library;
38 class MStarDict;
39 class PrefsDlg;
40 class Tts;
41
42 class MStarDict {
43   private:
44     osso_context_t *osso_context;
45
46     GtkWidget *window;
47     GtkWidget *label_widget;
48     GtkWidget *results_widget;
49     GtkWidget *search_entry;
50     GtkWidget *results_view;
51     GtkWidget *results_view_scroll;
52
53     GtkListStore *results_list;
54
55     static gboolean onResultsViewSelectionChanged(GtkTreeSelection *selection,
56                                                   MStarDict *mStarDict);
57     static gboolean onSearchEntryChanged(GtkEditable *editable,
58                                          MStarDict *mStarDict);
59     static gboolean onSearchClearClicked(GtkButton *button,
60                                          MStarDict *mStarDict);
61     static gboolean onDictionariesMenuItemClicked(GtkButton *button,
62                                                   MStarDict *mStarDict);
63     static gboolean onDownloadDictionariesMenuItemClicked(GtkButton *button,
64                                                           MStarDict *mStarDict);
65     static gboolean onPreferencesMenuItemClicked(GtkButton *button,
66                                                  MStarDict *mStarDict);
67     static gboolean onQuitMenuItemClicked(GtkButton *button,
68                                           MStarDict *mStarDict);
69     static gboolean onLookupProgressDialogResponse(GtkDialog *dialog,
70                                                    gint response_id,
71                                                    bool *cancel);
72     static gboolean onMainWindowKeyPressEvent(GtkWidget *window,
73                                               GdkEventKey *event,
74                                               MStarDict *mStarDict);
75
76   public:
77      MStarDict();
78     ~MStarDict();
79
80     Conf *oConf;
81     DictMngr *oDict;
82     TransWin *oTransWin;
83     Library *oLibs;
84     StarDictPlugins *oPlugins;
85     PrefsDlg *oPrefs;
86     Tts *oTts;
87
88     GtkWidget *CreateLookupProgressDialog(bool *cancel);
89     void DestroyLookupProgressDialog(GtkWidget *dialog);
90     void CreateMainWindow();
91     GtkWidget *GetMainWindow();
92     GtkWidget *CreateSearchBar();
93     void CreateMainMenu();
94
95     void SearchWord();
96
97     void ResultsListClear();
98     void ResultsListInsertLast(const gchar *word);
99     void ResultsReScroll();
100     void ResultsUnselectAll(GtkSelectionMode mode);
101     void ShowNoResults(bool bNoResults);
102     void ShowNoDictionary(bool bNoDictionary);
103     void ShowProgressIndicator(bool bShow);
104     void GrabFocus();
105 };