Bring stop, lock, exit, and run icons into XDG compliance

pull/1/head
Timothy Pearson 10 years ago
parent 33696d15ef
commit ed23a2a924

@ -332,7 +332,7 @@ void K3bJobProgressDialog::slotInfoMessage( const TQString& infoString, int type
// set the icon
switch( type ) {
case K3bJob::ERROR:
currentInfoItem->setPixmap( 0, SmallIcon( "stop" ) );
currentInfoItem->setPixmap( 0, SmallIcon( "process-stop" ) );
break;
case K3bJob::WARNING:
currentInfoItem->setPixmap( 0, SmallIcon( "yellowinfo" ) );

@ -569,14 +569,14 @@ void K3bCdImageWritingDialog::slotUpdateImage( const TQString& )
K3bListViewItem* item = new K3bListViewItem( m_infoView, m_infoView->lastItem(),
i18n("Seems not to be a usable image") );
item->setForegroundColor( 0, TQt::red );
item->setPixmap( 0, SmallIcon( "stop") );
item->setPixmap( 0, SmallIcon( "process-stop") );
}
}
else {
K3bListViewItem* item = new K3bListViewItem( m_infoView, m_infoView->lastItem(),
i18n("File not found") );
item->setForegroundColor( 0, TQt::red );
item->setPixmap( 0, SmallIcon( "stop") );
item->setPixmap( 0, SmallIcon( "process-stop") );
}
slotToggleAll();
@ -871,7 +871,7 @@ void K3bCdImageWritingDialog::slotMd5JobFinished( bool success )
d->md5SumItem->setText( 1, i18n("Calculation cancelled") );
else
d->md5SumItem->setText( 1, i18n("Calculation failed") );
d->md5SumItem->setPixmap( 0, SmallIcon( "stop") );
d->md5SumItem->setPixmap( 0, SmallIcon( "process-stop") );
d->lastCheckedFile.truncate(0);
}

@ -381,7 +381,7 @@ void K3bIsoImageWritingDialog::updateImageSize( const TQString& path )
K3bListViewItem* item = new K3bListViewItem( m_infoView, m_infoView->lastItem(),
i18n("Not an Iso9660 image") );
item->setForegroundColor( 0, TQt::red );
item->setPixmap( 0, SmallIcon( "stop") );
item->setPixmap( 0, SmallIcon( "process-stop") );
}
calculateMd5Sum( path );
@ -473,7 +473,7 @@ void K3bIsoImageWritingDialog::slotMd5JobFinished( bool success )
d->md5SumItem->setText( 1, i18n("Calculation cancelled") );
else
d->md5SumItem->setText( 1, i18n("Calculation failed") );
d->md5SumItem->setPixmap( 0, SmallIcon( "stop") );
d->md5SumItem->setPixmap( 0, SmallIcon( "process-stop") );
d->lastCheckedFile.truncate(0);
}

@ -88,11 +88,11 @@ K3bCddbOptionTab::K3bCddbOptionTab( TQWidget* parent, const char* name )
// set icons for the buttons
m_buttonAddLocalDir->setPixmap( SmallIcon("ok") );
m_buttonRemoveLocalDir->setPixmap( SmallIcon("stop") );
m_buttonRemoveLocalDir->setPixmap( SmallIcon("process-stop") );
m_buttonLocalDirUp->setPixmap( SmallIcon("up") );
m_buttonLocalDirDown->setPixmap( SmallIcon("down") );
m_buttonAddCddbServer->setPixmap( SmallIcon("ok") );
m_buttonRemoveCddbServer->setPixmap( SmallIcon("stop") );
m_buttonRemoveCddbServer->setPixmap( SmallIcon("process-stop") );
m_buttonCddbServerUp->setPixmap( SmallIcon("up") );
m_buttonCddbServerDown->setPixmap( SmallIcon("down") );

@ -296,7 +296,7 @@ void K3bVcdTrackDialog::fillPbcGui()
}
// add Event Disabled
TQPixmap pmDisabled = SmallIcon( "stop" );
TQPixmap pmDisabled = SmallIcon( "process-stop" );
TQString txtDisabled = i18n( "Event Disabled" );
m_pbc_previous->insertItem( pmDisabled, txtDisabled );
m_pbc_next->insertItem( pmDisabled, txtDisabled );

@ -334,7 +334,7 @@ void K3bVideoCdView::initActions()
TQT_SLOT( slotDeselect() ), actionCollection(),
"deselect_track" );
TDEAction* actionStartRip = new TDEAction( i18n( "Start Ripping" ), "run", 0, TQT_TQOBJECT(this),
TDEAction* actionStartRip = new TDEAction( i18n( "Start Ripping" ), "system-run", 0, TQT_TQOBJECT(this),
TQT_SLOT( startRip() ), actionCollection(), "start_rip" );
// TODO: set the actions tooltips and whatsthis infos

Loading…
Cancel
Save