summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-console/default.cpp
authorzecke <zecke>2002-10-14 22:58:11 (UTC)
committer zecke <zecke>2002-10-14 22:58:11 (UTC)
commitd7290c6b24266303abd95e7f38c0fecae395f355 (patch) (side-by-side diff)
treef8202b056d9ae8de1cfa818de60ff2929c520f90 /noncore/apps/opie-console/default.cpp
parentf5d1ce4b3887e0f09704abad5b9414c9cd90be4b (diff)
downloadopie-d7290c6b24266303abd95e7f38c0fecae395f355.zip
opie-d7290c6b24266303abd95e7f38c0fecae395f355.tar.gz
opie-d7290c6b24266303abd95e7f38c0fecae395f355.tar.bz2
A small console emulation layer...
And some configuration stuff fonts are working colors are not fully working BackGround and ForeGround both are black :(
Diffstat (limited to 'noncore/apps/opie-console/default.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/opie-console/default.cpp16
1 files changed, 12 insertions, 4 deletions
diff --git a/noncore/apps/opie-console/default.cpp b/noncore/apps/opie-console/default.cpp
index 5c1c05a..64c9542 100644
--- a/noncore/apps/opie-console/default.cpp
+++ b/noncore/apps/opie-console/default.cpp
@@ -11,3 +11,3 @@
#include "terminalwidget.h"
-#include "vt102emulation.h"
+#include "MyPty.h"
@@ -51,2 +51,5 @@ extern "C" {
}
+ IOLayer* newConsole( const Profile& prof ) {
+ return new MyPty(prof );
+ }
@@ -65,2 +68,5 @@ extern "C" {
}
+ ProfileDialogWidget* newConsoleWid( const QString& str, QWidget* wid ) {
+ return 0l;
+ }
@@ -68,6 +74,6 @@ extern "C" {
// Terminal Widget(s)
-/* ProfileDialogWidget* newTerminalWidget(const QString& na, QWidget* wid) {
+ ProfileDialogWidget* newTerminalWidget(const QString& na, QWidget* wid) {
return new TerminalWidget(na, wid,0 );
}
-*/
+
/* // VT Emulations
@@ -92,2 +98,3 @@ Default::Default( MetaFactory* fact ) {
fact->addIOLayerFactory( "modem", QObject::tr("Modem"), newModemLayer );
+ fact->addIOLayerFactory( "console", QObject::tr("Console"), newConsole );
@@ -97,4 +104,5 @@ Default::Default( MetaFactory* fact ) {
fact->addConnectionWidgetFactory( "bt", QObject::tr("Bluetooth"), newBTWidget );
+ fact->addConnectionWidgetFactory( "console", QObject::tr("Console"), newConsoleWid );
-// fact->addTerminalWidgetFactory( "default", QObject::tr("Default Terminal"), newTerminalWidget );
+ fact->addTerminalWidgetFactory( "default", QObject::tr("Default Terminal"), newTerminalWidget );