Changed: Use all existing icons for Ryzom

hg/feature/gsoc2012-fabien
kervala 13 years ago
parent 5fcea27aa1
commit 2e1a4591b2

@ -921,21 +921,33 @@ void prelogInit()
Driver->setWindowTitle(CI18N::get("TheSagaOfRyzom")); Driver->setWindowTitle(CI18N::get("TheSagaOfRyzom"));
#if defined(NL_OS_UNIX) && !defined(NL_OS_MAC) #if defined(NL_OS_UNIX) && !defined(NL_OS_MAC)
vector<CBitmap> bitmaps; // add all existing icons
vector<string> filenames;
string fileName = "/usr/share/pixmaps/ryzom.png"; filenames.push_back("/usr/share/icons/hicolor/128x128/apps/ryzom.png");
filenames.push_back("/usr/share/icons/hicolor/48x48/apps/ryzom.png");
filenames.push_back("/usr/share/icons/hicolor/32x32/apps/ryzom.png");
filenames.push_back("/usr/share/icons/hicolor/24x24/apps/ryzom.png");
filenames.push_back("/usr/share/icons/hicolor/22x22/apps/ryzom.png");
filenames.push_back("/usr/share/icons/hicolor/16x16/apps/ryzom.png");
filenames.push_back("/usr/share/pixmaps/ryzom.png");
// check if an icon is present in registered paths
if(CPath::exists("ryzom.png")) if(CPath::exists("ryzom.png"))
fileName = CPath::lookup("ryzom.png"); filenames.push_back(CPath::lookup("ryzom.png"));
vector<CBitmap> bitmaps;
for(size_t i = 0; i < filenames.size(); ++i)
{
CIFile file; CIFile file;
if (file.open(fileName)) if (CFile::fileExists(filenames[i]) && file.open(filenames[i]))
{ {
CBitmap bitmap; CBitmap bitmap;
if (bitmap.load(file)) if (bitmap.load(file))
bitmaps.push_back(bitmap); bitmaps.push_back(bitmap);
} }
}
Driver->setWindowIcon(bitmaps); Driver->setWindowIcon(bitmaps);
#endif #endif

Loading…
Cancel
Save