|
|
|
@ -24,26 +24,26 @@
|
|
|
|
|
|
|
|
|
|
ImageCache::ImageCache()
|
|
|
|
|
{
|
|
|
|
|
KIconLoader *l = TDEGlobal::iconLoader();
|
|
|
|
|
TDEIconLoader *l = TDEGlobal::iconLoader();
|
|
|
|
|
/* 2002-01-24 FP */
|
|
|
|
|
// _archive = new TQPixmap(l->iconPath("package", KIcon::Toolbar));
|
|
|
|
|
_archive = new TQPixmap(l->iconPath("tar", KIcon::Small));
|
|
|
|
|
// _archive = new TQPixmap(l->iconPath("package", TDEIcon::Toolbar));
|
|
|
|
|
_archive = new TQPixmap(l->iconPath("tar", TDEIcon::Small));
|
|
|
|
|
/* 2002-01-24 FP */
|
|
|
|
|
_backup = new TQPixmap(l->iconPath("kdat_backup", KIcon::Toolbar));
|
|
|
|
|
_file = new TQPixmap(l->iconPath("mime_empty", KIcon::Small));
|
|
|
|
|
_folderClosed = new TQPixmap(l->iconPath("folder_blue", KIcon::Small));
|
|
|
|
|
_folderOpen = new TQPixmap(l->iconPath("folder_blue_open", KIcon::Small));
|
|
|
|
|
_restore = new TQPixmap(l->iconPath("kdat_restore", KIcon::Toolbar));
|
|
|
|
|
_selectAll = new TQPixmap(l->iconPath("kdat_select_all", KIcon::Toolbar));
|
|
|
|
|
_selectNone = new TQPixmap(l->iconPath("kdat_select_none", KIcon::Toolbar));
|
|
|
|
|
_selectSome = new TQPixmap(l->iconPath("kdat_select_some", KIcon::Toolbar));
|
|
|
|
|
_backup = new TQPixmap(l->iconPath("kdat_backup", TDEIcon::Toolbar));
|
|
|
|
|
_file = new TQPixmap(l->iconPath("mime_empty", TDEIcon::Small));
|
|
|
|
|
_folderClosed = new TQPixmap(l->iconPath("folder_blue", TDEIcon::Small));
|
|
|
|
|
_folderOpen = new TQPixmap(l->iconPath("folder_blue_open", TDEIcon::Small));
|
|
|
|
|
_restore = new TQPixmap(l->iconPath("kdat_restore", TDEIcon::Toolbar));
|
|
|
|
|
_selectAll = new TQPixmap(l->iconPath("kdat_select_all", TDEIcon::Toolbar));
|
|
|
|
|
_selectNone = new TQPixmap(l->iconPath("kdat_select_none", TDEIcon::Toolbar));
|
|
|
|
|
_selectSome = new TQPixmap(l->iconPath("kdat_select_some", TDEIcon::Toolbar));
|
|
|
|
|
// 2002-01-28 FP
|
|
|
|
|
// _tape = new TQPixmap(l->iconPath("kdat_archive", KIcon::Toolbar));
|
|
|
|
|
_tape = new TQPixmap(l->iconPath("kdat", KIcon::Small));
|
|
|
|
|
// _tape = new TQPixmap(l->iconPath("kdat_archive", TDEIcon::Toolbar));
|
|
|
|
|
_tape = new TQPixmap(l->iconPath("kdat", TDEIcon::Small));
|
|
|
|
|
// 2002-01-28 FP
|
|
|
|
|
_tapeMounted = new TQPixmap(l->iconPath("kdat_mounted", KIcon::Toolbar));
|
|
|
|
|
_tapeUnmounted = new TQPixmap(l->iconPath("kdat_unmounted", KIcon::Toolbar));
|
|
|
|
|
_verify = new TQPixmap(l->iconPath("kdat_verify", KIcon::Toolbar));
|
|
|
|
|
_tapeMounted = new TQPixmap(l->iconPath("kdat_mounted", TDEIcon::Toolbar));
|
|
|
|
|
_tapeUnmounted = new TQPixmap(l->iconPath("kdat_unmounted", TDEIcon::Toolbar));
|
|
|
|
|
_verify = new TQPixmap(l->iconPath("kdat_verify", TDEIcon::Toolbar));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ImageCache::~ImageCache()
|
|
|
|
|