summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/UILib/IXUIDlg.cs
blob: b5e0a64b999bad3c3806cb73c4624148af2786f4 (plain)
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
using System;

namespace UILib
{
	public interface IXUIDlg
	{
		IXUIBehaviour uiBehaviourInterface { get; }

		string fileName { get; }

		int layer { get; }

		int group { get; }

		bool exclusive { get; }

		bool hideMainMenu { get; }

		bool pushstack { get; }

		bool isMainUI { get; }

		bool isHideTutorial { get; }

		bool isHideChat { get; }

		int sysid { get; }

		bool fullscreenui { get; }

		bool needOnTop { get; }

		void OnUpdate();

		void OnPostUpdate();

		void Load();

		void UnLoad(bool bTransfer = false);

		void SetVisiblePure(bool bVisible);

		void SetVisible(bool bVisible, bool bEnableAuto = true);

		bool IsVisible();

		void Reset();

		void SetDepthZ(int nDepthZ);

		bool BindReverse(IXUIBehaviour uiBehaviour);

		void SetAlpha(float a);

		void StackRefresh();

		void LeaveStackTop();

		void SetRelatedVisible(bool bVisible);

		int[] GetTitanBarItems();
	}
}