Hello, SWT(Fantom) World!

Posted on 12月 27th, 2012 by cx20

SWT(Fantom)

SWT(Standard Widget Toolkit) は Java で GUI を扱うためのライブラリである。
IBM により AWT や Swing を置き換える目的で作成された。
以下は Fantom による SWT の使用例となっている。

ソースコード

using [java] org.eclipse.swt
using [java] org.eclipse.swt.widgets::Display
using [java] org.eclipse.swt.widgets::Shell
using [java] org.eclipse.swt.widgets::Label
using [java] org.eclipse.swt.layout::FillLayout
using concurrent
 
class Hello
{
    Void main()
    {
        display := Display()
        shell := Shell(display)
        shell.setText("Hello, World")
 
        layout := FillLayout(SWT.VERTICAL)
        shell.setLayout(layout)
 
        label := 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:¥> fan hello.fan

実行結果

+------------------------------------------+
|Hello, World!                    [_][~][X]|
+------------------------------------------+
|Hello, SWT World!                         |
|                                          |
|                                          |
|                                          |
|                                          |
|                                          |
|                                          |
|                                          |
|                                          |
|                                          |
+------------------------------------------+

Tags:

Categories: Fantom, Java, SWT

コメントを残す

メールアドレスが公開されることはありません。 * が付いている欄は必須項目です

WP-SpamFree by Pole Position Marketing