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

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

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

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

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

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

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

@ -334,7 +334,7 @@ void K3bVideoCdView::initActions()
TQT_SLOT( slotDeselect() ), actionCollection(), TQT_SLOT( slotDeselect() ), actionCollection(),
"deselect_track" ); "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" ); TQT_SLOT( startRip() ), actionCollection(), "start_rip" );
// TODO: set the actions tooltips and whatsthis infos // TODO: set the actions tooltips and whatsthis infos

Loading…
Cancel
Save