File: PropertyFieldEditBox.h

package info (click to toggle)
mygui 3.4.1%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 38,800 kB
  • sloc: cpp: 122,825; ansic: 30,231; xml: 15,792; cs: 12,601; tcl: 776; python: 397; makefile: 38
file content (55 lines) | stat: -rw-r--r-- 1,255 bytes parent folder | download | duplicates (2)
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
/*!
	@file
	@author		Albert Semenov
	@date		12/2010
*/

#ifndef _c1d21eed_2872_4685_9244_e8e11dff7029_
#define _c1d21eed_2872_4685_9244_e8e11dff7029_

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

namespace tools
{

	class PropertyFieldEditBox :
		public wraps::BaseLayout,
		public IPropertyField
	{
	public:
		PropertyFieldEditBox(MyGUI::Widget* _parent);

		void initialise(const std::string& _type) override;

		void setTarget(MyGUI::Widget* _currentWidget) override;
		void setValue(const std::string& _value) override;
		void setName(const std::string& _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* _widget);

	protected:
		virtual bool onCheckValue();
		virtual void onAction(const std::string& _value, bool _final);

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

}

#endif