summaryrefslogtreecommitdiff
path: root/inputmethods/dasher/QtDasherScreen.cc
authormjg59 <mjg59>2003-12-10 03:57:04 (UTC)
committer mjg59 <mjg59>2003-12-10 03:57:04 (UTC)
commitbecbcfae3bf3b5a714e7d3e39b924e08761739c2 (patch) (unidiff)
tree7ec5f6f90a9d529858da340150b415d87e7936ba /inputmethods/dasher/QtDasherScreen.cc
parent1f0b92e554b76852af210ceb277b3e9ecb09a43d (diff)
downloadopie-becbcfae3bf3b5a714e7d3e39b924e08761739c2.zip
opie-becbcfae3bf3b5a714e7d3e39b924e08761739c2.tar.gz
opie-becbcfae3bf3b5a714e7d3e39b924e08761739c2.tar.bz2
Fix the search directory for the training file, remove the (non-working anyway) font size calculation code - with luck, this'll fix the failure to start under Opie
Diffstat (limited to 'inputmethods/dasher/QtDasherScreen.cc') (more/less context) (ignore whitespace changes)
-rw-r--r--inputmethods/dasher/QtDasherScreen.cc13
1 files changed, 8 insertions, 5 deletions
diff --git a/inputmethods/dasher/QtDasherScreen.cc b/inputmethods/dasher/QtDasherScreen.cc
index d05ef49..7d77511 100644
--- a/inputmethods/dasher/QtDasherScreen.cc
+++ b/inputmethods/dasher/QtDasherScreen.cc
@@ -1,69 +1,72 @@
1// QtDasherScreen.cc 1// QtDasherScreen.cc
2// (c) 2003 Yann Dirson 2// (c) 2003 Yann Dirson
3// Derived from GtkDasherCanvas.cc 3// Derived from GtkDasherCanvas.cc
4// (c) 2002 Philip Cowans 4// (c) 2002 Philip Cowans
5 5
6#include <iostream> 6#include <iostream>
7#include <string> 7#include <string>
8 8
9#include <qpointarray.h> 9#include <qpointarray.h>
10#include <qpoint.h> 10#include <qpoint.h>
11 11
12#include "QtDasherScreen.h" 12#include "QtDasherScreen.h"
13#include "DasherScreen.h" 13#include "DasherScreen.h"
14#include "SettingsStore.h" 14#include "SettingsStore.h"
15 15
16#define MAXFONTSIZE 25 16#define MAXFONTSIZE 25
17#define MINFONTSIZE 8 17#define MINFONTSIZE 8
18 18
19#include <iconv.h>
20#include <iostream>
21
19QtDasherScreen::QtDasherScreen (int _width, int _height, 22QtDasherScreen::QtDasherScreen (int _width, int _height,
20 CDasherInterface *_interface, 23 CDasherInterface *_interface,
21 QWidget * _parent, Dasher::CDashEditbox *edit): 24 QWidget * _parent, Dasher::CDashEditbox *edit):
22 QWidget(_parent), interface( _interface ), 25 QWidget(_parent), interface( _interface ),
23 fontname( "fixed" ), // fontsize(12), 26 fontname( "fixed" ), fontsize(12),
24 Dasher::CDasherScreen(_width, _height) 27 Dasher::CDasherScreen(_width, _height)
25{ 28{
26 // font = new QFont (fontname, fontsize); 29 font = QFont (fontname.c_str(), fontsize);
27 painter = new QPainter (); 30 painter = new QPainter ();
28 31
29 pixmap = new QPixmap (_width, _height); 32 pixmap = new QPixmap (_width, _height);
30 pixmap->setOptimization(QPixmap::BestOptim); 33 pixmap->setOptimization(QPixmap::BestOptim);
31 interface->SetSettingsStore(new CSettingsStore); 34 interface->SetSettingsStore(new CSettingsStore);
32 35
33 interface->ChangeLanguageModel(0); 36 interface->ChangeLanguageModel(0);
34 interface->ChangeView(0); 37 interface->ChangeView(0);
35 interface->ChangeEdit(edit); 38 interface->ChangeEdit(edit);
36 39
37 interface->GetFontSizes(&FontSizes); 40/* interface->GetFontSizes(&FontSizes);
38 41
39 for (int i=0; i<FontSizes.size(); i++) { 42 for (int i=0; i<FontSizes.size(); i++) {
40 if (FontSizes[i]>Fonts.size()) 43 if (FontSizes[i]>Fonts.size())
41 Fonts.resize((FontSizes[i])+1); 44 Fonts.resize((FontSizes[i])+1);
42 Fonts[FontSizes[i]]= QFont (fontname.c_str(), FontSizes[i]); 45 Fonts[FontSizes[i]]= QFont (fontname.c_str(), FontSizes[i]);
43 Fonts[FontSizes[i]].setPixelSize(FontSizes[i]); 46// Fonts[FontSizes[i]].setPixelSize(FontSizes[i]);
44 } 47 }
45 48*/
46 interface->ChangeScreen(this); 49 interface->ChangeScreen(this);
47 50
48 paused=true; 51 paused=true;
49 52
50 QTimer *tmr = new QTimer(this); 53 QTimer *tmr = new QTimer(this);
51 connect (tmr, SIGNAL(timeout()), SLOT(timer())); 54 connect (tmr, SIGNAL(timeout()), SLOT(timer()));
52 tmr->start(200); 55 tmr->start(200);
53 56
54} 57}
55 58
56long QtDasherScreen::get_time() 59long QtDasherScreen::get_time()
57{ 60{
58 long s_now; 61 long s_now;
59 long ms_now; 62 long ms_now;
60 63
61 struct timeval tv; 64 struct timeval tv;
62 struct timezone tz; 65 struct timezone tz;
63 66
64 gettimeofday( &tv, &tz ); 67 gettimeofday( &tv, &tz );
65 68
66 s_now = tv.tv_sec-1054487600; 69 s_now = tv.tv_sec-1054487600;
67 70
68 ms_now = tv.tv_usec / 1000; 71 ms_now = tv.tv_usec / 1000;
69 72