X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModuleBase%2FModuleBase_IconFactory.cpp;h=a691efd3242079f656ea640db9d3df7c32e8a379;hb=b3025c793455da0df5d0fe83455a7f45c64e885e;hp=ed2719816e245dba947607a30edce4ed24e98c57;hpb=868158fe6d39b25e60ac528295b1c908821e4af5;p=modules%2Fshaper.git diff --git a/src/ModuleBase/ModuleBase_IconFactory.cpp b/src/ModuleBase/ModuleBase_IconFactory.cpp index ed2719816..a691efd32 100644 --- a/src/ModuleBase/ModuleBase_IconFactory.cpp +++ b/src/ModuleBase/ModuleBase_IconFactory.cpp @@ -1,11 +1,28 @@ -// Copyright (C) 2014-20xx CEA/DEN, EDF R&D +// Copyright (C) 2014-2017 CEA/DEN, EDF R&D +// +// This library is free software; you can redistribute it and/or +// modify it under the terms of the GNU Lesser General Public +// License as published by the Free Software Foundation; either +// version 2.1 of the License, or (at your option) any later version. +// +// This library 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 +// Lesser General Public License for more details. +// +// You should have received a copy of the GNU Lesser General Public +// License along with this library; if not, write to the Free Software +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +// +// See http://www.salome-platform.org/ or +// email : webmaster.salome@opencascade.com +// -// File: ModuleBase_IconFactory.cpp -// Created: 28 Jul 2015 -// Author: Vitaly SMETANNIKOV +#include "ModuleBase_IconFactory.h" +#include "Config_XMLReader.h" -#include "ModuleBase_IconFactory.h" +#include ModuleBase_IconFactory* MYIconFactory = 0; @@ -34,3 +51,32 @@ QIcon ModuleBase_IconFactory::getIcon(ObjectPtr theIcon) { return QIcon(); } + +QIcon ModuleBase_IconFactory::loadIcon(const QString& theValue) +{ + return QIcon(loadPixmap(theValue)); +} + +QPixmap ModuleBase_IconFactory::loadPixmap(const QString& theValue) +{ + QPixmap aPixmap(theValue); + + if (aPixmap.isNull()) { + std::string aPath = Config_XMLReader::findConfigFile(theValue.toStdString()); + if (!aPath.empty()) + aPixmap = QPixmap(QString::fromStdString(aPath)); + } + return aPixmap; +} + +QImage ModuleBase_IconFactory::loadImage(const QString& theValue) +{ + QImage anImage(theValue); + + if (anImage.isNull()) { + std::string aPath = Config_XMLReader::findConfigFile(theValue.toStdString()); + if (!aPath.empty()) + anImage = QImage(QString::fromStdString(aPath)); + } + return anImage; +}