Exemple #1
0
 private void OpenHistory(HistoryPanelLogicData history, PanelParamBase newPanelParam)
 {
     this.Open(history.Panel, newPanelParam);
     if (history.SecondPanel != null)
     {
         this.OpenHistory(history.SecondPanel);
     }
 }
Exemple #2
0
 private void OpenHistory(HistoryPanelLogicData history)
 {
     this.Open(history.Panel, history.PanelParam, PanelEffectType.OpenByCloseOther);
     if (history.SecondPanel != null)
     {
         this.OpenHistory(history.SecondPanel);
     }
 }
Exemple #3
0
 public void ClosePanel(HistoryPanelLogicData data)
 {
     if (data != null)
     {
         this.ClosePanel(data.Panel, PanelEffectType.CloseByOpenOther);
         this.ClosePanel(data.SecondPanel);
     }
 }
Exemple #4
0
 public void ChangeHistoryPanelParam(HistoryPanelLogicData secondPanel)
 {
     if (this.m_HistoryPanelStack.Count > 0)
     {
         HistoryPanelLogicData data = this.m_HistoryPanelStack.Pop();
         data.SetSecondPanel(secondPanel);
         this.m_HistoryPanelStack.Push(data);
     }
 }
Exemple #5
0
 public void ChangeHistoryPanelParam(HistoryPanelLogicData secondPanel)
 {
     if (this.m_HistoryPanelStack.Count > 0)
     {
         HistoryPanelLogicData data = this.m_HistoryPanelStack.Pop();
         data.SetSecondPanel(secondPanel);
         this.m_HistoryPanelStack.Push(data);
     }
 }
Exemple #6
0
 public void ChangeHistoryPanelParam(PanelParamBase param)
 {
     if (this.m_HistoryPanelStack.Count > 0)
     {
         HistoryPanelLogicData data = this.m_HistoryPanelStack.Pop();
         data.SetPanelParam(param);
         this.m_HistoryPanelStack.Push(data);
     }
 }
 public void SetSecondPanel(HistoryPanelLogicData data)
 {
     this.SecondPanel = data;
 }
 public HistoryPanelLogicData(PanelType panel, PanelParamBase param, HistoryPanelLogicData secondPanel)
 {
     this.Panel = panel;
     this.SetPanelParam(param);
     this.SetSecondPanel(secondPanel);
 }
Exemple #9
0
 private void OpenHistory(HistoryPanelLogicData history, PanelParamBase newPanelParam)
 {
     this.Open(history.Panel, newPanelParam);
     if (history.SecondPanel != null)
     {
         this.OpenHistory(history.SecondPanel);
     }
 }
Exemple #10
0
 private void OpenHistory(HistoryPanelLogicData history)
 {
     this.Open(history.Panel,history.PanelParam,PanelEffectType.OpenByCloseOther);
     if (history.SecondPanel != null)
     {
         this.OpenHistory(history.SecondPanel);
     }
 }
Exemple #11
0
 public void RecordHistory(HistoryPanelLogicData history)
 {
     this.m_HistoryPanelStack.Push(history);
 }
Exemple #12
0
 public void ClosePanel(HistoryPanelLogicData data)
 {
     if (data != null)
     {
         this.ClosePanel(data.Panel,PanelEffectType.CloseByOpenOther);
         this.ClosePanel(data.SecondPanel);
     }
 }
Exemple #13
0
 public void SetSecondPanel(HistoryPanelLogicData data)
 {
     this.SecondPanel = data;
 }
Exemple #14
0
 public HistoryPanelLogicData(PanelType panel, PanelParamBase param, HistoryPanelLogicData secondPanel)
 {
     this.Panel = panel;
     this.SetPanelParam(param);
     this.SetSecondPanel(secondPanel);
 }
Exemple #15
0
 public void RecordHistory(HistoryPanelLogicData history)
 {
     this.m_HistoryPanelStack.Push(history);
 }