File: PropertyUtility.h

package info (click to toggle)
mygui 3.2.2%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 36,224 kB
  • sloc: cpp: 118,031; ansic: 30,202; xml: 15,544; cs: 12,602; tcl: 776; python: 417; makefile: 34
file content (35 lines) | stat: -rw-r--r-- 1,133 bytes parent folder | download | duplicates (6)
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
/*!
	@file
	@author		Albert Semenov
	@date		07/2012
*/

#ifndef _0228cbb9_aa86_46b7_b23f_3d6ee87da9f9_
#define _0228cbb9_aa86_46b7_b23f_3d6ee87da9f9_

#include "Data.h"
#include "Property.h"

namespace tools
{
	class MYGUI_EXPORT_DLL PropertyUtility
	{
	public:
		static bool isUniqueName(DataPtr _data, const std::string& _propertyName);
		static void executeAction(PropertyPtr _property, const std::string& _value, bool _merge = false);

		typedef std::pair<PropertyPtr, std::string> PairProprty;
		typedef std::vector<PairProprty> VectorPairProperty;
		static void storeUniqueNameProperty(const std::string& _propertyName, const std::string& _propertyUnique, DataPtr _parent, VectorPairProperty& _store);
		static void restoreUniqueNameProperty(VectorPairProperty& _store);

		static PropertyPtr getPropertyByName(const std::string& _dataType, const std::string& _propertyName);
		static bool isDataSelected(DataPtr _data);

	private:
		static PropertyPtr getPropertyByName(DataPtr _data, const std::string& _dataType, const std::string& _propertyName);
		static bool isDataSelected(DataPtr _parent, DataPtr _data);
	};
}

#endif