summaryrefslogtreecommitdiff
path: root/inputmethods
authorzecke <zecke>2004-08-14 15:43:08 (UTC)
committer zecke <zecke>2004-08-14 15:43:08 (UTC)
commit7657b6986a600ec1b3626c83e8f19036bf69e493 (patch) (unidiff)
treed8196d985a24663e9777dcc811f54b0eaf1abc9b /inputmethods
parent3df06db9e6fd268c7d234be05b01a2303dc0f7ba (diff)
downloadopie-7657b6986a600ec1b3626c83e8f19036bf69e493.zip
opie-7657b6986a600ec1b3626c83e8f19036bf69e493.tar.gz
opie-7657b6986a600ec1b3626c83e8f19036bf69e493.tar.bz2
Do not delete the parent in dtor, when the parent called you for
destruction
Diffstat (limited to 'inputmethods') (more/less context) (ignore whitespace changes)
-rw-r--r--inputmethods/dasher/QtDasherPlugin.cc2
-rw-r--r--inputmethods/dasher/QtDasherScreen.cc4
2 files changed, 2 insertions, 4 deletions
diff --git a/inputmethods/dasher/QtDasherPlugin.cc b/inputmethods/dasher/QtDasherPlugin.cc
index f491769..50d4539 100644
--- a/inputmethods/dasher/QtDasherPlugin.cc
+++ b/inputmethods/dasher/QtDasherPlugin.cc
@@ -14,49 +14,49 @@
14#include <qpushbutton.h> 14#include <qpushbutton.h>
15#include <qmessagebox.h> 15#include <qmessagebox.h>
16#include <qwindowsystem_qws.h> 16#include <qwindowsystem_qws.h>
17 17
18QtDasherPlugin::QtDasherPlugin(QWidget* parent, const char* name, WFlags f) : QFrame(parent,name,f) 18QtDasherPlugin::QtDasherPlugin(QWidget* parent, const char* name, WFlags f) : QFrame(parent,name,f)
19{ 19{
20 (new QHBoxLayout(this))->setAutoAdd(TRUE); 20 (new QHBoxLayout(this))->setAutoAdd(TRUE);
21 interface = new CDasherInterface; 21 interface = new CDasherInterface;
22 interface->SetSystemLocation("/opt/QtPalmtop/share/dasher/"); 22 interface->SetSystemLocation("/opt/QtPalmtop/share/dasher/");
23 interface->Unpause(0); 23 interface->Unpause(0);
24 interface->Start(); 24 interface->Start();
25 d = new QtDasherScreen(240,100,interface,this,this); 25 d = new QtDasherScreen(240,100,interface,this,this);
26 interface->ChangeMaxBitRate(2.5); 26 interface->ChangeMaxBitRate(2.5);
27 d->show(); 27 d->show();
28 utf8_codec = new QUtf8Codec; 28 utf8_codec = new QUtf8Codec;
29} 29}
30 30
31QSize QtDasherPlugin::sizeHint() const 31QSize QtDasherPlugin::sizeHint() const
32{ 32{
33 return QSize(240,100); 33 return QSize(240,100);
34} 34}
35 35
36QtDasherPlugin::~QtDasherPlugin() 36QtDasherPlugin::~QtDasherPlugin()
37{ 37{
38 delete d; 38 delete interface;
39} 39}
40 40
41void QtDasherPlugin::resetState() 41void QtDasherPlugin::resetState()
42{ 42{
43 flushcount=0; 43 flushcount=0;
44 interface->Start(); 44 interface->Start();
45 interface->Redraw(); 45 interface->Redraw();
46} 46}
47 47
48void QtDasherPlugin::unflush() 48void QtDasherPlugin::unflush()
49{ 49{
50 if (flushcount==0) 50 if (flushcount==0)
51 return; 51 return;
52 for (; flushcount>0; flushcount--) { 52 for (; flushcount>0; flushcount--) {
53 deletetext(); 53 deletetext();
54 } 54 }
55} 55}
56 56
57void QtDasherPlugin::output(int Symbol) 57void QtDasherPlugin::output(int Symbol)
58{ 58{
59 std::string label = interface->GetEditText(Symbol); 59 std::string label = interface->GetEditText(Symbol);
60 QString unicodestring = utf8_codec->toUnicode(label.c_str()); 60 QString unicodestring = utf8_codec->toUnicode(label.c_str());
61 for (int i=0; i<int(unicodestring.length()); i++) { 61 for (int i=0; i<int(unicodestring.length()); i++) {
62 emit key( unicodestring[i].unicode(), 0, 0, true, false ); 62 emit key( unicodestring[i].unicode(), 0, 0, true, false );
diff --git a/inputmethods/dasher/QtDasherScreen.cc b/inputmethods/dasher/QtDasherScreen.cc
index 2179cfb..b8a554c 100644
--- a/inputmethods/dasher/QtDasherScreen.cc
+++ b/inputmethods/dasher/QtDasherScreen.cc
@@ -56,52 +56,50 @@ QtDasherScreen::QtDasherScreen (int _width, int _height,
56 connect (tmr, SIGNAL(timeout()), SLOT(timer())); 56 connect (tmr, SIGNAL(timeout()), SLOT(timer()));
57 tmr->start(200); 57 tmr->start(200);
58 58
59} 59}
60 60
61long QtDasherScreen::get_time() 61long QtDasherScreen::get_time()
62{ 62{
63 long s_now; 63 long s_now;
64 long ms_now; 64 long ms_now;
65 65
66 struct timeval tv; 66 struct timeval tv;
67 struct timezone tz; 67 struct timezone tz;
68 68
69 gettimeofday( &tv, &tz ); 69 gettimeofday( &tv, &tz );
70 70
71 s_now = tv.tv_sec-1054487600; 71 s_now = tv.tv_sec-1054487600;
72 72
73 ms_now = tv.tv_usec / 1000; 73 ms_now = tv.tv_usec / 1000;
74 74
75 return( long(s_now*1000 + ms_now) ); 75 return( long(s_now*1000 + ms_now) );
76 76
77} 77}
78 78
79QtDasherScreen::~QtDasherScreen() 79QtDasherScreen::~QtDasherScreen()
80{ 80{
81 delete painter; 81 delete painter;
82 delete interface;
83 delete edit;
84} 82}
85 83
86QColor QtDasherScreen::getColor(int Color, const Opts::ColorSchemes ColorScheme) const 84QColor QtDasherScreen::getColor(int Color, const Opts::ColorSchemes ColorScheme) const
87{ 85{
88 switch (ColorScheme) { 86 switch (ColorScheme) {
89 case Dasher::Opts::Nodes1: 87 case Dasher::Opts::Nodes1:
90 switch (Color) { 88 switch (Color) {
91 case 0: return QColor (180, 245, 180); 89 case 0: return QColor (180, 245, 180);
92 case 1: return QColor (160, 200, 160); 90 case 1: return QColor (160, 200, 160);
93 case 2: return QColor (0, 255, 255); 91 case 2: return QColor (0, 255, 255);
94 default: abort (); 92 default: abort ();
95 } 93 }
96 case Dasher::Opts::Nodes2: 94 case Dasher::Opts::Nodes2:
97 switch (Color) { 95 switch (Color) {
98 case 0: return QColor (255, 185, 255); 96 case 0: return QColor (255, 185, 255);
99 case 1: return QColor (140, 200, 255); 97 case 1: return QColor (140, 200, 255);
100 case 2: return QColor (255, 175, 175); 98 case 2: return QColor (255, 175, 175);
101 default: abort (); 99 default: abort ();
102 } 100 }
103 case Dasher::Opts::Special1: return QColor (240, 240, 240); 101 case Dasher::Opts::Special1: return QColor (240, 240, 240);
104 case Dasher::Opts::Special2: return QColor (255, 255, 255); 102 case Dasher::Opts::Special2: return QColor (255, 255, 255);
105 case Dasher::Opts::Groups: 103 case Dasher::Opts::Groups:
106 switch (Color) { 104 switch (Color) {
107 case 0: return QColor (255, 255, 0); 105 case 0: return QColor (255, 255, 0);