Rename a few stragglers

(cherry picked from commit ec8318b9c1)
v3.5.13-sru
Timothy Pearson 13 years ago committed by Slávek Banko
parent 3a4c7b39c5
commit 925e5f7567

@ -887,8 +887,8 @@ void MultiTabBarTab::drawButtonStyled( TQPainter *paint )
if ( isOn() ) st |= TQStyle::Style_On; if ( isOn() ) st |= TQStyle::Style_On;
tqstyle().drawControl( TQStyle::CE_PushButton, &painter, this, TQRect( 0, 0, pixmap.width(), pixmap.height() ), colorGroup(), st ); style().drawControl( TQStyle::CE_PushButton, &painter, this, TQRect( 0, 0, pixmap.width(), pixmap.height() ), colorGroup(), st );
tqstyle().drawControl( TQStyle::CE_PushButtonLabel, &painter, this, TQRect( 0, 0, pixmap.width(), pixmap.height() ), colorGroup(), st ); style().drawControl( TQStyle::CE_PushButtonLabel, &painter, this, TQRect( 0, 0, pixmap.width(), pixmap.height() ), colorGroup(), st );
switch ( m_position ) { switch ( m_position ) {
case MultiTabBar::Left: case MultiTabBar::Left:

@ -74,7 +74,7 @@ PrettyPopupMenu::calcPixmapColor()
{ {
KConfig *config = KGlobal::config(); KConfig *config = KGlobal::config();
config->setGroup("WM"); config->setGroup("WM");
TQColor color = TQApplication::tqpalette().active().highlight(); TQColor color = TQApplication::palette().active().highlight();
// TQColor activeTitle = TQApplication::palette().active().background(); // TQColor activeTitle = TQApplication::palette().active().background();
// TQColor inactiveTitle = TQApplication::palette().inactive().background(); // TQColor inactiveTitle = TQApplication::palette().inactive().background();
TQColor activeTitle = config->readColorEntry("activeBackground", &color); TQColor activeTitle = config->readColorEntry("activeBackground", &color);
@ -84,7 +84,7 @@ PrettyPopupMenu::calcPixmapColor()
int h1, s1, v1, h2, s2, v2, h3, s3, v3; int h1, s1, v1, h2, s2, v2, h3, s3, v3;
activeTitle.hsv(&h1, &s1, &v1); activeTitle.hsv(&h1, &s1, &v1);
inactiveTitle.hsv(&h2, &s2, &v2); inactiveTitle.hsv(&h2, &s2, &v2);
TQApplication::tqpalette().active().background().hsv(&h3, &s3, &v3); TQApplication::palette().active().background().hsv(&h3, &s3, &v3);
if ( (kAbs(h1-h3)+kAbs(s1-s3)+kAbs(v1-v3) < kAbs(h2-h3)+kAbs(s2-s3)+kAbs(v2-v3)) && if ( (kAbs(h1-h3)+kAbs(s1-s3)+kAbs(v1-v3) < kAbs(h2-h3)+kAbs(s2-s3)+kAbs(v2-v3)) &&
((kAbs(h1-h3)+kAbs(s1-s3)+kAbs(v1-v3) < 32) || (s1 < 32)) && (s2 > s1)) ((kAbs(h1-h3)+kAbs(s1-s3)+kAbs(v1-v3) < 32) || (s1 < 32)) && (s2 > s1))

@ -191,7 +191,7 @@ void PopupMessage::countDown()
TQFrame *&h = m_countdownFrame; TQFrame *&h = m_countdownFrame;
if( m_counter < h->height() - 3 ) if( m_counter < h->height() - 3 )
TQPainter( h ).fillRect( 2, 2, h->width() - 4, m_counter, tqpalette().active().highlight() ); TQPainter( h ).fillRect( 2, 2, h->width() - 4, m_counter, palette().active().highlight() );
if( !hasMouse() ) if( !hasMouse() )
m_counter++; m_counter++;

@ -175,7 +175,7 @@ Amarok::TrayIcon::engineTrackPositionChanged( long position, bool /*userSeek*/ )
void void
Amarok::TrayIcon::paletteChange( const TQPalette & op ) Amarok::TrayIcon::paletteChange( const TQPalette & op )
{ {
if ( tqpalette().active().highlight() == op.active().highlight() || alternateIcon.isNull() ) if ( palette().active().highlight() == op.active().highlight() || alternateIcon.isNull() )
return; return;
alternateIcon.resize( 0, 0 ); alternateIcon.resize( 0, 0 );
@ -209,7 +209,7 @@ Amarok::TrayIcon::paintIcon( int mergePixels, bool force )
// eros: this looks cool with dark red blue or green but sucks with // eros: this looks cool with dark red blue or green but sucks with
// other colors (such as kde default's pale pink..). maybe the effect // other colors (such as kde default's pale pink..). maybe the effect
// or the blended color has to be changed.. // or the blended color has to be changed..
TQColor saturatedColor = tqpalette().active().highlight(); TQColor saturatedColor = palette().active().highlight();
int hue, sat, value; int hue, sat, value;
saturatedColor.getHsv( &hue, &sat, &value ); saturatedColor.getHsv( &hue, &sat, &value );
saturatedColor.setHsv( hue, sat > 200 ? 200 : sat, value < 100 ? 100 : value ); saturatedColor.setHsv( hue, sat > 200 ? 200 : sat, value < 100 ? 100 : value );

Loading…
Cancel
Save