blob: 9c25f7dfbc3c8c078c013eb3983db4de094fde7c (
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
|
using UILib;
using UnityEngine;
public class XUIList : XUIObject, IXUIList
{
public UIRect _parent;
public void Refresh()
{
m_uiGrid.repositionNow = true;
//m_uiGrid.Reposition();
}
public void CloseList()
{
m_uiGrid.CloseList();
}
public void SetAnimateSmooth(bool b)
{
m_uiGrid.animateSmoothly = b;
}
public void RegisterRepositionHandle(OnAfterRepostion reposition)
{
onRepositionFinish = reposition;
}
private void OnAfterReposition()
{
if (onRepositionFinish != null)
{
onRepositionFinish();
}
}
public IUIRect GetParentUIRect()
{
return _parent;
}
public IUIPanel GetParentPanel()
{
return m_uiGrid.panel;
}
protected override void OnAwake()
{
base.OnAwake();
m_uiGrid = GetComponent<UIGrid>();
if (m_uiGrid != null)
m_uiGrid.onReposition = OnAfterReposition;
else
Debug.Log("no ngui grid component");
}
private UIGrid m_uiGrid;
private OnAfterRepostion onRepositionFinish = null;
}
|