summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-console/session.h
authorzecke <zecke>2002-10-14 19:58:07 (UTC)
committer zecke <zecke>2002-10-14 19:58:07 (UTC)
commit0547ecc794209a0824fd7662e434706ac625dbb2 (patch) (side-by-side diff)
tree90243ddbca14b2c01552d55b413be0d044c3a108 /noncore/apps/opie-console/session.h
parent7114c1567399d9b134af337824ef56e7d5facee7 (diff)
downloadopie-0547ecc794209a0824fd7662e434706ac625dbb2.zip
opie-0547ecc794209a0824fd7662e434706ac625dbb2.tar.gz
opie-0547ecc794209a0824fd7662e434706ac625dbb2.tar.bz2
Make it work
history and other stuff
Diffstat (limited to 'noncore/apps/opie-console/session.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/opie-console/session.h12
1 files changed, 4 insertions, 8 deletions
diff --git a/noncore/apps/opie-console/session.h b/noncore/apps/opie-console/session.h
index 04bf257..c3f3661 100644
--- a/noncore/apps/opie-console/session.h
+++ b/noncore/apps/opie-console/session.h
@@ -4,8 +4,7 @@
#include <qwidgetstack.h>
class IOLayer;
-class EmulationLayer;
-class WidgetLayer;
+class EmulationHandler;
/**
* This is a Session. A session contains
* a QWidget pointer and a IOLayer
@@ -41,8 +40,7 @@ public:
*/
IOLayer* layer();
-// EmulationLayer* emulationLayer();
- WidgetLayer* emulationWidget();
+ EmulationHandler* emulationHandler();
/*
* connects the data flow from
@@ -57,8 +55,7 @@ public:
void disconnect();
void setWidgetStack( QWidgetStack* widget );
-// void setEmulationLayer( EmulationLayer* lay );
-// void setEmulationWidget( WidgetLayer* lay );
+ void setEmulationHandler( EmulationHandler* lay );
void setIOLayer( IOLayer* );
void setName( const QString& );
@@ -66,8 +63,7 @@ private:
QString m_name;
QWidgetStack* m_widget;
IOLayer* m_layer;
-// EmulationLayer* m_emLay;
-// WidgetLayer* m_widLay;
+ EmulationHandler* m_emu;
};