public void New_href(boolean focus) { Xog_tab_itm tab = tab_mgr.Active_tab(); if (tab == Xog_tab_itm_.Null) return; String link = tab.Html_itm().Html_selected_get_href_or_text(); if (String_.Len_eq_0(link)) { tab_mgr.Win().Usr_dlg().Prog_many("", "", "no link or text selected"); return; } tab_mgr.Tabs_new_dflt(true); tab_mgr.Win().Page__navigate_by_url_bar(link); }
public void Close_undo() { tab_mgr.Tabs_close_undo(); }
public void Close_to_end() { tab_mgr.Tabs_close_to_end(); }
public void Close_to_bgn() { tab_mgr.Tabs_close_to_bgn(); }
public void Close_others() { tab_mgr.Tabs_close_others(); }
public void Move_fwd() { tab_mgr.Tabs_move(Bool_.Y); }
public void Move_bwd() { tab_mgr.Tabs_move(Bool_.N); }
public void Select_by_idx(int v) { tab_mgr.Tabs_select_by_idx(v - List_adp_.Base1); }
public void Select_fwd() { tab_mgr.Tabs_select(Bool_.Y); }
public void Select_bwd() { tab_mgr.Tabs_select(Bool_.N); }
public void Close_cur() { tab_mgr.Tabs_close_cur(); }
public void New_link(boolean focus, String link) { tab_mgr.Tabs_new_link(focus, link); }
public void New_dflt(boolean focus) { tab_mgr.Tabs_new_dflt(focus); }
public void New_dupe(boolean focus) { tab_mgr.Tabs_new_dupe(focus); }
private boolean Active_tab_is_null() { return tab_mgr.Active_tab_is_null(); }
public void Pin_toggle() { if (this.Active_tab_is_null()) return; tab_mgr.Active_tab().Pin_toggle(); }