2010-09-24 19:58:56 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* Copyright (C) 2010
|
|
|
|
* by Dimok
|
|
|
|
*
|
|
|
|
* This software is provided 'as-is', without any express or implied
|
|
|
|
* warranty. In no event will the authors be held liable for any
|
|
|
|
* damages arising from the use of this software.
|
|
|
|
*
|
|
|
|
* Permission is granted to anyone to use this software for any
|
|
|
|
* purpose, including commercial applications, and to alter it and
|
|
|
|
* redistribute it freely, subject to the following restrictions:
|
|
|
|
*
|
|
|
|
* 1. The origin of this software must not be misrepresented; you
|
|
|
|
* must not claim that you wrote the original software. If you use
|
|
|
|
* this software in a product, an acknowledgment in the product
|
|
|
|
* documentation would be appreciated but is not required.
|
|
|
|
*
|
|
|
|
* 2. Altered source versions must be plainly marked as such, and
|
|
|
|
* must not be misrepresented as being the original software.
|
|
|
|
*
|
|
|
|
* 3. This notice may not be removed or altered from any source
|
|
|
|
* distribution.
|
|
|
|
***************************************************************************/
|
|
|
|
#include <ogcsys.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include "CTheme.h"
|
|
|
|
#include "libwiigui/gui.h"
|
|
|
|
|
2010-12-26 18:02:14 +01:00
|
|
|
bool Theme::ShowTooltips = true;
|
2010-09-24 19:58:56 +02:00
|
|
|
|
2010-12-26 18:02:14 +01:00
|
|
|
void Theme::SetDefault()
|
2010-09-24 19:58:56 +02:00
|
|
|
{
|
2010-12-26 18:02:14 +01:00
|
|
|
Theme::ShowTooltips = true;
|
|
|
|
ThemeCleanUp();
|
2010-09-26 10:33:43 +02:00
|
|
|
Resources::Clear();
|
2010-09-24 19:58:56 +02:00
|
|
|
}
|
|
|
|
|
2010-12-26 18:02:14 +01:00
|
|
|
bool Theme::Load(const char * theme_file_path)
|
2010-09-24 19:58:56 +02:00
|
|
|
{
|
2010-12-26 18:02:14 +01:00
|
|
|
bool result = LoadTheme(theme_file_path);
|
|
|
|
if(!result)
|
|
|
|
return result;
|
2010-09-24 19:58:56 +02:00
|
|
|
|
2010-12-26 18:02:14 +01:00
|
|
|
Theme::ShowTooltips = (thInt("1 - Enable tooltips: 0 for off and 1 for on") != 0);
|
2010-09-24 19:58:56 +02:00
|
|
|
|
2010-12-26 18:02:14 +01:00
|
|
|
char theme_path[300];
|
|
|
|
snprintf(theme_path, sizeof(theme_path), theme_file_path);
|
2010-09-24 19:58:56 +02:00
|
|
|
|
2010-12-26 18:02:14 +01:00
|
|
|
char * ptr = strrchr(theme_path, '/');
|
|
|
|
if(ptr) *ptr = '\0';
|
2010-09-24 19:58:56 +02:00
|
|
|
|
2010-12-26 18:02:14 +01:00
|
|
|
FILE * file = fopen(theme_file_path, "rb");
|
|
|
|
if(!file)
|
|
|
|
return false;
|
2010-09-24 19:58:56 +02:00
|
|
|
|
2010-12-26 18:02:14 +01:00
|
|
|
char line[300];
|
|
|
|
char * Foldername = NULL;
|
2010-09-24 19:58:56 +02:00
|
|
|
|
|
|
|
while (fgets(line, sizeof(line), file))
|
|
|
|
{
|
2010-12-26 18:02:14 +01:00
|
|
|
char * ptr = strcasestr(line, "Image-Folder:");
|
|
|
|
if(!ptr)
|
|
|
|
continue;
|
2010-09-24 19:58:56 +02:00
|
|
|
|
2010-12-26 18:02:14 +01:00
|
|
|
ptr += strlen("Image-Folder:");
|
2010-09-24 19:58:56 +02:00
|
|
|
|
2010-12-26 18:02:14 +01:00
|
|
|
while(*ptr != '\0' && *ptr == ' ') ptr++;
|
2010-09-26 10:33:43 +02:00
|
|
|
|
2010-12-26 18:02:14 +01:00
|
|
|
Foldername = ptr;
|
2010-09-24 19:58:56 +02:00
|
|
|
|
2010-12-26 18:02:14 +01:00
|
|
|
while(*ptr != '\\' && *ptr != '"' && *ptr != '\0') ptr++;
|
2010-09-24 19:58:56 +02:00
|
|
|
|
2010-12-26 18:02:14 +01:00
|
|
|
*ptr = '\0';
|
|
|
|
break;
|
|
|
|
}
|
2010-09-24 19:58:56 +02:00
|
|
|
|
2010-12-26 18:02:14 +01:00
|
|
|
fclose(file);
|
2010-09-24 19:58:56 +02:00
|
|
|
|
2010-12-26 18:02:14 +01:00
|
|
|
if(!Foldername)
|
|
|
|
return result;
|
2010-09-24 19:58:56 +02:00
|
|
|
|
2010-12-26 18:02:14 +01:00
|
|
|
snprintf(theme_path, sizeof(theme_path), "%s/%s", theme_path, Foldername);
|
|
|
|
Resources::LoadFiles(theme_path);
|
2010-09-24 19:58:56 +02:00
|
|
|
|
2010-12-26 18:02:14 +01:00
|
|
|
return result;
|
2010-09-24 19:58:56 +02:00
|
|
|
}
|