File: WidgetTypes.h

package info (click to toggle)
mygui 3.4.3%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 38,792 kB
  • sloc: cpp: 133,849; ansic: 30,249; xml: 15,794; cs: 12,601; tcl: 776; python: 400; makefile: 35; sh: 4
file content (59 lines) | stat: -rw-r--r-- 1,358 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#ifndef _65c6bab3_d7e3_4691_999e_653b8974ff23_
#define _65c6bab3_d7e3_4691_999e_653b8974ff23_

#include "SkinInfo.h"
#include "WidgetStyle.h"
#include "PossibleValue.h"

namespace tools
{

	class WidgetTypes
	{
		MYGUI_SINGLETON_DECLARATION(WidgetTypes);

	public:
		WidgetTypes() :
			mSingletonHolder(this)
		{
		}
		void initialise();
		void shutdown();

		WidgetStyle* findWidgetStyle(std::string_view _type);
		WidgetStyle* findWidgetStyleBySkin(std::string_view _skinName);
		using VectorString = std::vector<std::string>;
		VectorString findPossibleValues(std::string_view _name);

		void clearAllSkins();

		void addWidgetSkinType(
			std::string_view _type,
			std::string_view _skin,
			std::string_view _group,
			std::string_view _button_name);

		const SkinGroups& getSkinGroups() const;

		VectorWidgetType getWidgetTypes() const;

	private:
		void loadWidgets(MyGUI::xml::ElementPtr _node, std::string_view _file, MyGUI::Version _version);
		void loadValues(MyGUI::xml::ElementPtr _node, std::string_view _file, MyGUI::Version _version);

		WidgetStyle* getWidgetType(std::string_view _name);

		PossibleValue* getPossibleValue(std::string_view _name);

		void updateDepth();
		size_t updateDepth(WidgetStyle* _style);

	private:
		VectorWidgetType mWidgetTypes;
		SkinGroups mSkinGroups;
		VectorPossibleValue mPossibleValues;
	};

}

#endif