summaryrefslogtreecommitdiff
path: root/help/ja/question.page
blob: d9634f1fefc8d82c525dc499187cf02c5e38e57f (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
<?xml version="1.0" encoding="utf-8"?>
<page xmlns="http://projectmallard.org/1.0/" type="topic" id="question" xml:lang="ja">
  <info>
    <link type="guide" xref="message"/>
    <desc><cmd>--question</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>--question</cmd> というオプションを使ってください。</p>

      <p>以下のスクリプトの例で質問ダイアログの作成方法を示します。</p>

<code>
#!/bin/bash

zenity --question \
--text="続行しますか?"
</code>


      <figure>
        <title>質問ダイアログの例</title>
	<desc><app>Zenity</app> 質問ダイアログの例</desc>
        <media type="image" mime="image/png" src="figures/zenity-question-screenshot.png"/>
      </figure>
</page>
bgstack15