author | harlekin <harlekin> | 2002-06-11 15:09:39 (UTC) |
---|---|---|
committer | harlekin <harlekin> | 2002-06-11 15:09:39 (UTC) |
commit | ee1b955759e12b91a2caf7dfb219a372dadfe65b (patch) (side-by-side diff) | |
tree | 877b6b5e585f92052ac7f376703d4b1c3cc4489c | |
parent | b4c905a143583bb3922d948961d6ce277fda6df4 (diff) | |
download | opie-ee1b955759e12b91a2caf7dfb219a372dadfe65b.zip opie-ee1b955759e12b91a2caf7dfb219a372dadfe65b.tar.gz opie-ee1b955759e12b91a2caf7dfb219a372dadfe65b.tar.bz2 |
now console remembers scrollbar setting on restart
-rw-r--r-- | core/apps/embeddedkonsole/konsole.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/core/apps/embeddedkonsole/konsole.cpp b/core/apps/embeddedkonsole/konsole.cpp index 3f6e0b4..b0d28fc 100644 --- a/core/apps/embeddedkonsole/konsole.cpp +++ b/core/apps/embeddedkonsole/konsole.cpp @@ -247,16 +247,16 @@ void Konsole::init(const char* _pgm, QStrList & _args) } fontChanged(cfont); configMenu = new QPopupMenu( this); colorMenu = new QPopupMenu( this); scrollMenu = new QPopupMenu( this); - editCommandListMenu = new QPopupMenu( this); - + editCommandListMenu = new QPopupMenu( this); + configMenu->insertItem("Command List",editCommandListMenu); - + bool listHidden; cfg.setGroup("Menubar"); if( cfg.readEntry("Hidden","FALSE") == "TRUE") { editCommandListMenu->insertItem( tr( "Show command list" )); listHidden=TRUE; } else { @@ -336,13 +336,13 @@ void Konsole::init(const char* _pgm, QStrList & _args) editCommandListMenu->setItemEnabled(-22 ,FALSE); } editCommandListMenu->insertItem(tr( "Edit" ) ); cfg.setGroup("Commands"); commonCombo->setInsertionPolicy(QComboBox::AtCurrent); - + initCommandList(); // for (int i = 0; commonCmds[i] != NULL; i++) { // commonCombo->insertItem( commonCmds[i], i ); // tmp = cfg.readEntry( QString::number(i),""); // if(tmp != "") // commonCombo->changeItem( tmp,i ); @@ -351,13 +351,13 @@ void Konsole::init(const char* _pgm, QStrList & _args) connect( commonCombo, SIGNAL( activated(int) ), this, SLOT( enterCommand(int) )); scrollMenu->insertItem(tr( "None" )); scrollMenu->insertItem(tr( "Left" )); scrollMenu->insertItem(tr( "Right" )); configMenu->insertItem(tr( "ScrollBar" ),scrollMenu); - + // create applications ///////////////////////////////////////////////////// setCentralWidget(tab); // load keymaps //////////////////////////////////////////////////////////// KeyTrans::loadAll(); for (int i = 0; i < KeyTrans::count(); i++) @@ -774,13 +774,13 @@ void Konsole::setColor() void Konsole::scrollMenuSelected(int index) { // QString temp; // qDebug( temp.sprintf("scrollbar menu %d",index)); TEWidget* te = getTe(); Config cfg("Konsole"); - cfg.setGroup("Scrollbar"); + cfg.setGroup("ScrollBar"); switch( index){ case -24: te->setScrollbarLocation(0); cfg.writeEntry("Position",0); break; case -25: @@ -789,13 +789,13 @@ void Konsole::scrollMenuSelected(int index) break; case -26: te->setScrollbarLocation(2); cfg.writeEntry("Position",2); break; }; - + } void Konsole::editCommandListMenuSelected(int iD) { // QString temp; // qDebug( temp.sprintf("edit command list %d",iD)); |