哪里有关于 zenity 组合框使用情况的记录?

哪里有关于 zenity 组合框使用情况的记录?

我偶然发现可以使用 zenity(测试版本:2.32.1)显示组合框。请参阅以下代码:

#!/bin/bash
array=(a b c d e)
value=$(zenity --entry --title "Window title" --text "${array[@]}" --text "Insert your choice.")

结果如下面三张图所示:

在此处输入图片描述

在此处输入图片描述

在此处输入图片描述

我对此有两个疑问:

  1. 是否有关于此功能的文档?我没有找到任何内容zenity 文档

  2. 为什么我的数组的第一个值没有出现在组合框中?在上面的例子中,我的数组是(a b c d e),而组合框只显示b c d e

    作为一种解决方法,我在数组中添加了一个值,例如(0 a b c d e)

答案1

这实际上是有记录的(可能在问题发布时没有记录,没有检查),不是在手册中,而是在zenity --help-forms :

$ LANG=en_US zenity --help-forms
Usage:
  zenity [OPTION...]

Forms dialog options
  --forms                                           Display forms dialog
  --add-entry=Field name                            Add a new Entry in forms dialog
  --add-password=Field name                         Add a new Password Entry in forms dialog
  --add-calendar=Calendar field name                Add a new Calendar in forms dialog
  --add-list=List field and header name             Add a new List in forms dialog
  --list-values=List of values separated by |       List of values for List
  --column-values=List of values separated by |     List of values for columns
  --add-combo=Combo box field name                  Add a new combo box in forms dialog
  --combo-values=List of values separated by |      List of values for combo box
  --show-header                                     Show the columns header
  --text=TEXT                                       Set the dialog text
  --separator=SEPARATOR                             Set output separator character
  --forms-date-format=PATTERN                       Set the format for the returned date

所以:

zenity --forms --title "Window title" --text "Combo name" --add-combo "Insert your choice." --combo-values "a|b|c|d|e"

答案2

数组的第一个元素被 吞噬--text。扩展后,您的 zenitiy 行如下所示:

zenity --entry --title "Window title" --text a b c d e --text "Insert your choice."
# Which zenity treats equivalent to
zenity --entry --title "Window title" --text a --text "Insert your choice." b c d e

因此,您首先将文本设置为a,然后用“插入您的选择”覆盖它。其余参数将成为选择。

你想要的是:

zenity --entry --title "Window title" --text "Insert your choice." a b c d e
# Hence:
zenity --entry --title "Window title" --text "Insert your choice." "${array[@]}"

答案3

我认为您想使用--text-entry值数组,而不是--text参考)。 使用:

#!/bin/bash
array=(a b c d e)
value=$(zenity --entry --title "Window title" --entry-text "${array[@]}" --text "Insert your choice.")

我看到下拉框的默认值预先填充了数组的第一个值以及所有可用的值。

相关内容