27 #ifndef _CEGUIFalWidgetLookManager_h_
28 #define _CEGUIFalWidgetLookManager_h_
30 #include "../Singleton.h"
31 #include "../String.h"
32 #include "../Exceptions.h"
33 #include "./WidgetLookFeel.h"
37 # pragma warning(push)
38 # pragma warning(disable : 4251)
39 # pragma warning(disable : 4275)
111 void parseLookNFeelSpecificationFromContainer(
const RawDataContainer& source);
116 void parseLookNFeelSpecificationFromFile(
const String& filename,
const String& resourceGroup =
"");
121 void parseLookNFeelSpecificationFromString(
const String& source);
134 bool isWidgetLookAvailable(
const String& widget)
const;
163 void eraseWidgetLook(
const String& widget);
166 void eraseAllWidgetLooks();
198 void writeWidgetLookToStream(
const String& widgetLookName,
OutStream& out_stream)
const;
211 String getWidgetLookAsString(
const String& widgetLookName)
const;
242 void writeWidgetLookSeriesToStream(
const String& prefix,
OutStream& out_stream)
const;
268 static const String& getDefaultResourceGroup()
269 {
return d_defaultResourceGroup; }
281 static void setDefaultResourceGroup(
const String& resourceGroup)
282 { d_defaultResourceGroup = resourceGroup; }
286 static const String FalagardSchemaName;
288 typedef std::map<String, WidgetLookFeel, StringFastLessCompare> WidgetLookList;
289 WidgetLookList d_widgetLooks;
291 static String d_defaultResourceGroup;
294 WidgetLookIterator getWidgetLookIterator()
const;
301 #if defined(_MSC_VER)
302 # pragma warning(pop)
305 #endif // end of guard _CEGUIFalWidgetLookManager_h_