|
@@ -13,12 +13,13 @@ namespace UI.Main
|
|
public UI_CompDialogText m_dialogText;
|
|
public UI_CompDialogText m_dialogText;
|
|
public UI_CompDialogName m_dialogName;
|
|
public UI_CompDialogName m_dialogName;
|
|
public UI_CompDialogHead m_dialogHead;
|
|
public UI_CompDialogHead m_dialogHead;
|
|
|
|
+ public UI_CompDialogHead_old m_dialogHead_old;
|
|
public GList m_list;
|
|
public GList m_list;
|
|
public GButton m_btnBack;
|
|
public GButton m_btnBack;
|
|
- public GButton m_btnLookBack;
|
|
|
|
- public GButton m_btnAutoPlay;
|
|
|
|
- public GButton m_btnSpeedUp;
|
|
|
|
public GButton m_btnSkip;
|
|
public GButton m_btnSkip;
|
|
|
|
+ public GButton m_btnSpeedUp;
|
|
|
|
+ public GButton m_btnAutoPlay;
|
|
|
|
+ public GButton m_btnLookBack;
|
|
public GTextField m_txtPlayName;
|
|
public GTextField m_txtPlayName;
|
|
public GGroup m_comPlayName;
|
|
public GGroup m_comPlayName;
|
|
public Transition m_t0;
|
|
public Transition m_t0;
|
|
@@ -75,12 +76,13 @@ namespace UI.Main
|
|
m_dialogText = (UI_CompDialogText)UI_CompDialogText.Create(comp.GetChild("dialogText"));
|
|
m_dialogText = (UI_CompDialogText)UI_CompDialogText.Create(comp.GetChild("dialogText"));
|
|
m_dialogName = (UI_CompDialogName)UI_CompDialogName.Create(comp.GetChild("dialogName"));
|
|
m_dialogName = (UI_CompDialogName)UI_CompDialogName.Create(comp.GetChild("dialogName"));
|
|
m_dialogHead = (UI_CompDialogHead)UI_CompDialogHead.Create(comp.GetChild("dialogHead"));
|
|
m_dialogHead = (UI_CompDialogHead)UI_CompDialogHead.Create(comp.GetChild("dialogHead"));
|
|
|
|
+ m_dialogHead_old = (UI_CompDialogHead_old)UI_CompDialogHead_old.Create(comp.GetChild("dialogHead_old"));
|
|
m_list = (GList)comp.GetChild("list");
|
|
m_list = (GList)comp.GetChild("list");
|
|
m_btnBack = (GButton)comp.GetChild("btnBack");
|
|
m_btnBack = (GButton)comp.GetChild("btnBack");
|
|
- m_btnLookBack = (GButton)comp.GetChild("btnLookBack");
|
|
|
|
- m_btnAutoPlay = (GButton)comp.GetChild("btnAutoPlay");
|
|
|
|
- m_btnSpeedUp = (GButton)comp.GetChild("btnSpeedUp");
|
|
|
|
m_btnSkip = (GButton)comp.GetChild("btnSkip");
|
|
m_btnSkip = (GButton)comp.GetChild("btnSkip");
|
|
|
|
+ m_btnSpeedUp = (GButton)comp.GetChild("btnSpeedUp");
|
|
|
|
+ m_btnAutoPlay = (GButton)comp.GetChild("btnAutoPlay");
|
|
|
|
+ m_btnLookBack = (GButton)comp.GetChild("btnLookBack");
|
|
m_txtPlayName = (GTextField)comp.GetChild("txtPlayName");
|
|
m_txtPlayName = (GTextField)comp.GetChild("txtPlayName");
|
|
m_comPlayName = (GGroup)comp.GetChild("comPlayName");
|
|
m_comPlayName = (GGroup)comp.GetChild("comPlayName");
|
|
m_t0 = comp.GetTransition("t0");
|
|
m_t0 = comp.GetTransition("t0");
|
|
@@ -96,12 +98,14 @@ namespace UI.Main
|
|
m_dialogName = null;
|
|
m_dialogName = null;
|
|
m_dialogHead.Dispose();
|
|
m_dialogHead.Dispose();
|
|
m_dialogHead = null;
|
|
m_dialogHead = null;
|
|
|
|
+ m_dialogHead_old.Dispose();
|
|
|
|
+ m_dialogHead_old = null;
|
|
m_list = null;
|
|
m_list = null;
|
|
m_btnBack = null;
|
|
m_btnBack = null;
|
|
- m_btnLookBack = null;
|
|
|
|
- m_btnAutoPlay = null;
|
|
|
|
- m_btnSpeedUp = null;
|
|
|
|
m_btnSkip = null;
|
|
m_btnSkip = null;
|
|
|
|
+ m_btnSpeedUp = null;
|
|
|
|
+ m_btnAutoPlay = null;
|
|
|
|
+ m_btnLookBack = null;
|
|
m_txtPlayName = null;
|
|
m_txtPlayName = null;
|
|
m_comPlayName = null;
|
|
m_comPlayName = null;
|
|
m_t0 = null;
|
|
m_t0 = null;
|