File: PropertyFieldPosition.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 (66 lines) | stat: -rw-r--r-- 1,754 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
60
61
62
63
64
65
66
/*!
	@file
	@author		Albert Semenov
	@date		12/2010
*/

#ifndef _267e3805_b900_4be2_a0bd_6f6ea3d0262d_
#define _267e3805_b900_4be2_a0bd_6f6ea3d0262d_

#include "EditorToolTip.h"
#include "BaseLayout/BaseLayout.h"
#include "IPropertyField.h"
#include "sigslot.h"

namespace tools
{

	class PropertyFieldPosition : public wraps::BaseLayout, public IPropertyField, public sigslot::has_slots<>
	{
	public:
		PropertyFieldPosition(MyGUI::Widget* _parent);
		~PropertyFieldPosition() override;

		void initialise(std::string_view _type) override;

		void setTarget(MyGUI::Widget* _currentWidget) override;
		void setValue(std::string_view _value) override;
		void setName(std::string_view _value) override;

		void setVisible(bool _value) override;
		bool getVisible() override;

		MyGUI::IntSize getContentSize() override;
		void setCoord(const MyGUI::IntCoord& _coord) override;

	private:
		void notifyApplyProperties(MyGUI::Widget* _sender, bool _force);
		void notifyTryApplyProperties(MyGUI::EditBox* _sender);
		void notifyForceApplyProperties(MyGUI::EditBox* _sender);
		void notifyMouseButtonClick(MyGUI::Widget* _sender);
		void notifyToggleRelativeMode();

		void commandToggleRelativeMode(const MyGUI::UString& _commandName, bool& _result);
		void notifyPropertyChangeCoord(
			MyGUI::Widget* _widget,
			const MyGUI::IntCoord& _coordValue,
			std::string_view _owner);
		void updatePositionCaption();
		void updateButton();

	protected:
		virtual bool onCheckValue();
		virtual void onAction(std::string_view _value, bool _force);

	protected:
		MyGUI::TextBox* mText{nullptr};
		MyGUI::EditBox* mField{nullptr};
		MyGUI::Button* mButton{nullptr};
		MyGUI::Widget* mCurrentWidget{nullptr};
		std::string mType;
		std::string mName;
	};

}

#endif