Maplets[Elements][RunWindow] - ウィンドウの表示
使い方
RunWindow(opts)
パラメータ
opts - window=value の形の等式; RunWindow 要素のためのオプション指定
|
説明
|
|
•
|
RunWindow コマンド要素は、実行中の maplet 内で定義されたウィンドウを表示します。別の maplet 内で定義されたウィンドウを表示するためには、Display 関数を使用して下さい。
|
•
|
Window 要素と ダイアログ要素 は本質的に異なるため、RunDialog と RunWindow の各コマンド要素は、それぞれ別のものです。ダイアログは、事前に定義された構造を持っています。maplet の製作者は、ダイアログに関してオプションの指定を行うことはできますが、要素の追加を行うことはできません。これに対して、ウィンドウは、事前に定義された構造を持っていません。maplet の製作者は、要素とオプションを用いて、その構造を指定します。ウィンドウとダイアログは、その挙動でも異なります。例えば、ウィンドウは最小化することが可能です。
|
•
|
Maplets パッケージでのオプション指定を簡単にするために、等式を用いることなしにあるオプションと内容を設定することが可能です。次の表では、(左側の列に) 要素、記号、および型、そして (右側の列に) 型がデフォルトで割り当てられると入力を行う、対応するオプションまたは内容を一覧表示します。
|
Elements, Symbols, or Types Assumed Option or Content
name or string window option
•
|
RunWindow 要素は、他の要素を含むことができません。
|
•
|
RunWindow 要素は、Maplet 要素の中に含めることが可能です; 要素に対する onapprove, oncancel, onchange, onclick, ondecline, onstartup の各オプションで用いる等式内に含めることも可能です; あるいは、等式なしに onchange または onclick オプションで受け付ける要素内のパラメータとして、Action 要素内に重ねて含めることも可能です。
|
•
|
次の表に、RunWindow 要素のオプションの、制御および使用法について記述します。
|
|
I 列の x は、(要素の定義を行う) 呼び出し手順で指定される、初期化が可能なオプションを示す。
|
|
R 列の x は、呼び出し手順で必要となるオプションを示す。
|
|
G 列の x は、オプションが Get ツールを用いて取得できる、すなわち読み込み可能であることを示す。
|
|
S 列の x は、 SetOption 要素あるいは Set ツールを用いて設定される、書き出し可能なオプションを示す。
|
Option I R G S
window x x
•
|
opts 引数は、maplet のオプションを設定する、1 つまたは複数の以下の等式を含みます。
|
|
window = Window 要素の参照(name または string )
|
|
|
例
|
|
この maplet の例では、RunDialog 要素が同じ maplet 内で定義された Window 要素を表示します;
>
|
with(Maplets[Elements]):
maplet := Maplet('onstartup' = 'A1',
Window['W1']('title' = "Differentiation and Integration", 'layout' = 'BL0'),
BoxLayout['BL0'](
BoxColumn(
BoxRow("Select a method"),
BoxRow(
Button("Differentiation", Action(RunWindow('W2'), CloseWindow('W1'))),
Button("Integration", Action(RunWindow('W3'), CloseWindow('W1')))
)
)
),
Window['W2']('title'="Differentiation", [
[
"Enter an expression:",
TextField['TF1']()
],
[
Button("Differentiate with respect to x", Evaluate('TF1' = 'diff(TF1, x)')),
Button("Exit", Shutdown(['TF1']))
]
]),
Window['W3']('title'="Integration", [
[
"Enter an integrand:",
TextField['TF2']()
],
[
Button("Integrate with respect to x", Evaluate('TF2' = 'int(TF2, x)')),
Button("Exit", Shutdown(['TF2']))
]
]),
Action['A1'](RunWindow('W1'))
):
Maplets[Display](maplet);
|
次の maplet の例では、Display が実行中の maplet とは異なる maplet 内で定義された Window 要素を表示します;
>
|
with(Maplets[Elements]):
maplet := Maplet('onstartup' = 'A1',
Window['W1']('title' = "Select Tutorial", 'layout' = 'BL1'),
BoxLayout['BL1'](
BoxColumn(
BoxRow("Select a tutorial"),
BoxRow(
Button("Differentiation", Evaluate('function' = 'Maplets[Display](maplet2)')),
Button("Integration", Evaluate('function' = 'Maplets[Display](maplet3)'))
),
BoxRow(
Button("Exit", Shutdown())
)
)
),
Action['A1'](RunWindow('W1'))
):
maplet2 := Maplet(
Window['W2']('title'="Differentiation Practice", 'layout' = 'BL2'),
BoxLayout['BL2'](
BoxColumn(
BoxRow(
"Enter an expression:",
TextField['TF1']()
),
BoxRow(),
BoxRow(
"After manually calculating the derivative, check your answer by clicking the Differentiate button."
),
BoxRow(
Button("Differentiate with respect to x", Evaluate('TF1' = 'diff(TF1, x)')),
Button("Return to Main Menu", Shutdown())
)
)
)
):
maplet3 := Maplet(
Window['W3']('title'="Integration Practice", 'layout' = 'BL3'),
BoxLayout['BL3'](
BoxColumn(
BoxRow(
"Enter an integrand:",
TextField['TF2']()
),
BoxRow(),
BoxRow(
"After manually calculating the anti-derivative, check your answer by clicking the Integrate button."
),
BoxRow(
Button("Integrate with respect to x", Evaluate('TF2' = 'int(TF2, x)')),
Button("Return to Main Menu", Shutdown())
)
)
)
):
Maplets[Display](maplet);
|
|
|
参照
|
|
Maplets パッケージの概要, Maplets/コマンド要素, Maplets/ダイアログ要素, Maplets[Display], Maplets[Elements] パッケージの紹介, Maplets[Elements][Action], Maplets[Elements][BoxColumn], Maplets[Elements][BoxLayout], Maplets[Elements][BoxRow], Maplets[Elements][Button], Maplets[Elements][Evaluate], Maplets[Elements][Maplet], Maplets[Elements][RunDialog], Maplets[Elements][SetOption], Maplets[Elements][Shutdown], Maplets[Elements][TextField], Maplets[Elements][Window], Maplets[Tools][Get], Maplets[Tools][Set]
|
|