プログラムで SWT ボタンを「押された」状態に設定しようとしています。それはどういうわけか可能ですか?
更新:
私が達成しようとしているのは、選択された状態のボタンを画像にレンダリングすることです。
Image buttonimg_mouseover = new Image(getDisplay(), 100, 100);
Button button = new Button(parent.parent, SWT.PUSH);
button.setAlignment(SWT.CENTER);
button.setImage(arrowimg);
button.setSize(100, 100);
button.setSelection(true); // doesn't work
GC gcbutton = new GC(buttonimg_mouseover); //draw an image of the button
button.print(gcbutton);