diff options
Diffstat (limited to 'kdat/ImageCache.cpp')
-rw-r--r-- | kdat/ImageCache.cpp | 137 |
1 files changed, 137 insertions, 0 deletions
diff --git a/kdat/ImageCache.cpp b/kdat/ImageCache.cpp new file mode 100644 index 0000000..016fc61 --- /dev/null +++ b/kdat/ImageCache.cpp @@ -0,0 +1,137 @@ +// KDat - a tar-based DAT archiver +// Copyright (C) 1998-2000 Sean Vyain, svyain@mail.tds.net +// Copyright (C) 2001-2002 Lawrence Widman, kdat@cardiothink.com +// +// This program is free software; you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation; either version 2 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program; if not, write to the Free Software +// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + +#include <qpixmap.h> +#include <kglobal.h> +#include <kiconloader.h> + +#include "ImageCache.h" + +ImageCache::ImageCache() +{ + KIconLoader *l = KGlobal::iconLoader(); + /* 2002-01-24 FP */ + // _archive = new QPixmap(l->iconPath("package", KIcon::Toolbar)); + _archive = new QPixmap(l->iconPath("tar", KIcon::Small)); + /* 2002-01-24 FP */ + _backup = new QPixmap(l->iconPath("kdat_backup", KIcon::Toolbar)); + _file = new QPixmap(l->iconPath("mime_empty", KIcon::Small)); + _folderClosed = new QPixmap(l->iconPath("folder_blue", KIcon::Small)); + _folderOpen = new QPixmap(l->iconPath("folder_blue_open", KIcon::Small)); + _restore = new QPixmap(l->iconPath("kdat_restore", KIcon::Toolbar)); + _selectAll = new QPixmap(l->iconPath("kdat_select_all", KIcon::Toolbar)); + _selectNone = new QPixmap(l->iconPath("kdat_select_none", KIcon::Toolbar)); + _selectSome = new QPixmap(l->iconPath("kdat_select_some", KIcon::Toolbar)); + // 2002-01-28 FP + // _tape = new QPixmap(l->iconPath("kdat_archive", KIcon::Toolbar)); + _tape = new QPixmap(l->iconPath("kdat", KIcon::Small)); + // 2002-01-28 FP + _tapeMounted = new QPixmap(l->iconPath("kdat_mounted", KIcon::Toolbar)); + _tapeUnmounted = new QPixmap(l->iconPath("kdat_unmounted", KIcon::Toolbar)); + _verify = new QPixmap(l->iconPath("kdat_verify", KIcon::Toolbar)); +} + +ImageCache::~ImageCache() +{ + delete _archive; + delete _backup; + delete _file; + delete _folderClosed; + delete _folderOpen; + delete _restore; + delete _tape; + delete _tapeMounted; + delete _tapeUnmounted; + delete _verify; +} + +ImageCache* ImageCache::_instance = 0; + +ImageCache* ImageCache::instance() +{ + if ( _instance == 0 ) { + _instance = new ImageCache(); + } + + return _instance; +} + +const QPixmap* ImageCache::getArchive() +{ + return _archive; +} + +const QPixmap* ImageCache::getBackup() +{ + return _backup; +} + +const QPixmap* ImageCache::getFile() +{ + return _file; +} + +const QPixmap* ImageCache::getFolderClosed() +{ + return _folderClosed; +} + +const QPixmap* ImageCache::getFolderOpen() +{ + return _folderOpen; +} + +const QPixmap* ImageCache::getRestore() +{ + return _restore; +} + +const QPixmap* ImageCache::getSelectAll() +{ + return _selectAll; +} + +const QPixmap* ImageCache::getSelectNone() +{ + return _selectNone; +} + +const QPixmap* ImageCache::getSelectSome() +{ + return _selectSome; +} + +const QPixmap* ImageCache::getTape() +{ + return _tape; +} + +const QPixmap* ImageCache::getTapeMounted() +{ + return _tapeMounted; +} + +const QPixmap* ImageCache::getTapeUnmounted() +{ + return _tapeUnmounted; +} + +const QPixmap* ImageCache::getVerify() +{ + return _verify; +} |