为ToolBarManager添加自定义控件

ToolBarManager是对SWT的ToolBar控件的封装,用它可以省去对这些底层控件的关注,就像使用了TableViewer,就不需要再去关心TableItem这些繁琐的细节一样。
        在一般情况下我们都是向ToolBarManager里面添加Action,显示的效果就是一个Button。如果希望显示一个Combo或者Text这样的控 件,就不能向其中添加Action了,而且又不想使用ToolBar处理具体的ToolItem,以下是两种解决办法:
        第一种:
        构建自己的ControlContribution 就可以很容易的实现这样的功能。
        首先要继承ControlContribution类,实现其protected Control createControl(Composite parent)方法,在这个方法中构建自己希望的控件,只要是Control的子类就都可以,然后将其添加到ToolBarManager里面即可。
        以下即为在View的工具栏中添加自定义控件Combo

        第一步、新建类ComboContribution,并继承ControlContribution类,然后实现其protected Control createControl(Composite parent)方法,在这个方法中构建Combo控件     class ComboContribution extends ControlContribution...{

        public ComboContribution(String id)...{
            super(id);
        }

        @Override
        protected Control createControl(Composite parent)...{
            Combo combo = new Combo(parent, SWT.READ_ONLY);
            combo.setItems(new String[]...{ "First", "Secend", "Third" });
            combo.addSelectionListener(new SelectionListener()...{

                public void widgetDefaultSelected(SelectionEvent e) ...{
                    // TODO Auto-generated method stub
                   
                }

                public void widgetSelected(SelectionEvent e) ...{
                    // TODO Auto-generated method stub
                    textSysInfo.append("View工具栏测试!");
                }
               
            });
            return combo;
        }
    }       第二步、private void initializeToolBar()中将其添加到ToolBarManager /** *//**
     * Initialize the toolbar
     */
    private void initializeToolBar() ...{
        IToolBarManager toolbarManager = getViewSite().getActionBars().getToolBarManager();
        Action deleteAction = new Action()...{
            public void run()...{
                textSysInfo.setText("");
            }
        };
        deleteAction.setText("清空");
        deleteAction.setToolTipText("清空系统信息");
        deleteAction.setImageDescriptor(PlatformUI.getWorkbench().
                    getSharedImages().getImageDescriptor(ISharedImages.IMG_TOOL_DELETE));
        toolbarManager.add(deleteAction);
       
        ComboContribution combo = new ComboContribution("Combo.contribution");
        toolbarManager.add(combo);
    }       第二种:
       于第一种类似,只是实现的是继承ContributionItem类,也是实现其protected Control createControl(Composite parent)方法,在这个方法中构建自定义控件。

 

        代码如下:
     class ComboContribution2 extends ContributionItem...{   

            private ToolItem toolitem;

            private Combo fFindCombo;

            private Button upFindbutton;

            private Button downFindbutton;

            private Button allFindbutton;

            public ComboContribution2() ...{
                super();
            }
                   
            protected Control createControl(Composite parent) ...{
               
                Composite composite = new Composite(parent, SWT.NONE);
               
                //查询框
                fFindCombo = new Combo(composite,SWT.NONE);
                fFindCombo.setLocation(0, 2);
                fFindCombo.setSize(130,20);
                System.out.println(" fFindCombo == " + fFindCombo.getBounds());
                //向上查
                upFindbutton = new Button(composite, SWT.NONE);
                upFindbutton.setLocation(135, 2);
                upFindbutton.setSize(30,20);
                upFindbutton.setText("上查");   
                upFindbutton.addSelectionListener(new SelectionListener()...{

                    public void widgetDefaultSelected(SelectionEvent e) ...{
                        // TODO 自动生成方法存根
                       
                    }

                    public void widgetSelected(SelectionEvent e) ...{
                        fFindCombo.add(fFindCombo.getText());
                       
                    }
                   
                });
                System.out.println(" upFindbutton == " + upFindbutton.getBounds());
                //向下查
                downFindbutton = new Button(composite, SWT.NONE);
                downFindbutton.setLocation(170, 2);
                downFindbutton.setSize(30,20);
                downFindbutton.setText("下查");
                //全部查询
                allFindbutton = new Button(composite, SWT.NONE);
                allFindbutton.setLocation(205, 2);
                allFindbutton.setSize(30,20);
                allFindbutton.setText("全部");

                toolitem.setWidth(240);

                return composite;
            }

            public void fill(ToolBar parent, int index) ...{
                toolitem = new ToolItem(parent, SWT.SEPARATOR, index);
                Control control = createControl(parent);
                toolitem.setControl(control);
            }

        }
       然后同样在View的private void initializeToolBar()方法中将其添加到ToolBarManager即可。

本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/kevin99zhang/archive/2007/09/30/1808076.aspx

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值