Recipe 10.3 Adding Items to Coolbars

     

Recipe 10.3 Adding Items to Coolbars

10.3.1 Problem

You've created a coolbar and you want to add items to it.

10.3.2 Solution

Create CoolItem objects, passing a CoolBar object to their constructors. Use the CoolItem objects' setControl methods to add ToolBar objects to them.

10.3.3 Discussion

To add items such as toolbars to coolbars, you use coolbar items. Here's a selection of the most useful CoolItem methods:


void addSelectionListener(SelectionListener listener)

Adds the listener to the collection of listeners that will be notified when the item is selected


Point computeSize(int wHint, int hHint)

Returns the preferred size of the coolbar item


Rectangle getBounds( )

Returns a rectangle giving the coolbar item's size and location


Control getControl( )

Returns the control contained in the coolbar item


Point getMinimumSize( )

Returns the minimum size to which the coolbar item can be resized


CoolBar getParent( )

Returns the coolbar item's parent, which must be a CoolBar object


void setControl(Control control)

Sets the control that is contained in the coolbar item


void setSize(int width, int height)

Sets the coolbar item's size

Continuing the example begun in the previous recipe ( CoolBarApp at this book's site), we'll add two toolbars to our coolbar. You begin by creating the toolbars, passing the CoolBar object to their constructors, and creating toolbar buttons :

 public static void main(String[] args) {     display = new Display( );     shell = new Shell(display);     shell.setLayout(new GridLayout( ));     shell.setText("CoolBar Example");     shell.setSize(600, 200);     coolBar = new CoolBar(shell, SWT.BORDER  SWT.FLAT);     coolBar.setLayoutData(new GridData(GridData.FILL_BOTH));  ToolBar toolBar1 = new ToolBar(coolBar, SWT.FLAT);   for (int loopIndex = 0; loopIndex < 5; loopIndex++)   {   ToolItem toolItem = new ToolItem(toolBar1, SWT.PUSH);   toolItem.setText("Button " + loopIndex);   }   ToolBar toolBar2 = new ToolBar(coolBar, SWT.FLAT  SWT.WRAP);   for (int loopIndex = 5; loopIndex < 10; loopIndex++)   {   ToolItem toolItem = new ToolItem(toolBar2, SWT.PUSH);   toolItem.setText("Button " + loopIndex);   }  .          .          . 

To insert these toolbars into the coolbar, create two new CoolItem objects inside the coolbar and use the items' setControl methods to add the toolbars to them:

 public static void main(String[] args) {          .          .          .     ToolBar toolBar2 = new ToolBar(coolBar, SWT.FLAT  SWT.WRAP);     for (int loopIndex = 5; loopIndex < 10; loopIndex++)     {         ToolItem toolItem = new ToolItem(toolBar2, SWT.PUSH);         toolItem.setText("Button " + loopIndex);     }  CoolItem coolItem1 = new CoolItem(coolBar, SWT.DROP_DOWN);   coolItem1.setControl(toolBar1);   CoolItem coolItem2 = new CoolItem(coolBar, SWT.DROP_DOWN);   coolItem2.setControl(toolBar2);  .         .         . 

Finally, size the toolbars to fit the cool items they're embedded within:

 public static void main(String[] args) {          .          .          .     CoolItem coolItem1 = new CoolItem(coolBar, SWT.DROP_DOWN);     coolItem1.setControl(toolBar1);     CoolItem coolItem2 = new CoolItem(coolBar, SWT.DROP_DOWN);     coolItem2.setControl(toolBar2);  Point toolBar1Size = toolBar1.computeSize(SWT.DEFAULT, SWT.DEFAULT);   Point coolBar1Size = coolItem1.computeSize(toolBar1Size.x  ,  toolBar1Size.y);   coolItem1.setSize(coolBar1Size);   Point toolBar2Size = toolBar2.computeSize(SWT.DEFAULT, SWT.DEFAULT);   Point coolBar2Size = coolItem1.computeSize(toolBar2Size.x  ,  toolBar2Size.y);   coolItem2.setSize(coolBar2Size);  

And that's all you need; you can see the results in Figure 10-2. Each coolbar item comes with a gripper bar at left; using the mouse, you can resize each toolbar using the gripper bars, as shown in Figure 10-2. You don't have to stop with simple buttons, of course; you also can use all the widgets that can appear in a toolbarsee Chapter 9 for more details.

Figure 10-2. Two toolbars in a coolbar
figs/ecb_1002.gif

For the complete code for this example, see the code in Recipe 10.4.


10.3.4 See Also

Recipe 9.3 on creating toolbars; Recipe 9.5 on handling toolbar events; Recipe 9.6 on embedding combo boxes, text widgets, and menus in toolbars; Recipe Recipe 10.2 on creating SWT coolbars; Recipe 10.4 on adding drop-down menus to coolbars.



Eclipse Cookbook
Inside XML (Inside (New Riders))
ISBN: 596007108
EAN: 2147483647
Year: 2006
Pages: 232
Authors: Steve Holzner

flylib.com © 2008-2017.
If you may any questions please contact us: flylib@qtcs.net