diff options
Diffstat (limited to 'languages/ruby/debugger/dbgtoolbar.cpp')
| -rw-r--r-- | languages/ruby/debugger/dbgtoolbar.cpp | 42 | 
1 files changed, 21 insertions, 21 deletions
diff --git a/languages/ruby/debugger/dbgtoolbar.cpp b/languages/ruby/debugger/dbgtoolbar.cpp index b49c9af8..3b13b148 100644 --- a/languages/ruby/debugger/dbgtoolbar.cpp +++ b/languages/ruby/debugger/dbgtoolbar.cpp @@ -34,7 +34,7 @@  #include <tqapplication.h>  #include <tqcursor.h>  #include <tqframe.h> -#include <layout.h> +#include <tqlayout.h>  #include <tqpainter.h>  #include <tqpushbutton.h>  #include <tqtooltip.h> @@ -126,8 +126,8 @@ void DbgMoveHandle::mousePressEvent(TQMouseEvent *e)          offset_ = parentWidget()->pos() - e->globalPos();          setFrameStyle(TQFrame::Panel|TQFrame::Sunken);          TQApplication::setOverrideCursor(TQCursor(sizeAllCursor)); -        setPalette(TQPalette(colorGroup().background())); -        repaint(); +        setPalette(TQPalette(tqcolorGroup().background())); +        tqrepaint();      }  } @@ -140,8 +140,8 @@ void DbgMoveHandle::mouseReleaseEvent(TQMouseEvent *e)      offset_ = TQPoint(0,0);      setFrameStyle(TQFrame::Panel|TQFrame::Raised);      TQApplication::restoreOverrideCursor(); -    setPalette(TQPalette(colorGroup().background())); -    repaint(); +    setPalette(TQPalette(tqcolorGroup().background())); +    tqrepaint();  }  // ************************************************************************** @@ -168,7 +168,7 @@ public:                DbgToolBar *parent, const char *name=0);      virtual ~DbgButton() {};      void drawButtonLabel(TQPainter *painter); -    TQSize sizeHint() const; +    TQSize tqsizeHint() const;  private:      TQPixmap pixmap_; @@ -197,19 +197,19 @@ void DbgButton::drawButtonLabel(TQPainter *painter)      painter->drawPixmap(x, y, pixmap_);      if (hasText) { -        painter->setPen(colorGroup().text()); +        painter->setPen(tqcolorGroup().text());          painter->drawText(height()+2, 0, width()-(height()+2), height(), AlignLeft|AlignVCenter, text());      }  }  // ************************************************************************** -TQSize DbgButton::sizeHint() const +TQSize DbgButton::tqsizeHint() const  {      if (text().isEmpty())          return pixmap_.size();      else -        return TQPushButton::sizeHint(); +        return TQPushButton::tqsizeHint();  }  // ************************************************************************** @@ -351,12 +351,12 @@ DbgToolBar::DbgToolBar(RubyDebuggerPart* part,      nextLayout->addWidget(bNext); -//     int w = TQMAX(bRun->sizeHint().width(), bFinish->sizeHint().width()); -//     w = TQMAX(w, bInterrupt->sizeHint().width()); -//     w = TQMAX(w, bView->sizeHint().width()); +//     int w = TQMAX(bRun->tqsizeHint().width(), bFinish->tqsizeHint().width()); +//     w = TQMAX(w, bInterrupt->tqsizeHint().width()); +//     w = TQMAX(w, bView->tqsizeHint().width());      // they should have the same height, so don't be too fussy -//     int h = bFinish->sizeHint().height(); +//     int h = bFinish->tqsizeHint().height();  //  //     bNext->setMinimumHeight(h);  //     bNexti->setMinimumHeight(h); @@ -390,10 +390,10 @@ void DbgToolBar::slotKdevFocus()      // If anyone has a way of determining what window the app is _actually_ running on      // then please fix and send a patch. -    if (winModule_->activeWindow() != topLevelWidget()->winId()) +    if (winModule_->activeWindow() != tqtopLevelWidget()->winId())          activeWindow_ = winModule_->activeWindow(); -    KWin::activateWindow(topLevelWidget()->winId()); +    KWin::activateWindow(tqtopLevelWidget()->winId());  }  // ************************************************************************** @@ -407,7 +407,7 @@ void DbgToolBar::slotPrevFocus()  // If the app is active then the app button is highlighted, otherwise  // kdev button is highlighted. -void DbgToolBar::slotDbgStatus(const TQString&, int state) +void DbgToolBar::slotDbgtqStatus(const TQString&, int state)  {      bool appIndicator = state & s_appBusy;      if (appIndicator != appIsActive_) { @@ -421,11 +421,11 @@ void DbgToolBar::slotDbgStatus(const TQString&, int state)  void DbgToolBar::setAppIndicator(bool appIndicator)  {      if (appIndicator) { -        bPrevFocus_->setPalette(TQPalette(colorGroup().mid())); -        bKDevFocus_->setPalette(TQPalette(colorGroup().background())); +        bPrevFocus_->setPalette(TQPalette(tqcolorGroup().mid())); +        bKDevFocus_->setPalette(TQPalette(tqcolorGroup().background()));      } else { -        bPrevFocus_->setPalette(TQPalette(colorGroup().background())); -        bKDevFocus_->setPalette(TQPalette(colorGroup().mid())); +        bPrevFocus_->setPalette(TQPalette(tqcolorGroup().background())); +        bKDevFocus_->setPalette(TQPalette(tqcolorGroup().mid()));      }  } @@ -473,7 +473,7 @@ void DbgToolBar::slotActivateAndUndock()      if (!docked_)          return; -    KWin::activateWindow(topLevelWidget()->winId()); +    KWin::activateWindow(tqtopLevelWidget()->winId());      slotUndock();  }  | 
