File: PropertyFieldColour.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 (71 lines) | stat: -rw-r--r-- 1,836 bytes parent folder | download | duplicates (4)
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
67
68
69
70
71
/*!
	@file
	@author		Albert Semenov
	@date		12/2010
*/

#ifndef _c05c3f75_ceee_4525_89ac_a8462ec97634_
#define _c05c3f75_ceee_4525_89ac_a8462ec97634_

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

namespace tools
{

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

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

		virtual void setTarget(MyGUI::Widget* _currentWidget);
		virtual void setValue(const std::string& _value);
		virtual void setName(const std::string& _value);

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

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

	private:
		void notifyApplyProperties(MyGUI::Widget* _sender, bool _force);
		void notifyTryApplyProperties(MyGUI::EditBox* _sender);
		void notifyForceApplyProperties(MyGUI::EditBox* _widget);
		void notifyMouseButtonPressed(MyGUI::Widget* _sender, int _left, int _top, MyGUI::MouseButton _id);
		void notifyEndDialog(Dialog* _sender, bool _result);
		void notifyPreviewColour(const MyGUI::Colour& _value);

		void updateColourPlace(bool _success);
		MyGUI::Colour getColour();
		void setColour(const MyGUI::Colour& _color, bool _final);
		void showColourDialog();

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

	private:
		MyGUI::TextBox* mText;
		MyGUI::EditBox* mField;
		MyGUI::Widget* mColourPlace;
		MyGUI::Widget* mCurrentWidget;
		std::string mType;
		std::string mName;
		ColourPanel* mColourPanel;
		MyGUI::Colour mPreviewColour;
		bool mGoodData;
	};

}

#endif