diff options
Diffstat (limited to 'twin/clients/web/WebButton.cpp')
| -rw-r--r-- | twin/clients/web/WebButton.cpp | 26 | 
1 files changed, 13 insertions, 13 deletions
| diff --git a/twin/clients/web/WebButton.cpp b/twin/clients/web/WebButton.cpp index 785abe699..bf1f54af4 100644 --- a/twin/clients/web/WebButton.cpp +++ b/twin/clients/web/WebButton.cpp @@ -69,10 +69,10 @@ namespace Web {      0xff, 0x81, 0x81, 0xff, 0x81, 0xff, 0x81, 0xff    }; -WebButton::WebButton(ButtonType type, WebClient *parent, const char *name, bool shape) +WebButton::WebButton(ButtonType type, WebClient *parent, const char *name, bool tqshape)    : KCommonDecorationButton (type, parent, name),      mouseOver_  (false), -    shape_      (shape), +    tqshape_      (tqshape),      deco_       (parent)  {    setBackgroundMode(NoBackground); @@ -127,7 +127,7 @@ void WebButton::reset(unsigned long changed)  WebButton::enterEvent(TQEvent * e)  {    mouseOver_ = true; -  repaint(); +  tqrepaint();    TQButton::enterEvent(e);  } @@ -135,7 +135,7 @@ WebButton::enterEvent(TQEvent * e)  WebButton::leaveEvent(TQEvent * e)  {    mouseOver_ = false; -  repaint(); +  tqrepaint();    TQButton::leaveEvent(e);  } @@ -145,17 +145,17 @@ WebButton::drawButton(TQPainter *p)    TQPen highlightPen;    if (isDown() ) -    highlightPen = TQPen(colorGroup().light()); +    highlightPen = TQPen(tqcolorGroup().light());    else    {      if (mouseOver_) -      highlightPen = TQPen(colorGroup().highlight()); +      highlightPen = TQPen(tqcolorGroup().highlight());      else        highlightPen = TQPen(NoPen);    } -  p->fillRect(rect(), colorGroup().background()); +  p->fillRect(rect(), tqcolorGroup().background());    Position position_;    if (0 == mapToParent(rect().topLeft() ).x() ) @@ -174,7 +174,7 @@ WebButton::drawButton(TQPainter *p)          p->drawLine(0, 0, width(), 0);          p->drawLine(0, 1, 0, height() - 1); -        if (shape_) +        if (tqshape_)          {            p->drawPoint(3, 1);            p->drawPoint(4, 1); @@ -187,11 +187,11 @@ WebButton::drawButton(TQPainter *p)          p->setBrush(NoBrush);          p->setPen(highlightPen); -        if (shape_) +        if (tqshape_)            p->setClipRegion(TQRegion(rect()) - TQRect(0, 0, 6, 6));          p->drawRect(2, 2, width() - 4, height() - 4); -        if (shape_) +        if (tqshape_)          {            p->setClipRect(rect());            p->drawPoint(4, 3); @@ -210,7 +210,7 @@ WebButton::drawButton(TQPainter *p)          p->setPen(Qt::black);          p->drawLine(0, 0, width(), 0);          p->drawLine(width() - 1, 1, width() - 1, height() - 1); -        if (shape_) +        if (tqshape_)          {            p->drawPoint(width() - 5, 1);            p->drawPoint(width() - 4, 1); @@ -223,11 +223,11 @@ WebButton::drawButton(TQPainter *p)          p->setBrush(NoBrush);          p->setPen(highlightPen); -        if (shape_) +        if (tqshape_)            p->setClipRegion(TQRegion(rect()) - TQRect(width() - 6, 0, 6, 6));          p->drawRect(2, 2, width() - 4, height() - 4); -        if (shape_) +        if (tqshape_)          {            p->setClipRect(rect());            p->drawPoint(width() - 5, 3); | 
