eclipse-rcp :jface tableviewer 单元格遍历

发布于 2024-11-18 19:20:37 字数 616 浏览 1 评论 0原文

有一个显示行号的列,我想阻止用户使用箭头键遍历到其中的单元格。
在此处输入图像描述
在上图中,带有文本“testDO3”的单元格当前处于焦点并突出显示,行号列用于选择整行,所以我想让它不可遍历。


这是我自己的解决方案:

tv.getTable().addTraverseListener(new TraverseListener(){
            public void keyTraversed(TraverseEvent e) {
                ViewerCell cell = focusCellManager.getFocusCell();
                if(e.keyCode == SWT.ARROW_LEFT && cell.getColumnIndex() == 2){
                    e.detail = SWT.TRAVERSE_NONE;
                    e.doit = true;
                }
            }

        });

There is a column which displaying row numbers, I want to stop user to traverse to cells in it using arrow keys.
enter image description here
In above picture, the cell with text "testDO3" is currently focused and highlighted, the row number column is used to select the whole row, so I want to make it not travsersable.


here is my own solution:

tv.getTable().addTraverseListener(new TraverseListener(){
            public void keyTraversed(TraverseEvent e) {
                ViewerCell cell = focusCellManager.getFocusCell();
                if(e.keyCode == SWT.ARROW_LEFT && cell.getColumnIndex() == 2){
                    e.detail = SWT.TRAVERSE_NONE;
                    e.doit = true;
                }
            }

        });

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

擦肩而过的背影 2024-11-25 19:20:37

假设您使用 JFace 单元格导航,则对 CellNavigationStrategy 进行子类化并在 TableViewerFocusCellManager 的构造函数中使用。

Assuming you're using JFace cell navigation, then sub-class CellNavigationStrategy and use in constructor of TableViewerFocusCellManager.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文