list-example.scm 686 B

123456789101112131415
  1. (use-modules (zenity))
  2. ;; zenity --list \
  3. ;; --title="Choose the Bugs You Wish to View" \
  4. ;; --column="Bug Number" --column="Severity" --column="Description" \
  5. ;; 992383 Normal "GtkTreeView crashes on multiple selections" \
  6. ;; 293823 High "GNOME Dictionary does not handle proxy" \
  7. ;; 393823 Critical "Menu editing does not work in GNOME 2.0"
  8. (zenity-list "Choose the Bugs You Wish to View"
  9. '("Bug Number" "Severity" "Description")
  10. '((992383 Normal "GtkTreeView crashes on multiple selections")
  11. (293823 High "GNOME Dictionary does not handle proxy")
  12. (393823 Critical "Menu editing does not work in GNOME 2.0")))