-rw-r--r-- | core/apps/embeddedkonsole/konsole.cpp | 34 |
1 files changed, 20 insertions, 14 deletions
diff --git a/core/apps/embeddedkonsole/konsole.cpp b/core/apps/embeddedkonsole/konsole.cpp index 4480fe2..8885b58 100644 --- a/core/apps/embeddedkonsole/konsole.cpp +++ b/core/apps/embeddedkonsole/konsole.cpp @@ -865,44 +865,50 @@ void Konsole::setColor() } void Konsole::scrollMenuSelected(int index) { qDebug( "scrollbar menu %d",index); TEWidget* te = getTe(); Config cfg("Konsole"); cfg.setGroup("ScrollBar"); - switch( index){ - case -25: - te->setScrollbarLocation(0); - cfg.writeEntry("Position",0); - break; - case -26: - te->setScrollbarLocation(1); - cfg.writeEntry("Position",1); - break; - case -27: - te->setScrollbarLocation(2); - cfg.writeEntry("Position",2); - break; + int i,j,k; +#ifdef QT_QWS_OPIE +i=-25;j=-26;k=-27; +#else +i=-24;j=-25;k=-26; +#endif + if(index == i) { + + te->setScrollbarLocation(0); + cfg.writeEntry("Position",0); + } else if(index == j) { + + te->setScrollbarLocation(1); + cfg.writeEntry("Position",1); + } else if(index == k) { + + te->setScrollbarLocation(2); + cfg.writeEntry("Position",2); + } + // case -29: { // bool b=cfg.readBoolEntry("HorzScroll",0); // cfg.writeEntry("HorzScroll", !b ); // cfg.write(); // if(cfg.readNumEntry("Position",2) == 0) { // te->setScrollbarLocation(1); // te->setWrapAt(0); // } else { // te->setScrollbarLocation(0); // te->setWrapAt(120); // } // te->setScrollbarLocation( cfg.readNumEntry("Position",2)); // } // break; - }; } void Konsole::editCommandListMenuSelected(int iD) { // QString temp; // qDebug( temp.sprintf("edit command list %d",iD)); TEWidget* te = getTe(); Config cfg("Konsole"); |