Archive for 11月 9th, 2012
-
Hello, SWT(Groovy) World!
Posted on 11月 9th, 2012 by cx20
SWT(Groovy)
SWT(Standard Widget Toolkit) は Java で GUI を扱うためのライブラリである。
IBM により AWT や Swing を置き換える目的で作成された。
以下は Groovy による SWT の使用例となっている。ソースコード
import org.eclipse.swt.SWT import org.eclipse.swt.widgets.* import org.eclipse.swt.layout.* class Hello { static void main (args) { def display = new Display() def shell = new Shell(display) shell.setText("Hello, World") def layout = new FillLayout(SWT.VERTICAL) shell.setLayout(layout) def label = new Label(shell,SWT.BORDER) label.setText("Hello, SWT World!") shell.setSize( 640, 480 ) shell.open(); while (!shell.isDisposed()) { if (!display.readAndDispatch()) { display.sleep() } } display.dispose() } }
実行方法
C:¥> groovyw -cp org.eclipse.swt.win32.win32.x86_3.6.1.v3655c.jar Hello.groovy
実行結果
+------------------------------------------+ |Hello, World! [_][~][X]| +------------------------------------------+ |Hello, SWT World! | | | | | | | | | | | | | | | | | | | +------------------------------------------+