<?xml version="1.0" encoding="UTF-8"?>
-
<!--
-
* Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
-
* Copyright (C) INRIA
-
- *
-
-
* Copyright (C) 2012 - 2016 - Scilab Enterprises
+ * Copyright (C) 2021 - Samuel GOUGEON
*
* This file is hereby licensed under the terms of the GNU GPL v2.0,
* pursuant to article 5.3.4 of the CeCILL v.2.1.
* and continues to be available under such terms.
* For more information, see the COPYING file which you should have received
* along with this program.
-
*
-
-->
-
-<refentry xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:svg="http://www.w3.org/2000/svg" xmlns:mml="http://www.w3.org/1998/Math/MathML" xmlns:db="http://docbook.org/ns/docbook" xmlns:scilab="http://www.scilab.org" xml:lang="ja" xml:id="getcolor">
-
+<refentry xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:svg="http://www.w3.org/2000/svg" xmlns:mml="http://www.w3.org/1998/Math/MathML"
+ xmlns:db="http://docbook.org/ns/docbook" xmlns:scilab="http://www.scilab.org"
+ xml:lang="ja" xml:id="getcolor">
<refnamediv>
-
<refname>getcolor</refname>
-
<refpurpose>カレントのカラーマップの色を示すダイアログをオープンする</refpurpose>
-
</refnamediv>
-
<refsynopsisdiv>
-
<title>呼び出し手順</title>
-
- <synopsis>c=getcolor(title,[cini])
-
- c=getcolor()
-
+ <synopsis>
+ c = getcolor()
+ c = getcolor(title)
+ c = getcolor(title, cini)
</synopsis>
-
</refsynopsisdiv>
-
<refsection>
-
<title>引数</title>
-
<variablelist>
-
<varlistentry>
-
<term>title</term>
-
<listitem>
-
<para>文字列, ダイアログのタイトル.</para>
-
</listitem>
-
</varlistentry>
-
<varlistentry>
-
<term>cini</term>
-
<listitem>
-
<para>選択された初期値の色ID.デフォルト値はs 1.</para>
-
</listitem>
-
</varlistentry>
-
<varlistentry>
-
<term>c</term>
-
<listitem>
-
<para>選択された色IDまたは
-
選択がキャンセルされた場合に [].
-
</para>
-
</listitem>
-
</varlistentry>
-
</variablelist>
-
</refsection>
-
<refsection>
-
<title>説明</title>
-
<para>
-
<literal>getcolor</literal> はカレントのカラーマップのパレットを表示する
-
ウインドウをオープンします.
-
ユーザはそのIDとRGB値を表示するために色をクリックすることができます.
-
<literal>getcolor</literal> は選択された色のID,または
-
"Cancel"ボタンがクリックされたかウインドウがクローズされた場合に []を返します.
-
</para>
-
</refsection>
-
<refsection>
-
<title>例</title>
-
<programlisting role="example"><![CDATA[
-
-getcolor();
-
-
-
-getcolor("Title foo");
-
-
-
-getcolor("foo",21); // 赤を選択
-
- ]]></programlisting>
-
+c = getcolor();
+c = getcolor("Title foo", color("red")); // 赤を選択
+c = getcolor("Please choose a color");
+ ]]></programlisting>
+ <para/>
+ <inlinemediaobject>
+ <imageobject>
+ <imagedata fileref="../../images/getcolor.png"/>
+ </imageobject>
+ </inlinemediaobject>
+ <para/>
+ <screen><![CDATA[
+--> c = getcolor("Please choose a color")
+ c =
+ 28.
+]]></screen>
</refsection>
-
-
-
<refsection role="see also">
-
<title>参照</title>
-
<simplelist type="inline">
-
<member>
-
+ <link linkend="uigetcolor">uigetcolor</link>
+ </member>
+ <member>
+ <link linkend="color_list">color_list</link>
+ </member>
+ <member>
<link linkend="color">color</link>
-
</member>
-
<member>
-
<link linkend="colormap">colormap</link>
-
</member>
-
</simplelist>
-
</refsection>
-
-</refentry>
-
+</refentry>
\ No newline at end of file