GC: setBackground(Color c)
import org.eclipse.swt.SWT;
import org.eclipse.swt.events.PaintEvent;
import org.eclipse.swt.events.PaintListener;
import org.eclipse.swt.layout.FillLayout;
import org.eclipse.swt.widgets.Canvas;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Shell;
public class MainClass {
public static void main(String[] a) {
final Display d = new Display();
final Shell shell = new Shell(d);
shell.setSize(250, 200);
shell.setLayout(new FillLayout());
Canvas drawingCanvas = new Canvas(shell, SWT.NONE);
drawingCanvas.addPaintListener(new ArcExamplePaintListener());
shell.open();
while (!shell.isDisposed()) {
if (!d.readAndDispatch())
d.sleep();
}
d.dispose();
}
}
class ArcExamplePaintListener implements PaintListener {
public void paintControl(PaintEvent e) {
Canvas canvas = (Canvas) e.widget;
int x = canvas.getBounds().width;
int y = canvas.getBounds().height;
e.gc.setBackground(e.display.getSystemColor(SWT.COLOR_BLACK));
e.gc.fillArc((x - 200) / 2, (y - 200) / 2, 200, 200, 0, 90);
}
}
Related examples in the same category
1. | GC: drawFocus(int x, int y, int width, int height) | | |
2. | GC: drawImage(Image image, int x, int y) | | |
3. | GC: drawLine(int x1, int y1, int x2, int y2) | | |
4. | GC: drawOval(int x, int y, int width, int height) | | |
5. | GC: drawPoint(int x, int y) | | |
6. | GC: drawPolygon(int[] pointArray) | | |
7. | GC: drawRoundRectangle(int x, int y, int width, int height, int arcWidth, int arcHeight) | | |
8. | GC: drawText(String string, int x, int y) | | |
9. | drawText(String string, int x, int y, int flags) | | |
10. | GC: fillArc(int x, int y, int width, int height, int startAngle, int endAngle) | | |
11. | GC: setFont(Font f) | | |
12. | GC: setLineWidth(int w) | | |