mirror of
https://invent.kde.org/system/dolphin
synced 2024-11-05 18:47:12 +00:00
use BarIcon
svn path=/trunk/kdebase/kcontrol/kio/; revision=27640
This commit is contained in:
parent
f3f5e6a5cd
commit
f80a3c72c2
2 changed files with 12 additions and 12 deletions
|
@ -171,61 +171,61 @@ void KfindTop::toolBarInit()
|
|||
{
|
||||
QPixmap icon;
|
||||
|
||||
icon = Icon("search.xpm");
|
||||
icon = BarIcon("search");
|
||||
_toolBar->insertButton( icon, 0, SIGNAL(clicked()),
|
||||
_kfind, SLOT(startSearch()),
|
||||
TRUE, i18n("Start Search"));
|
||||
|
||||
icon = Icon("reload.xpm");
|
||||
icon = BarIcon("reload");
|
||||
_toolBar->insertButton( icon, 1, SIGNAL(clicked()),
|
||||
_kfind, SLOT(newSearch()),
|
||||
TRUE, i18n("New Search"));
|
||||
|
||||
icon = Icon("stop.xpm");
|
||||
icon = BarIcon("stop");
|
||||
_toolBar->insertButton( icon, 2, SIGNAL(clicked()),
|
||||
_kfind, SLOT(stopSearch()),
|
||||
FALSE, i18n("Stop Search"));
|
||||
|
||||
_toolBar->insertSeparator();
|
||||
|
||||
icon = Icon("openfile.xpm");
|
||||
icon = BarIcon("openfile");
|
||||
_toolBar->insertButton( icon, 3,SIGNAL(clicked()),
|
||||
_kfind,SIGNAL(open()),
|
||||
FALSE, i18n("Open"));
|
||||
|
||||
icon = Icon("archive.xpm");
|
||||
icon = BarIcon("archive");
|
||||
_toolBar->insertButton( icon, 4,SIGNAL(clicked()),
|
||||
_kfind,SIGNAL(addToArchive()),
|
||||
FALSE, i18n("Add to archive"));
|
||||
|
||||
icon = Icon("delete.xpm");
|
||||
icon = BarIcon("delete");
|
||||
_toolBar->insertButton( icon, 5,SIGNAL(clicked()),
|
||||
_kfind,SIGNAL(deleteFile()),
|
||||
FALSE, i18n("Delete"));
|
||||
|
||||
icon = Icon("info.xpm");
|
||||
icon = BarIcon("info");
|
||||
_toolBar->insertButton( icon, 6,SIGNAL(clicked()),
|
||||
_kfind,SIGNAL(properties()),
|
||||
FALSE, i18n("Properties"));
|
||||
|
||||
icon = Icon("fileopen.xpm");
|
||||
icon = BarIcon("fileopen");
|
||||
_toolBar->insertButton( icon, 7,SIGNAL(clicked()),
|
||||
_kfind,SIGNAL(openFolder()),
|
||||
FALSE, i18n("Open Containing Folder"));
|
||||
|
||||
icon = Icon("save.xpm");
|
||||
icon = BarIcon("save");
|
||||
_toolBar->insertButton( icon, 8,SIGNAL(clicked()),
|
||||
_kfind,SIGNAL(saveResults()),
|
||||
FALSE, i18n("Save Search Results"));
|
||||
|
||||
_toolBar->insertSeparator();
|
||||
|
||||
icon = Icon("contents.xpm");
|
||||
icon = BarIcon("contents");
|
||||
_toolBar->insertButton( icon, 9, SIGNAL( clicked() ),
|
||||
kapp, SLOT( appHelpActivated() ),
|
||||
TRUE, i18n("Help"));
|
||||
|
||||
icon = Icon("exit.xpm");
|
||||
icon = BarIcon("exit");
|
||||
_toolBar->insertButton( icon, 10, SIGNAL( clicked() ),
|
||||
KApplication::getKApplication(), SLOT( quit() ),
|
||||
TRUE, i18n("Quit"));
|
||||
|
|
|
@ -88,7 +88,7 @@ KProxyOptions::KProxyOptions(QWidget *parent, const char *name)
|
|||
|
||||
QString path;
|
||||
cp_down = new QPushButton( this );
|
||||
cp_down->setPixmap( ICON("down.xpm") );
|
||||
cp_down->setPixmap( BarIcon("down") );
|
||||
cp_down->setFixedSize(20,20);
|
||||
lay->addWidget(cp_down,ROW_HTTP,6);
|
||||
|
||||
|
|
Loading…
Reference in a new issue