KDict converted to a singleton.
[jben.git] / jben.cpp
blob85fa519e348e9511ec3309d34d882e71bc9ac50e
1 /*
2 Project: J-Ben
3 Author: Paul Goins
4 Website: http://www.vultaire.net/software/jben/
5 License: GNU General Public License (GPL) version 2
6 (http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt)
8 File: jben.cpp
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 2 of the License, or
13 (at your option) any later version.
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with this program. If not, see <http://www.gnu.org/licenses/>
24 #include "global.h"
25 #include "jben.h"
27 #include <stdlib.h>
29 JBen *jben;
31 /* The application entry point */
32 IMPLEMENT_APP(JBen)
34 bool JBen::OnInit() {
35 jben = this;
36 kanjiList = (KanjiList *)NULL;
37 vocabList = (VocabList *)NULL;
38 gui = (MainGUI *)NULL;
40 /* Start our random number generator */
41 srand(time(NULL));
42 for(int i=0;i<50;i++) rand(); /* On some platforms I've seen rand() behave
43 fairly predictably for the first iteration
44 or so. That's why I spin off a few
45 iterations of rand() before really using
46 it. */
48 /* Dictionary loading, etc., depends on our config file. */
49 g_prefs = prefs = new Preferences(_T("jben.cfg"));
51 dicts = new Dictionaries();
53 if(dicts->GetWDict()) {
54 vocabList = new VocabList();
55 vocabList->AddList(prefs->vocabList);
57 else vocabList = NULL;
58 if(dicts->GetKDict()) {
59 kanjiList = new KanjiList(dicts->GetKDict()->GetHashTable());
60 kanjiList->AddFromString(prefs->kanjiList);
62 else kanjiList = NULL;
64 gui = new MainGUI();
65 gui->Show(true);
66 SetTopWindow(gui);
68 return true;
71 int JBen::OnExit() {
72 #ifdef DEBUG
73 printf("JBen::OnExit being processed...\n");
74 #endif
75 KDict::Destroy();
76 if(prefs) delete prefs;
77 if(dicts) delete dicts;
78 if(kanjiList) delete kanjiList;
79 if(vocabList) delete vocabList;
80 #ifdef DEBUG
81 printf("Terminating program.\n");
82 #endif
83 return 0;