Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/trunk/src/external/ceguilua/ceguilua-0.5.0/package/falagard/WidgetLookManager.pkg @ 5781

Last change on this file since 5781 was 5781, checked in by rgrieder, 15 years ago

Reverted trunk again. We might want to find a way to delete these revisions again (x3n's changes are still available as diff in the commit mails).

  • Property svn:eol-style set to native
File size: 805 bytes
Line 
1/***********************************************************************
2  WidgetLookManager
3***********************************************************************/
4
5class WidgetLookManager
6{
7  static WidgetLookManager& getSingleton(void);
8
9  void parseLookNFeelSpecification(string filename, string resourceGroup = "");
10  bool isWidgetLookAvailable(string widget) const;
11  const WidgetLookFeel& getWidgetLook(string widget) const;
12  void eraseWidgetLook(string widget);
13  void addWidgetLook(WidgetLookFeel& look);
14
15  void writeWidgetLookToStream(string name, OutStream& out_stream) const;
16  void writeWidgetLookSeriesToStream(string prefix, OutStream& out_stream) const;
17
18  WidgetLookManager();
19
20  static void setDefaultResourceGroup(string resourceGroup);
21  static string getDefaultResourceGroup();
22};
Note: See TracBrowser for help on using the repository browser.