SWT CTabFolder检查CTAB是否存在

时间:2012-04-19 21:35:42

标签: java swt ctabitem

我正在尝试在SWT中为我的应用程序创建一个标签界面。 我想设置我的菜单按钮,以便在单击它时检查选项卡是否打开。 如果它是打开的,我想切换到选项卡,如果不是,我想打开它。 我已经创建了一个菜单项来创建选项卡,但我不确定如何检查选项卡是否存在。

2 个答案:

答案 0 :(得分:0)

public static Boolean CtabExists(CTabFolder folder, CTabItem tab) {
    if (tab != null) {
        int intIndex = -1;
        intIndex = folder.indexOf(tab);
        if (intIndex == -1) {
            return false;
        } else {
            return true;
        }
    } else {
        return false;
    }
}

答案 1 :(得分:0)

int tabItemIndex=tabFolderItem.getSelectionIndex();
if(tabItemIndex!=-1)
  tabFolderItem.setSelection(tabItemIndex);
else
  tabFolderItem.setSelection(value); //keep your required index in the place of value