ScrolledComposite 不通过鼠标滚轮滚动 [英] ScrolledComposite doesnt scroll by mouse wheel

查看:41
本文介绍了ScrolledComposite 不通过鼠标滚轮滚动的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

鼠标滚轮在 macosx 上正常工作,但在 windows 上不工作.

mouse wheel is working properly on macosx but not working on windows.

这是我的布局结构,我实现了鼠标滚轮侦听器,但它没有触发.

here is my layout structure, i implemented mousewheel listener but its not triggering tho.

    scrolledComposite.addListener(SWT.MouseWheel, new Listener() {
        public void handleEvent(Event event) {
            System.out.println("MOUSE WHEEL");
            int wheelCount = event.count;
            wheelCount = (int) Math.ceil(wheelCount / 3.0f);
            while (wheelCount < 0) {
                scrolledComposite.getVerticalBar().setIncrement(4);
                wheelCount++;
            }

            while (wheelCount > 0) {
                scrolledComposite.getVerticalBar().setIncrement(-4);
                wheelCount--;
            }
        }
    });

和我的滚动复合声明:

    final ScrolledComposite scrolledComposite = new ScrolledComposite(mainComposite, SWT.BORDER | SWT.H_SCROLL | SWT.V_SCROLL);
    scrolledComposite.setExpandHorizontal(true);
    scrolledComposite.setExpandVertical(true);
    scrolledComposite.setBackground(SWTResourceManager.getColor(SWT.COLOR_MAGENTA));

    final Composite listComposite = new Composite(scrolledComposite, SWT.NONE);
    GridLayout layout = new GridLayout();
    layout.numColumns = 1;
    listComposite.setLayout(layout);

    final Composite composite_3 = new Composite(listComposite, SWT.NONE);
    GridLayout gridLayout = new GridLayout();
    gridLayout.numColumns = 8;
    composite_3.setLayout(gridLayout);

    scrolledComposite.setContent(listComposite);
    scrolledComposite.setMinSize(listComposite.computeSize(SWT.DEFAULT,SWT.DEFAULT));

/////////////////从抓起的例子它也不起作用.

    shell = new Shell();
    shell.setSize(450, 300);
    shell.setText("SWT Application");
    shell.setLayout(new FormLayout());

    Composite composite = new Composite(shell, SWT.NONE);
    composite.setBackground(SWTResourceManager.getColor(SWT.COLOR_YELLOW));
    FormData fd_composite = new FormData();
    fd_composite.bottom = new FormAttachment(0, 46);
    fd_composite.right = new FormAttachment(100);
    fd_composite.top = new FormAttachment(0);
    fd_composite.left = new FormAttachment(0);
    composite.setLayoutData(fd_composite);
    composite.setLayout(new FillLayout(SWT.HORIZONTAL));

    Composite composite_1 = new Composite(shell, SWT.NONE);
    FormData fd_composite_1 = new FormData();
    fd_composite_1.right = new FormAttachment(0, 100);
    fd_composite_1.top = new FormAttachment(composite, 1);
    fd_composite_1.left = new FormAttachment(0);
    fd_composite_1.bottom = new FormAttachment(100);
    composite_1.setLayoutData(fd_composite_1);

    Composite composite_2 = new Composite(shell, SWT.NONE);
    composite_2.setLayout(new FillLayout(SWT.HORIZONTAL));
    FormData fd_composite_2 = new FormData();
    fd_composite_2.top = new FormAttachment(composite, 1);
    fd_composite_2.left = new FormAttachment(composite_1, 1);
    fd_composite_2.bottom = new FormAttachment(100);
    fd_composite_2.right = new FormAttachment(100);
    composite_2.setLayoutData(fd_composite_2);

    ScrolledComposite scrolledComposite = new ScrolledComposite(composite_2, SWT.BORDER | SWT.H_SCROLL | SWT.V_SCROLL);
    scrolledComposite.setBackground(SWTResourceManager.getColor(SWT.COLOR_DARK_RED));
    scrolledComposite.setExpandHorizontal(true);
    scrolledComposite.setExpandVertical(true);

    Composite composite_3 = new Composite(scrolledComposite, SWT.NONE);
    composite_3.setLayout(new GridLayout(1, false));

    Composite composite_4 = new Composite(composite_3, SWT.NONE);
    composite_4.setBackground(SWTResourceManager.getColor(SWT.COLOR_BLUE));

    Composite composite_5 = new Composite(composite_3, SWT.NONE);
    composite_5.setBackground(SWTResourceManager.getColor(SWT.COLOR_MAGENTA));

    Composite composite_7 = new Composite(composite_3, SWT.NONE);
    composite_7.setBackground(SWTResourceManager.getColor(SWT.COLOR_DARK_BLUE));

    Composite composite_6 = new Composite(composite_3, SWT.NONE);
    scrolledComposite.setContent(composite_3);
    scrolledComposite.setMinSize(composite_3.computeSize(SWT.DEFAULT, SWT.DEFAULT));

推荐答案

我也遇到了同样的问题,google了一下,找到了这个:

I met the same problem, after googling around, I found this one :

scrolledComposite.addListener(SWT.Activate, new Listener() {
        public void handleEvent(Event e) {
            scrolledComposite.setFocus();
        }
    });

它对我有用.

这篇关于ScrolledComposite 不通过鼠标滚轮滚动的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆