Arma Reforger Explorer  1.1.0.42
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
SCR_PasswordDialogComponent.c
Go to the documentation of this file.
1 //------------------------------------------------------------------------------------------------
2 class SCR_PasswordDialogComponent : ScriptedWidgetComponent
3 {
4  // Widget Names
5  protected const string EDIT_BOX = "EditBox";
6 
7  // Widgets
8  protected SCR_EditBoxComponent m_EditBox;
9 
10  //------------------------------------------------------------------------------------------------
11  // Dialog override functions
12  //------------------------------------------------------------------------------------------------
13 
14  //------------------------------------------------------------------------------------------------
15  override void HandlerAttached(Widget w)
16  {
17  super.HandlerAttached(w);
18 
19  m_EditBox = SCR_EditBoxComponent.GetEditBoxComponent(EDIT_BOX, w);
20  }
21 };
22 
23 
24 
SCR_PasswordDialogComponent
Definition: SCR_PasswordDialogComponent.c:2
SCR_EditBoxComponent
Definition: SCR_EditBoxComponent.c:8