Package: gtk
Function gtk-file-filter-new
Lambda Listgtk-file-filter-new () Return ValueA new gtk-file-filter object. Details
Creates a new file filter with no rules added to it.
Such a filter does not accept any files, so is not particularly useful until you add rules with the functions gtk-file-filter-add-mime-type, gtk-file-filter-add-pattern, or gtk-file-filter-add-custom. Example(let ((filter (gtk-file-filter-new))) (gtk-file-filter-add-pattern filter "*") ... ) | See also |
*2021-2-11