summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-console/widget_layer.h
authoribotty <ibotty>2002-10-13 10:27:40 (UTC)
committer ibotty <ibotty>2002-10-13 10:27:40 (UTC)
commitb8377d9c462d7edbc92c6809503cb53a09f8fd98 (patch) (unidiff)
tree87e592def2ca4838665de93ba0e93125cffec1d8 /noncore/apps/opie-console/widget_layer.h
parent034504c65f8115f6a2fbd4f022082cc867aa2605 (diff)
downloadopie-b8377d9c462d7edbc92c6809503cb53a09f8fd98.zip
opie-b8377d9c462d7edbc92c6809503cb53a09f8fd98.tar.gz
opie-b8377d9c462d7edbc92c6809503cb53a09f8fd98.tar.bz2
added call to calcGeometry in constructor of EmulationWidget.
hopefully fixes the 50x1 size problem
Diffstat (limited to 'noncore/apps/opie-console/widget_layer.h') (more/less context) (show whitespace changes)
-rw-r--r--noncore/apps/opie-console/widget_layer.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/noncore/apps/opie-console/widget_layer.h b/noncore/apps/opie-console/widget_layer.h
index bc8fe36..067f3da 100644
--- a/noncore/apps/opie-console/widget_layer.h
+++ b/noncore/apps/opie-console/widget_layer.h
@@ -17,24 +17,26 @@
17#include <qapplication.h> 17#include <qapplication.h>
18#include <qframe.h> 18#include <qframe.h>
19#include <qarray.h> 19#include <qarray.h>
20#include <qtimer.h> 20#include <qtimer.h>
21#include <qkeycode.h> 21#include <qkeycode.h>
22#include <qclipboard.h> 22#include <qclipboard.h>
23 23
24 24
25// opie-console includes 25// opie-console includes
26#include "session.h" 26#include "session.h"
27#include "common.h" 27#include "common.h"
28#include "profile.h" 28#include "profile.h"
29
30
29/* 31/*
30 * given a pseudo location ( column, line ), 32 * given a pseudo location ( column, line ),
31 * returns the actual index, in the QArray<Character> 33 * returns the actual index, in the QArray<Character>
32 */ 34 */
33#define loc(X,Y) ((Y)*m_columns+(X)) 35#define loc(X,Y) ((Y)*m_columns+(X))
34 36
35 37
36 38
37extern unsigned short vt100_graphics[32]; 39extern unsigned short vt100_graphics[32];
38 40
39class WidgetLayer : public QFrame 41class WidgetLayer : public QFrame
40{ Q_OBJECT 42{ Q_OBJECT