From 37ecc2870891c51e8f49161e78697c14a7cd4af5 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Sun, 27 Jan 2013 20:59:01 -0600 Subject: Rename kiobuffer and KHTML --- style/qtcurve.cpp | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'style') diff --git a/style/qtcurve.cpp b/style/qtcurve.cpp index e636293..4ba1dfe 100644 --- a/style/qtcurve.cpp +++ b/style/qtcurve.cpp @@ -48,11 +48,11 @@ */ /* -KHTML +TDEHTML ----- Srollbars: -For some reason Scrollbars in KHTML seem to lose the bottom/left pixels. As if KHTML expects +For some reason Scrollbars in TDEHTML seem to lose the bottom/left pixels. As if TDEHTML expects the scrollbar to be 1 pixel smaller/thinner than it actually is. To 'fix' this, the pixelMetric function will return 1 scrollbar with 1 greater than standard for form widgets, or where widget==0L @@ -451,7 +451,7 @@ static bool isKhtmlFormWidget(const TQWidget *widget) // Copied from Keramik... - //Form widgets are in the KHTMLView, but that has 2 further inner levels + //Form widgets are in the TDEHTMLView, but that has 2 further inner levels //of widgets - TQClipperWidget, and outside of that, TQViewportWidget TQWidget *potentialClipPort(widget ? widget->parentWidget() : 0L); @@ -464,10 +464,10 @@ static bool isKhtmlFormWidget(const TQWidget *widget) qstrcmp(potentialViewPort->name(), "qt_viewport")) return false; - TQWidget *potentialKHTML(potentialViewPort->parentWidget()); + TQWidget *potentialTDEHTML(potentialViewPort->parentWidget()); - if (!potentialKHTML || potentialKHTML->isTopLevel() || - qstrcmp(potentialKHTML->className(), "KHTMLView")) + if (!potentialTDEHTML || potentialTDEHTML->isTopLevel() || + qstrcmp(potentialTDEHTML->className(), "TDEHTMLView")) return false; return true; @@ -2833,7 +2833,7 @@ void QtCurveStyle::drawBorder(const TQColor &bgnd, TQPainter *p, const TQRect &r p->setPen(border); if(itsFormMode) { - // If we're itsFormMode (KHTML) then we need to draw the aa borders using pixmaps + // If we're itsFormMode (TDEHTML) then we need to draw the aa borders using pixmaps // - so we need to draw 2 pixels away from each corner (so that the alpha // blend lets through the background color... p->drawLine(r.x()+2, r.y(), r.x()+r.width()-3, r.y()); @@ -2865,7 +2865,7 @@ void QtCurveStyle::drawBorder(const TQColor &bgnd, TQPainter *p, const TQRect &r } else { - // If we're not itsFormMode (ie. not KHTML) then we can just draw 1 pixel in - as + // If we're not itsFormMode (ie. not TDEHTML) then we can just draw 1 pixel in - as // we can overwrite with the alpha colour. p->drawLine(r.x()+1, r.y(), r.x()+r.width()-2, r.y()); p->drawLine(r.x()+1, r.y()+r.height()-1, r.x()+r.width()-2, r.y()+r.height()-1); @@ -6178,7 +6178,7 @@ void QtCurveStyle::drawComplexControl(ComplexControl control, TQPainter *p, cons { bool enable=!atMax; - // See KHTML note at top of file + // See TDEHTML note at top of file if(itsFormMode && SCROLLBAR_NEXT!=opts.scrollbarType) { if(horiz) { addline.addCoords(0, 0, -1, 0); @@ -6866,7 +6866,7 @@ int QtCurveStyle::pixelMetric(PixelMetric metric, const TQStyleControlElementDat case PM_SliderLength: return SLIDER_TRIANGULAR==opts.sliderStyle ? 11 : (SLIDER_SIZE+(ROTATED_SLIDER ? -2 : 6)); case PM_ScrollBarExtent: - // See KHTML note at top of file + // See TDEHTML note at top of file return opts.sliderWidth+ (APP_KPRESENTER==itsThemedApp || ((APP_KONQUEROR==itsThemedApp || APP_KONTACT==itsThemedApp) && (!widget || isFormWidget(widget))) @@ -8781,7 +8781,7 @@ void QtCurveStyle::adjustScrollbarRects(bool &itsFormMode, if(itsFormMode) { - // See KHTML note at top of file + // See TDEHTML note at top of file if(horiz) { subline.addCoords(0, 0, 0, -1); -- cgit v1.2.3