summaryrefslogtreecommitdiff
authorllornkcor <llornkcor>2002-11-08 13:40:06 (UTC)
committer llornkcor <llornkcor>2002-11-08 13:40:06 (UTC)
commit2aa75fdaeb219fffef86af1a2ca0aac0ac6731ce (patch) (unidiff)
tree568d62e648000ac4d8f0c909a0157af03de04298
parentada5be67fec81ed8845a6f358bbf7e3b181d417e (diff)
downloadopie-2aa75fdaeb219fffef86af1a2ca0aac0ac6731ce.zip
opie-2aa75fdaeb219fffef86af1a2ca0aac0ac6731ce.tar.gz
opie-2aa75fdaeb219fffef86af1a2ca0aac0ac6731ce.tar.bz2
change horz scroll position for when using left scroll
Diffstat (more/less context) (show whitespace changes)
-rw-r--r--core/apps/embeddedkonsole/TEWidget.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/core/apps/embeddedkonsole/TEWidget.cpp b/core/apps/embeddedkonsole/TEWidget.cpp
index c220e11..23720cd 100644
--- a/core/apps/embeddedkonsole/TEWidget.cpp
+++ b/core/apps/embeddedkonsole/TEWidget.cpp
@@ -1192,25 +1192,29 @@ void TEWidget::calcGeometry()
1192 scrollbar->show(); 1192 scrollbar->show();
1193 break; 1193 break;
1194 } 1194 }
1195 //FIXME: support 'rounding' styles 1195 //FIXME: support 'rounding' styles
1196 lines = ( contentsRect().height() - 2 * rimY ) / font_h; 1196 lines = ( contentsRect().height() - 2 * rimY ) / font_h;
1197 bY = (contentsRect().height() - (lines *font_h)) / 2; 1197 bY = (contentsRect().height() - (lines *font_h)) / 2;
1198 1198
1199 if(showhscrollbar == 1) { 1199 if(showhscrollbar == 1) {
1200 hScrollbar->resize(contentsRect().width() - hwidth, hwidth); 1200 hScrollbar->resize(contentsRect().width() - hwidth, hwidth);
1201 hScrollbar->setRange(0, vcolumns - dcolumns); 1201 hScrollbar->setRange(0, vcolumns - dcolumns);
1202 1202
1203 QPoint p = contentsRect().bottomLeft(); 1203 QPoint p = contentsRect().bottomLeft();
1204 if(scrollLoc == SCRLEFT)
1205 hScrollbar->move(QPoint(p.x()+hwidth, p.y() - hwidth));
1206 else
1204 hScrollbar->move(QPoint(p.x(), p.y() - hwidth)); 1207 hScrollbar->move(QPoint(p.x(), p.y() - hwidth));
1208
1205 hScrollbar->show(); 1209 hScrollbar->show();
1206 } 1210 }
1207 else hScrollbar->hide(); 1211 else hScrollbar->hide();
1208 1212
1209 if(showhscrollbar == 1) { 1213 if(showhscrollbar == 1) {
1210 lines = lines - (hwidth / font_h) - 1; 1214 lines = lines - (hwidth / font_h) - 1;
1211 if(lines < 1) lines = 1; 1215 if(lines < 1) lines = 1;
1212 } 1216 }
1213 //FIXME: support 'rounding' styles 1217 //FIXME: support 'rounding' styles
1214} 1218}
1215 1219
1216void TEWidget::makeImage() 1220void TEWidget::makeImage()