FileDocCategorySizeDatePackage
ColorDialogExample.javaAPI DocExample1527Sun Oct 31 09:40:24 GMT 2004None

ColorDialogExample

public class ColorDialogExample extends Object

Fields Summary
Display
d
Shell
s
Constructors Summary
ColorDialogExample()

         d = new Display();
         s = new Shell(d);
        s.setSize(400,400);
        s.setImage(new Image(d, "c:\\icons\\JavaCup.ico"));
        s.setText("A ColorDialog Example");
        s.setLayout(new FillLayout(SWT.VERTICAL));    
        final Text t = new Text(s, SWT.BORDER | SWT.MULTI);
        final Button b = new Button(s, SWT.PUSH | SWT.BORDER);
        b.setText("Change Color");
        b.addSelectionListener(new SelectionAdapter() {
            public void widgetSelected(SelectionEvent e) {
                ColorDialog cd = new ColorDialog(s);
                cd.setText("ColorDialog Demo");
                cd.setRGB(new RGB(255,255,255));
                RGB newColor = cd.open();
                if(newColor==null)
                {
                    return;                    
                }
                t.setBackground(new Color(d, newColor));
            }
        });
        s.open();
        
        while(!s.isDisposed()){
            if(!d.readAndDispatch())
                d.sleep();
        }
        d.dispose();
    
Methods Summary