Maple Professionel
Maple Académique
Maple Edition Étudiant
Maple Personal Edition
Maple Player
Maple Player for iPad
MapleSim Professionel
MapleSim Académique
Maple T.A. - Suite d'examens de classement
Maple T.A. MAA Placement Test Suite
Möbius - Didacticiels de mathématiques en ligne
Machine Design / Industrial Automation
Aéronautique
Ingénierie des véhicules
Robotics
Energie
System Simulation and Analysis
Model development for HIL
Modélisation du procédé pour la conception de systèmes de contrôle
Robotics/Motion Control/Mechatronics
Other Application Areas
Enseignement des mathématiques
Enseignement de l’ingénierie
Enseignement secondaire et supérieur (CPGE, BTS)
Tests et évaluations
Etudiants
Modélisation financière
Recherche opérationnelle
Calcul haute performance
Physique
Webinaires en direct
Webinaires enregistrés
Agenda des évènements
Forum MaplePrimes
Blog Maplesoft
Membres Maplesoft
Maple Ambassador Program
MapleCloud
Livres blancs techniques
Bulletin électronique
Livres Maple
Math Matters
Portail des applications
Galerie de modèles MapleSim
Cas d'Etudes Utilisateur
Exploring Engineering Fundamentals
Concepts d’enseignement avec Maple
Centre d’accueil utilisateur Maplesoft
Centre de ressources pour enseignants
Centre d’assistance aux étudiants
Maplets[Elements][QuestionDialog] - 質問のダイアログの定義
使い方
QuestionDialog(opts)
QuestionDialog[refID](opts)
パラメータ
opts - option=value の形の等式; ここで option は caption, height, onapprove, ondecline, reference, resizable, title, width のいずれか; QuestionDialog 要素のためのオプション指定
refID - 名前または文字列; 要素の参照
説明
QuestionDialog ダイアログ要素は、maplet 内で質問のダイアログを定義します。このダイアログは、表題および、2つのボタン Yes および No を含みます。
Maplets のダイアログ要素は、事前に定義されたレイアウトを持っています。ダイアログについては、製作者が要素を指定することはできません。これが、例えばボタンやレイアウト要素といった、他の要素を含むことのできる Window 要素との相違点です。
QuestionDialog 要素の特徴は、オプションを用いて修正が可能です。Maplets パッケージでのオプション指定を簡単にするために、等式を用いることなしにあるオプションと内容を設定することが可能です。次の表では、(左側の列に) 要素、記号、および型、そして (右側の列に) 型がデフォルトで割り当てられると入力を行う、対応するオプションまたは内容を一覧表示します。
Elements, Symbols, or Types Assumed Option or Content refID reference option string or symbol caption option
QuestionDialog 要素は、Action あるいは、onapprove および ondecline オプションを指定するコマンド要素を含むことが可能です。
QuestionDialog 要素は、Maplet 要素の中に含めることが可能です。
次の表に、QuestionDialog 要素のオプションの、制御および使用法について記述します。
I 列の x は、(要素の定義を行う) 呼び出し手順で指定される、初期化が可能なオプションを示す。
R 列の x は、呼び出し手順で必要となるオプションを示す。
G 列の x は、オプションが Get ツールを用いて取得できる、すなわち読み込み可能であることを示す。
S 列の x は、 SetOption 要素あるいは Set ツールを用いて設定される、書き出し可能なオプションを示す。
Option I R G S caption x x height x x x onapprove x ondecline x reference x resizable x x x title x x x width x x x
opts 引数は、maplet のオプションを設定する、1 つまたは複数の以下の等式を含みます。
caption = string または symbol
質問のダイアログの本体に現れるテキスト。
height = posint
ウィンドウの高さ(単位ピクセル)。
onapprove = Action あるいはコマンド要素, または Action 要素の参照(name または string )
ユーザが Yes ボタンをクリックした際に起こる動作。デフォルトでは、この動作ではダイアログを閉じます。
ondecline = Action あるいはコマンド要素, または Action 要素の参照(name または string )
ユーザが No ボタンをクリックした際に起こる動作。デフォルトでは、この動作ではダイアログを閉じます。
reference = name または string
QuestionDialog 要素についての参照を表します。
この参照、例えば QuestionDialog[refID] およびコマンド列内の reference が、両方ともインデックスで指定されている場合、インデックスによる参照が優先されます。
resizable = true または false
ユーザがウィンドウのサイズ変更を行えるかどうかの設定。デフォルトでは、false です。
title = string または symbol
質問のダイアログのタイトルバーに現れるテキスト。デフォルトのタイトルは、Question です。
width = posint
ウィンドウの幅 (単位ピクセル)。
例
閉じる際に、maplet を終了し、"true" または "false" の値を返す、質問ダイアログを持つ maplet の例:
with(Maplets[Elements]): maplet := Maplet(QuestionDialog("Is x > 0?", 'onapprove'=Shutdown("true"), 'ondecline'=Shutdown("false") )): Maplets[Display](maplet);
参照
Maplets パッケージの概要, Maplets/コマンド要素, Maplets/ダイアログ要素, Maplets[Display], Maplets[Elements] パッケージの紹介, Maplets[Elements][Action], Maplets[Elements][Maplet], Maplets[Elements][RunDialog], Maplets[Elements][SetOption], Maplets[Elements][Shutdown], Maplets[Elements][Window], Maplets[Tools][Get], Maplets[Tools][Set]
Download Help Document