File: Test_TabControl.cs

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 (85 lines) | stat: -rw-r--r-- 2,324 bytes parent folder | download | duplicates (7)
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
75
76
77
78
79
80
81
82
83
84
85
using MyGUI.Sharp;

namespace TestApp.Sharp
{
	public class Test_TabControl
	{
		public static void Test()
		{
			TabControl tab = Gui.Instance.CreateWidget<TabControl>("TabControl", new IntCoord(120, 420, 200, 100), Align.Default, "Main");
			tab.EventTabChangeSelect += new TabControl.HandleTabChangeSelect(tab_EventTabChangeSelect);

			TabItem item = tab.AddItem("sheet1");
			tab.AddItem("sheet2");//, "2");
			tab.InsertItemAt(0, "insert sheet1");
			tab.InsertItemAt(0, "insert sheet2");//, "2");

			tab.SmoothShow = !tab.SmoothShow;
			tab.ButtonAutoWidth = !tab.ButtonAutoWidth;
			tab.ButtonDefaultWidth = tab.ButtonDefaultWidth + 80;

			int width = tab.GetButtonWidthAt(0);
			width = tab.GetButtonWidth(item);

			tab.SetButtonWidthAt(0, 82);
			tab.SetButtonWidth(item, 62);

			width = tab.GetButtonWidthAt(0);
			width = tab.GetButtonWidth(item);

			tab.BeginToItemSelected();
			tab.BeginToItem(item);
			tab.BeginToItemAt(0);

			string name = tab.GetItemName(item);
			name = tab.GetItemNameAt(0);

			tab.SetItemNameAt(0, "new name0");
			name = tab.GetItemNameAt(0);

			//object data = tab.GetItemDataAt(0) as string;
			//tab.SetItemDataAt(0, "0");
			//data = tab.GetItemDataAt(0) as string;
			//tab.ClearItemDataAt(0);
			//data = tab.GetItemDataAt(0) as string;

			uint index = tab.IndexSelected;
			tab.IndexSelected = 0;

			TabItem find = tab.FindItemWith("new name0");
			find = tab.FindItemWith("new name00");

			index = tab.FindItemIndexWith("sheet1");
			index = tab.FindItemIndexWith("sheet11");

			index = tab.GetItemIndex(item);
			item = tab.GetItemAt(0);

			//TabItem test start
			/*item.SetItemSelected();
			name = item.ItemName;
			item.ItemName = "new item name";
			item.ButtonWidth = item.ButtonWidth + 1;*/

			/*data = item.ItemData as string;
			item.ItemData = "new data";
			data = tab.GetItemData(item) as string;
			data = tab.GetItemDataAt(0) as string;
			data = item.ItemData as string;
			item.ItemData = null;
			data = item.ItemData as string;*/
			//TabItem test end

			tab.RemoveItem(item);
			item = null;

			tab.AddItem("add item");
			uint count = tab.ItemCount;
		}

		static void tab_EventTabChangeSelect(TabControl _sender, uint _index)
		{
			Gui.Instance.Log("TestApp", LogLevel.Info, "EventTabChangeSelect  index=" + _index.ToString());
		}
	}
}