File: ListBoxDataControl.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 (74 lines) | stat: -rw-r--r-- 1,899 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
72
73
74
/*!
	@file
	@author		Albert Semenov
	@date		07/2012
*/

#ifndef _b0713d87_24ee_44cf_bee9_c96494be178e_
#define _b0713d87_24ee_44cf_bee9_c96494be178e_

#include "Control.h"
#include "sigslot.h"
#include "Data.h"
#include "TextFieldControl.h"

namespace tools
{

	class MYGUI_EXPORT_DLL ListBoxDataControl :
		public Control,
		public sigslot::has_slots<>
	{
	public:
		ListBoxDataControl();
		virtual ~ListBoxDataControl();

		void OnRenameData();

		void setEnableChangePosition(bool _value);

		void setDataInfo(const std::string& _parentType, const std::string& _thisType, const std::string& _propertyName);
		void setReplaceColourName(const std::string& _value);

		void addPropertyNameEnabled(const std::string& _propertyName);

		sigslot::signal2<DataPtr, DataPtr> eventChangePosition;
		sigslot::signal2<DataPtr, const std::string&> eventChangeName;

	protected:
		virtual void OnInitialise(Control* _parent, MyGUI::Widget* _place, const std::string& _layoutName);

	private:
		void notifyListChangePosition(MyGUI::ListBox* _sender, size_t _index);
		void notifyChangeDataSelector(DataPtr _data, bool _changeOnlySelection);
		void notifyItem(MyGUI::ListBox* _sender, const MyGUI::IBNotifyItemData& _info);
		void notifyEndDialog(Dialog* _sender, bool _result);
		void notifyChangeProperty(PropertyPtr _sender);

		void invalidateList();
		void invalidateSelection();

		void connectToProperty(DataPtr _data);

		bool isDataEnabled(DataPtr _data);
		void selectListItemByData(DataPtr _data);

	private:
		MyGUI::ListBox* mListBox;
		MyGUI::EditBox* mHelpPanel;
		DataPtr mParentData;
		size_t mLastIndex;
		std::string mPropertyForName;
		std::string mThisType;
		MyGUI::PopupMenu* mContextMenu;
		TextFieldControl* mTextFieldControl;
		bool mEnableChangePosition;
		std::string mColourName;

		typedef std::vector<std::string> VectorString;
		VectorString mPropertyNamesEnable;
	};

}

#endif