Dayz Explorer 1.28.160049
Loading...
Searching...
No Matches
collapsibleheader.c
Go to the documentation of this file.
2{
3 void CollapsibleHeader( LayoutHolder parent, string function_name )
4 {
6 }
7
8 override void SetLayoutName()
9 {
10 m_LayoutName = WidgetLayoutName.CollapsibleHeader;
11 }
12
13 void SetArrowButtonOpened(bool state)
14 {
15 m_UpArrowButton.Show(state);
16 m_DownArrowButton.Show(!state);
17 }
18
19 bool IsHeaderVisible()
20 {
21 return m_MainWidget.IsVisible(); //m_MainWidget.IsVisibleHierarchy()
22 }
23
24 void SetHeaderVisible(bool show)
25 {
26 m_MainWidget.Show(show);
27 }
28}
Definition header.c:2
int m_DefaultFontSize
Definition header.c:4
Widget m_DownArrowButton
Definition header.c:10
Widget m_UpArrowButton
Definition header.c:9