blob: b57ef7dcb679e0add15400216b357b1996483633 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
<?xml version="1.0" encoding="utf-8"?>
<page xmlns="http://projectmallard.org/1.0/" type="topic" id="file-selection" xml:lang="ja">
<info>
<link type="guide" xref="index#dialogs"/>
<desc><cmd>--file-selection</cmd> オプションの使用</desc>
<mal:credit xmlns:mal="http://projectmallard.org/1.0/" type="translator copyright">
<mal:name>赤星 柔充</mal:name>
<mal:email>yasumichi@vinelinux.org</mal:email>
<mal:years>2011,2012</mal:years>
</mal:credit>
</info>
<title>ファイル選択ダイアログ</title>
<p>ファイル選択ダイアログを作成するには、<cmd>--file-selection</cmd> というオプションを使ってください。<app>Zenity</app> は、選択されたファイルあるいはフォルダーを標準出力へ返却します。ファイル選択ダイアログのデフォルトのモードは、開くです。</p>
<p>ファイル選択ダイアログは、以下のオプションをサポートしています。</p>
<terms>
<item>
<title><cmd>--filename</cmd>=<var>ファイル名</var></title>
<p>ファイル選択ダイアログが最初に表示された時に選択されているファイルまたはフォルダーを指定します。</p>
</item>
<item>
<title><cmd>--multiple</cmd></title>
<p>ファイル選択ダイアログで複数ファイルの選択を可能にします。</p>
</item>
<item>
<title><cmd>--directory</cmd></title>
<p>ファイル選択ダイアログでフォルダーのみを選択可能にします。</p>
</item>
<item>
<title><cmd>--save</cmd></title>
<p>ファイル選択ダイアログを保存モードに設定します。</p>
</item>
<item>
<title><cmd>--separator</cmd>=<var>セパレーター</var></title>
<p>返却するファイル名の一覧を区切るのに使う文字を指定します。</p>
</item>
</terms>
<p>以下のスクリプトの例でファイル選択ダイアログの作成方法を示します。</p>
<code>
#!/bin/sh
FILE=`zenity --file-selection --title="ファイルの選択"`
case $? in
0)
echo "\"$FILE\" が選択されました。";;
1)
echo "ファイルが選択されませんでした。";;
-1)
echo "予期せぬエラーが発生しました。";;
esac
</code>
<figure>
<title>ファイル選択ダイアログの例</title>
<desc><app>Zenity</app> ファイル選択ダイアログの例</desc>
<media type="image" mime="image/png" src="figures/zenity-fileselection-screenshot.png"/>
</figure>
</page>
|