Fixed typo in word Preferences (Preferencies->Preferences).
[mstardict] / src / prefsdlg.cpp
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 #ifdef HAVE_CONFIG_H
27 #  include "config.h"
28 #endif
29
30 #include <string>
31 #include <vector>
32 #include <memory>
33 #include <list>
34
35 #include <glib.h>
36 #include <glib/gi18n.h>
37
38 #include <gtk/gtk.h>
39 #include <hildon/hildon.h>
40
41 #include "conf.hpp"
42 #include "tts.hpp"
43 #include "prefsdlg.hpp"
44 #include "mstardict.hpp"
45
46 #define _HL(str) dgettext("hildon-libs",str)
47
48 PrefsDlg::PrefsDlg(MStarDict *mStarDict)
49 {
50     oStarDict = mStarDict;
51 }
52
53 PrefsDlg::~PrefsDlg()
54 {
55 }
56
57 void
58 PrefsDlg::CreatePrefsDialog()
59 {
60     GtkWidget *dialog, *vbox, *tts_conf;
61
62     /* create configuration dialog */
63     dialog = gtk_dialog_new();
64     gtk_window_set_modal(GTK_WINDOW(dialog), TRUE);
65     gtk_window_set_transient_for(GTK_WINDOW(dialog), GTK_WINDOW(oStarDict->GetMainWindow()));
66     gtk_window_set_title(GTK_WINDOW(dialog), _("Preferences"));
67     gtk_dialog_add_button(GTK_DIALOG(dialog), _HL("wdgt_bd_save"), GTK_RESPONSE_ACCEPT);
68
69     /* main vbox */
70     vbox = gtk_vbox_new(FALSE, 0);
71     gtk_container_add(GTK_CONTAINER(GTK_DIALOG(dialog)->vbox), vbox);
72
73     /* tts configuration widget */
74     tts_conf = oStarDict->oTts->CreateTtsConfWidget();
75     gtk_box_pack_start(GTK_BOX(vbox), tts_conf, TRUE, TRUE, 0);
76
77     /* load tts configuration */
78     oStarDict->oTts->TtsConfWidgetLoadConf();
79
80     /* run the dialog */
81     gtk_widget_show_all(GTK_WIDGET(dialog));
82     if (gtk_dialog_run(GTK_DIALOG(dialog)) == GTK_RESPONSE_ACCEPT) {
83         /* save tts configuration */
84         oStarDict->oTts->TtsConfWidgetSaveConf();
85     }
86
87     gtk_widget_destroy(GTK_WIDGET(dialog));
88 }