summaryrefslogtreecommitdiff
path: root/core/apps
authorllornkcor <llornkcor>2004-01-17 22:19:17 (UTC)
committer llornkcor <llornkcor>2004-01-17 22:19:17 (UTC)
commite9700698b2d664a688af20008095551624c995ae (patch) (side-by-side diff)
tree0beaf08275a67e674c7cdd06df5c8431f538d59a /core/apps
parent839775ea257f2c9be752a77c41a09416469df591 (diff)
downloadopie-e9700698b2d664a688af20008095551624c995ae.zip
opie-e9700698b2d664a688af20008095551624c995ae.tar.gz
opie-e9700698b2d664a688af20008095551624c995ae.tar.bz2
fix for ascii char width
Diffstat (limited to 'core/apps') (more/less context) (ignore whitespace changes)
-rw-r--r--core/apps/embeddedkonsole/TEWidget.cpp21
1 files changed, 18 insertions, 3 deletions
diff --git a/core/apps/embeddedkonsole/TEWidget.cpp b/core/apps/embeddedkonsole/TEWidget.cpp
index d0850e3..ec1b30c 100644
--- a/core/apps/embeddedkonsole/TEWidget.cpp
+++ b/core/apps/embeddedkonsole/TEWidget.cpp
@@ -244,8 +244,18 @@ void TEWidget::fontChange(const QFont &)
{
QFontMetrics fm(font());
font_h = fm.height();
- font_w = fm.maxWidth();
- font_a = fm.ascent();
+
+ // font_w = max width of ASCII chars (U.B.)
+ font_w = 0;
+ int fw;
+ for (int i = 0x20; i < 0x80; i++) {
+ if (isprint(i) && font_w < (fw = fm.width(i))) {
+ font_w = fw;
+ }
+ }
+ //font_w = fm.maxWidth();
+
+ font_a = fm.ascent();
//printf("font_h: %d\n",font_h);
//printf("font_w: %d\n",font_w);
//printf("font_a: %d\n",font_a);
@@ -1020,6 +1030,7 @@ bool TEWidget::eventFilter( QObject *obj, QEvent *e )
static bool alt = FALSE;
// qDebug(" Has a keyboard with no CTRL and ALT keys, but we fake it:");
bool dele=FALSE;
+
if ( e->type() == QEvent::KeyPress || e->type() == QEvent::KeyRelease ) {
QKeyEvent* ke = (QKeyEvent*)e;
bool keydown = e->type() == QEvent::KeyPress || ke->isAutoRepeat();
@@ -1058,7 +1069,11 @@ bool TEWidget::eventFilter( QObject *obj, QEvent *e )
// know where the current selection is.
// qDebug("key pressed is 0x%x, ascii is 0x%x, state %d", ke->key(), ke->ascii(), ke->state());
-
+ if(ke->key() == Key_Escape) {
+ qDebug("key pressed is 0x%x, ascii is 0x%x, state %d", ke->key(), ke->ascii(), ke->state());
+
+ }
+
if( ke->state() == ShiftButton && ke->key() == Key_Tab) {
//lets hardcode this sucker