Onde é documentado o uso da caixa de combinação com o zenity?

11

Eu achei por acaso que era possível exibir uma caixa de combinação com zenity (versão testada: 2.32.1). Veja o seguinte código:

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

O resultado é ilustrado com as seguintes 3 imagens:

Eu tenho duas perguntas sobre isso:

  1. Existe documentação sobre essa funcionalidade? Não encontrei nada na documentação do zenity .

  2. Por que o primeiro valor da minha matriz não aparece na caixa de combinação? No exemplo acima, minha matriz é (a b c d e) e a caixa de combinação exibe apenas b c d e .

    Como solução alternativa, adiciono um valor em minha matriz, por exemplo, (0 a b c d e) .

por jpfleury 28.06.2011 / 21:11

3 respostas

5

O primeiro elemento da matriz é comido por --text . Após a expansão, sua linha zenitiy se parece com:

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

Então, primeiro você define o texto como a , depois substitui o texto por "Inserir sua escolha". E os argumentos restantes se tornam as escolhas.

O que você quer é:

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[@]}"
    
por geirha 08.07.2011 / 14:20
4

Isso está realmente documentado (talvez não no momento em que a pergunta foi postada, não foi verificado), não no manual, mas em 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

Portanto:

zenity --forms --title "Window title" --text "Combo name" --add-combo "Insert your choice." --combo-values "a|b|c|d|e"
    
por Skippy le Grand Gourou 19.02.2016 / 15:15
3

Acho que você deseja usar --text-entry para a matriz de valores, não --text ( referência ). Usando:

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

Eu vejo o valor padrão da caixa suspensa pré-preenchida com o primeiro valor da matriz e todos os valores disponíveis.

    
por pwlars 04.07.2011 / 21:51

Tags