-rwxr-xr-x | core/apps/embeddedkonsole/embeddedkonsole.pro | 1 | ||||
-rw-r--r-- | core/apps/embeddedkonsole/konsole.cpp | 21 |
2 files changed, 13 insertions, 9 deletions
diff --git a/core/apps/embeddedkonsole/embeddedkonsole.pro b/core/apps/embeddedkonsole/embeddedkonsole.pro index bfa16a2..913cb89 100755 --- a/core/apps/embeddedkonsole/embeddedkonsole.pro +++ b/core/apps/embeddedkonsole/embeddedkonsole.pro @@ -33,8 +33,9 @@ INTERFACES = commandeditdialogbase.ui smallcommandeditdialogbase.ui TARGET = embeddedkonsole INCLUDEPATH += $(OPIEDIR)/include DEPENDPATH += $(OPIEDIR)/include LIBS += -lqpe -lopie +TMAKE_CXXFLAGS += -DQT_QWS_OPIE TRANSLATIONS = ../../../i18n/de/embeddedkonsole.ts \ ../../../i18n/en/embeddedkonsole.ts \ ../../../i18n/es/embeddedkonsole.ts \ diff --git a/core/apps/embeddedkonsole/konsole.cpp b/core/apps/embeddedkonsole/konsole.cpp index ebff05e..4480fe2 100644 --- a/core/apps/embeddedkonsole/konsole.cpp +++ b/core/apps/embeddedkonsole/konsole.cpp @@ -18,9 +18,9 @@ /* Copyright (C) 2000 by John Ryland <jryland@trolltech.com> */ /* */ /* -------------------------------------------------------------------------- */ // enhancements added by L.J. Potter <ljp@llornkcor.com> -#define QWS_QT_OPIE +//#define QT_QWS_OPIE #include <qpe/resource.h> #include <qdir.h> @@ -54,9 +54,9 @@ #include "konsole.h" #include "keytrans.h" #include "commandeditdialog.h" -#ifdef QWS_QT_OPIE +#ifdef QT_QWS_OPIE #include <opie/colorpopupmenu.h> #endif class EKNumTabBar : public QTabBar { @@ -295,9 +295,9 @@ void Konsole::init(const char* _pgm, QStrList & _args) colorMenu->insertItem(tr( "White on Cyan")); colorMenu->insertItem(tr( "Blue on Black")); colorMenu->insertItem(tr( "Amber on Black")); -#ifdef QWS_QT_OPIE +#ifdef QT_QWS_OPIE colorMenu->insertItem(tr( "Custom")); #endif configMenu->insertItem(tr( "Colors") ,colorMenu); @@ -369,10 +369,13 @@ void Konsole::init(const char* _pgm, QStrList & _args) // scrollMenu->insertItem(tr( "Horizontal" )); configMenu->insertItem(tr( "ScrollBar" ),scrollMenu); - configMenu->insertItem(tr( "Wrap" )); - int jut = configMenu->insertItem(tr( "Use Beep" )); + int jut = configMenu->insertItem(tr( "Wrap" )); + cfg.setGroup("ScrollBar"); + configMenu->setItemChecked(jut, cfg.readBoolEntry("HorzScroll",0)); + + jut = configMenu->insertItem(tr( "Use Beep" )); cfg.setGroup("Menubar"); configMenu->setItemChecked(jut, cfg.readBoolEntry("useBeep",0)); @@ -752,9 +755,9 @@ void Konsole::colorMenuSelected(int iD) foreground.setRgb(255,215,0); cfg.writeEntry("Schema","18"); colorMenu->setItemChecked(-18,TRUE); } -#ifdef QWS_QT_OPIE +#ifdef QT_QWS_OPIE if(iD==-19) { // Custom qDebug("do custom"); if(fromMenu) { @@ -796,9 +799,9 @@ void Konsole::configMenuSelected(int iD) TEWidget* te = getTe(); Config cfg("Konsole"); cfg.setGroup("Menubar"); int i,j; -#ifdef QWS_QT_OPIE +#ifdef QT_QWS_OPIE i=-29;j=-30; #else i=-28;j=-29; #endif @@ -999,9 +1002,9 @@ void Konsole::changeForegroundColor(const QColor &color) { qDebug("foreground "+color.name()); cfg.write(); qDebug("do other dialog"); -#ifdef QWS_QT_OPIE +#ifdef QT_QWS_OPIE ColorPopupMenu* penColorPopupMenu2 = new ColorPopupMenu(Qt::black, this,"background color"); connect(penColorPopupMenu2, SIGNAL(colorSelected(const QColor&)), this, SLOT(changeBackgroundColor(const QColor&))); @@ -1023,9 +1026,9 @@ void Konsole::changeBackgroundColor(const QColor &color) { } void Konsole::doWrap() { int i; -#ifdef QWS_QT_OPIE +#ifdef QT_QWS_OPIE i=-29; #else i=-28; #endif |