-rw-r--r-- | core/apps/embeddedkonsole/TEWidget.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/core/apps/embeddedkonsole/TEWidget.cpp b/core/apps/embeddedkonsole/TEWidget.cpp index 8206e4b..cc88555 100644 --- a/core/apps/embeddedkonsole/TEWidget.cpp +++ b/core/apps/embeddedkonsole/TEWidget.cpp | |||
@@ -30,64 +30,69 @@ | |||
30 | <li> The external image used in setImage can have any size. | 30 | <li> The external image used in setImage can have any size. |
31 | <li> (internally) the external image is simply copied to the internal | 31 | <li> (internally) the external image is simply copied to the internal |
32 | when a setImage happens. During a resizeEvent no painting is done | 32 | when a setImage happens. During a resizeEvent no painting is done |
33 | a paintEvent is expected to follow anyway. | 33 | a paintEvent is expected to follow anyway. |
34 | </ul> | 34 | </ul> |
35 | 35 | ||
36 | \sa TEScreen \sa Emulation | 36 | \sa TEScreen \sa Emulation |
37 | */ | 37 | */ |
38 | 38 | ||
39 | /* FIXME: | 39 | /* FIXME: |
40 | - 'image' may also be used uninitialized (it isn't in fact) in resizeEvent | 40 | - 'image' may also be used uninitialized (it isn't in fact) in resizeEvent |
41 | - 'font_a' not used in mouse events | 41 | - 'font_a' not used in mouse events |
42 | - add destructor | 42 | - add destructor |
43 | */ | 43 | */ |
44 | 44 | ||
45 | /* TODO | 45 | /* TODO |
46 | - evtl. be sensitive to `paletteChange' while using default colors. | 46 | - evtl. be sensitive to `paletteChange' while using default colors. |
47 | - set different 'rounding' styles? I.e. have a mode to show clipped chars? | 47 | - set different 'rounding' styles? I.e. have a mode to show clipped chars? |
48 | */ | 48 | */ |
49 | 49 | ||
50 | // #include "config.h" | 50 | // #include "config.h" |
51 | #include "TEWidget.h" | 51 | #include "TEWidget.h" |
52 | #include "session.h" | 52 | #include "session.h" |
53 | #include <qpe/config.h> | 53 | #include <qpe/config.h> |
54 | 54 | ||
55 | 55 | ||
56 | #if !(QT_NO_COP) | 56 | #if !(QT_NO_COP) |
57 | #include <qpe/qcopenvelope_qws.h> | 57 | #include <qpe/qcopenvelope_qws.h> |
58 | #endif | 58 | #endif |
59 | 59 | ||
60 | #include <qclipboard.h> | 60 | #include <qclipboard.h> |
61 | 61 | ||
62 | #ifndef QT_NO_DRAGANDDROP | ||
63 | #include <qdragobject.h> | ||
64 | #include <qfile.h> | ||
65 | #endif | ||
66 | |||
62 | #include <stdio.h> | 67 | #include <stdio.h> |
63 | #include <stdlib.h> | 68 | #include <stdlib.h> |
64 | #include <unistd.h> | 69 | #include <unistd.h> |
65 | #include <ctype.h> | 70 | #include <ctype.h> |
66 | #include <sys/stat.h> | 71 | #include <sys/stat.h> |
67 | #include <sys/types.h> | 72 | #include <sys/types.h> |
68 | #include <signal.h> | 73 | #include <signal.h> |
69 | 74 | ||
70 | #include <assert.h> | 75 | #include <assert.h> |
71 | 76 | ||
72 | // #include "TEWidget.moc" | 77 | // #include "TEWidget.moc" |
73 | //#include <kapp.h> | 78 | //#include <kapp.h> |
74 | //#include <kcursor.h> | 79 | //#include <kcursor.h> |
75 | //#include <kurl.h> | 80 | //#include <kurl.h> |
76 | //#include <kdebug.h> | 81 | //#include <kdebug.h> |
77 | //#include <klocale.h> | 82 | //#include <klocale.h> |
78 | 83 | ||
79 | #define HERE printf("%s(%d): %s\n",__FILE__,__LINE__,__FUNCTION__) | 84 | #define HERE printf("%s(%d): %s\n",__FILE__,__LINE__,__FUNCTION__) |
80 | #define HCNT(Name) // { static int cnt = 1; printf("%s(%d): %s %d\n",__FILE__,__LINE__,Name,cnt++); } | 85 | #define HCNT(Name) // { static int cnt = 1; printf("%s(%d): %s %d\n",__FILE__,__LINE__,Name,cnt++); } |
81 | 86 | ||
82 | #define loc(X,Y) ((Y)*columns+(X)) | 87 | #define loc(X,Y) ((Y)*columns+(X)) |
83 | 88 | ||
84 | //FIXME: the rim should normally be 1, 0 only when running in full screen mode. | 89 | //FIXME: the rim should normally be 1, 0 only when running in full screen mode. |
85 | #define rimX 0 // left/right rim width | 90 | #define rimX 0 // left/right rim width |
86 | #define rimY 0 // top/bottom rim high | 91 | #define rimY 0 // top/bottom rim high |
87 | 92 | ||
88 | #define SCRWIDTH 16 // width of the scrollbar | 93 | #define SCRWIDTH 16 // width of the scrollbar |
89 | 94 | ||
90 | #define yMouseScroll 1 | 95 | #define yMouseScroll 1 |
91 | // scroll increment used when dragging selection at top/bottom of window. | 96 | // scroll increment used when dragging selection at top/bottom of window. |
92 | 97 | ||
93 | /* ------------------------------------------------------------------------- */ | 98 | /* ------------------------------------------------------------------------- */ |