|
|
|
/***************************************************************************
|
|
|
|
sq_iconloader.cpp - description
|
|
|
|
-------------------
|
|
|
|
begin : ??? Aug 20 2005
|
|
|
|
copyright : (C) 2005 by Baryshev Dmitry
|
|
|
|
email : ksquirrel.iv@gmail.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. *
|
|
|
|
* *
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <tdeglobal.h>
|
|
|
|
#include <kiconloader.h>
|
|
|
|
|
|
|
|
#include "sq_iconloader.h"
|
|
|
|
#include "sq_iconloader_pixmaps.h"
|
|
|
|
|
|
|
|
SQ_IconLoader * SQ_IconLoader::m_instance = 0;
|
|
|
|
|
|
|
|
SQ_IconLoader::SQ_IconLoader(TQObject *parent) : TQObject(parent)
|
|
|
|
{
|
|
|
|
m_instance = this;
|
|
|
|
|
|
|
|
fillPixmaps();
|
|
|
|
}
|
|
|
|
|
|
|
|
SQ_IconLoader::~SQ_IconLoader()
|
|
|
|
{}
|
|
|
|
|
|
|
|
TQPixmap SQ_IconLoader::loadIcon(const TQString& name, TDEIcon::Group group, int size) const
|
|
|
|
{
|
|
|
|
// try to load from installed icon theme
|
|
|
|
TQPixmap p = TDEGlobal::iconLoader()->loadIcon(name, group, size, TDEIcon::DefaultState, 0, true);
|
|
|
|
|
|
|
|
// requested pixmap not found, let's
|
|
|
|
// try to find it in our pixmaps
|
|
|
|
if(p.isNull())
|
|
|
|
{
|
|
|
|
if(name == "move_task_up")
|
|
|
|
p = pixmap_up;
|
|
|
|
else if(name == "move_task_down")
|
|
|
|
p = pixmap_down;
|
|
|
|
else if(name == "display" && size == 32)
|
|
|
|
p = pixmap_display;
|
|
|
|
else if(name == "folder" && size == 32)
|
|
|
|
p = pixmap_folder;
|
|
|
|
else if(name == "images" && size == 32)
|
|
|
|
p = pixmap_images;
|
|
|
|
else if(name == "binary" && size == 32)
|
|
|
|
p = pixmap_binary;
|
|
|
|
else if(name == "edit" && size == 32)
|
|
|
|
p = pixmap_edit;
|
|
|
|
else
|
|
|
|
p = TDEGlobal::iconLoader()->loadIcon(""text-x-katefilelist", group, size);
|
|
|
|
}
|
|
|
|
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Internal. Load all pixmaps.
|
|
|
|
*/
|
|
|
|
void SQ_IconLoader::fillPixmaps()
|
|
|
|
{
|
|
|
|
pixmap_up = TQPixmap(xpm_up);
|
|
|
|
pixmap_down = TQPixmap(xpm_down);
|
|
|
|
pixmap_display = TQPixmap(xpm_display);
|
|
|
|
pixmap_folder = TQPixmap(xpm_folder);
|
|
|
|
pixmap_images = TQPixmap(xpm_images);
|
|
|
|
pixmap_binary = TQPixmap(xpm_binary);
|
|
|
|
pixmap_edit = TQPixmap(xpm_edit);
|
|
|
|
}
|