summaryrefslogtreecommitdiff
authorllornkcor <llornkcor>2002-11-01 01:20:04 (UTC)
committer llornkcor <llornkcor>2002-11-01 01:20:04 (UTC)
commit8f506dbc2b70df5ea0dd6c61014d20b433b1372f (patch) (unidiff)
treef70b808e9cd74119ca7957faf1b8451f4bc88aaf
parent4d2569e18b7f3e27c5d603c080ee3aee5a001231 (diff)
downloadopie-8f506dbc2b70df5ea0dd6c61014d20b433b1372f.zip
opie-8f506dbc2b70df5ea0dd6c61014d20b433b1372f.tar.gz
opie-8f506dbc2b70df5ea0dd6c61014d20b433b1372f.tar.bz2
fix ischecked wrap menu
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--core/apps/embeddedkonsole/konsole.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/apps/embeddedkonsole/konsole.cpp b/core/apps/embeddedkonsole/konsole.cpp
index 06bee33..5a68c81 100644
--- a/core/apps/embeddedkonsole/konsole.cpp
+++ b/core/apps/embeddedkonsole/konsole.cpp
@@ -978,55 +978,55 @@ void Konsole::parseCommandLine() {
978void Konsole::changeForegroundColor(const QColor &color) { 978void Konsole::changeForegroundColor(const QColor &color) {
979 Config cfg("Konsole"); 979 Config cfg("Konsole");
980 cfg.setGroup("Colors"); 980 cfg.setGroup("Colors");
981 int r, g, b; 981 int r, g, b;
982 color.rgb(&r,&g,&b); 982 color.rgb(&r,&g,&b);
983 foreground.setRgb(r,g,b); 983 foreground.setRgb(r,g,b);
984// QString colors; 984// QString colors;
985// colors.sprintf("%d,%d,%d"color.red,color.green,color.blue); 985// colors.sprintf("%d,%d,%d"color.red,color.green,color.blue);
986 cfg.writeEntry("foreground",color.name()); 986 cfg.writeEntry("foreground",color.name());
987 cfg.write(); 987 cfg.write();
988 988
989qDebug("do other dialog"); 989qDebug("do other dialog");
990#ifdef QWS_QT_OPIE 990#ifdef QWS_QT_OPIE
991 991
992 ColorPopupMenu* penColorPopupMenu2 = new ColorPopupMenu(Qt::black, this,"background color"); 992 ColorPopupMenu* penColorPopupMenu2 = new ColorPopupMenu(Qt::black, this,"background color");
993 connect(penColorPopupMenu2, SIGNAL(colorSelected(const QColor&)), this, 993 connect(penColorPopupMenu2, SIGNAL(colorSelected(const QColor&)), this,
994 SLOT(changeBackgroundColor(const QColor&))); 994 SLOT(changeBackgroundColor(const QColor&)));
995 penColorPopupMenu2->exec(); 995 penColorPopupMenu2->exec();
996#endif 996#endif
997} 997}
998 998
999void Konsole::changeBackgroundColor(const QColor &color) { 999void Konsole::changeBackgroundColor(const QColor &color) {
1000 1000
1001 qDebug("Change background"); 1001 qDebug("Change background");
1002 Config cfg("Konsole"); 1002 Config cfg("Konsole");
1003 cfg.setGroup("Colors"); 1003 cfg.setGroup("Colors");
1004 int r, g, b; 1004 int r, g, b;
1005 color.rgb(&r,&g,&b); 1005 color.rgb(&r,&g,&b);
1006 background.setRgb(r,g,b); 1006 background.setRgb(r,g,b);
1007// QString colors; 1007// QString colors;
1008// colors.sprintf("%d,%d,%d"color.red,color.green,color.blue); 1008// colors.sprintf("%d,%d,%d"color.red,color.green,color.blue);
1009 cfg.writeEntry("background",color.name()); 1009 cfg.writeEntry("background",color.name());
1010 cfg.write(); 1010 cfg.write();
1011} 1011}
1012 1012
1013void Konsole::doWrap() { 1013void Konsole::doWrap() {
1014int i; 1014int i;
1015#ifdef QWS_QT_OPIE 1015#ifdef QWS_QT_OPIE
1016i=-29; 1016i=-29;
1017#else 1017#else
1018i=-28; 1018i=-28;
1019#endif 1019#endif
1020 1020
1021 Config cfg("Konsole"); 1021 Config cfg("Konsole");
1022 cfg.setGroup("ScrollBar"); 1022 cfg.setGroup("ScrollBar");
1023 TEWidget* te = getTe(); 1023 TEWidget* te = getTe();
1024 if( !cfg.readBoolEntry("HorzScroll",0)) { 1024 if( !cfg.readBoolEntry("HorzScroll",0)) {
1025 te->setWrapAt(0); 1025 te->setWrapAt(0);
1026 configMenu->setItemChecked( i,FALSE); 1026 configMenu->setItemChecked( i,TRUE);
1027 } else { 1027 } else {
1028 te->setWrapAt(90); 1028 te->setWrapAt(90);
1029// te->setWrapAt(120); 1029// te->setWrapAt(120);
1030 configMenu->setItemChecked( i,TRUE); 1030 configMenu->setItemChecked( i,FALSE);
1031 } 1031 }
1032} 1032}