Esempio n. 1
0
  @gplx.Internal
  protected void MoveTab(GfuiBtn curBtn, int delta) {
    TabPnlItm curItm = tabBox.Mgr().Get_by(curBtn.Key_of_GfuiElem());
    int curIdx = curItm.Idx();
    int newIdx = TabBox_.Cycle(delta > 0, curIdx, tabBox.Mgr().Count());

    tabBox.Mgr().Move_to(curIdx, newIdx);
    tabBox
        .Mgr()
        .Reorder(
            0); // reorder all; exchanging curIdx for newIdx does not work when going from last to
                // first (17 -> 0, but 0 -> 1)
    tabBox.PnlBox().SubElems().Move_to(curIdx, newIdx);
    TabBtnAreaMgr.Move_to(tabBox, curIdx, newIdx);
    TabBoxEvt_orderChanged.Publish(tabBox, curIdx, newIdx);
  }
Esempio n. 2
0
 public void Inject(Object obj) {
   tabBox = TabBox_.cast(obj);
   IptBnd_.cmd_to_(
       IptCfg_.Null,
       tabBox,
       this,
       SelectNext_cmd,
       IptKey_.add_(IptKey_.Ctrl, IptKey_.Tab),
       IptKey_.add_(IptKey_.Ctrl, IptKey_.PageDown));
   IptBnd_.cmd_to_(
       IptCfg_.Null,
       tabBox,
       this,
       SelectPrev_cmd,
       IptKey_.add_(IptKey_.Ctrl, IptKey_.Tab, IptKey_.Shift),
       IptKey_.add_(IptKey_.Ctrl, IptKey_.PageUp));
 }
Esempio n. 3
0
 void Select(GfoMsg msg, int delta) {
   TabPnlItm curTab = tabBox.Mgr().CurTab();
   int newIdx = TabBox_.Cycle(delta > 0, curTab.Idx(), tabBox.Mgr().Count());
   tabBox.Tabs_Select(newIdx);
 }