Fix to say that file_selection_complete() filters both files and

Thu Nov 30 00:53:45 2000  Owen Taylor  <otaylor@redhat.com>

	* gtk/tmpl/gtkfilesel.sgml: Fix to say that file_selection_complete()
	filters both files and directories.

	* gtk/tmpl/gtktogglebutton.sgml: Fix description
	of gtk_toggle_button_toggled().
This commit is contained in:
Owen Taylor 2000-12-05 20:50:24 +00:00 committed by Owen Taylor
parent f2e4ead7db
commit 691576eb40
3 changed files with 18 additions and 4 deletions

View File

@ -1,3 +1,11 @@
Thu Nov 30 00:53:45 2000 Owen Taylor <otaylor@redhat.com>
* gtk/tmpl/gtkfilesel.sgml: Fix to say that file_selection_complete()
filters both files and directories.
* gtk/tmpl/gtktogglebutton.sgml: Fix description
of gtk_toggle_button_toggled().
Fri Nov 17 17:31:30 2000 Owen Taylor <otaylor@redhat.com>
* gtk/Makefile.am (content_files): Add a couple

View File

@ -15,7 +15,9 @@ File selection dialogs are created with a call to gtk_file_selection_new().
The default filename can be set using gtk_file_selection_set_filename() and the selected filename retrieved using gtk_file_selection_get_filename().
</para>
<para>
Use gtk_file_selection_complete() to display files that match a given pattern. This can be used for example, to show only *.txt files, or only files beginning with gtk*.
Use gtk_file_selection_complete() to display files and directories
that match a given pattern. This can be used for example, to show only
*.txt files, or only files beginning with gtk*.
</para>
<para>
Simple file operations; create directory, delete file, and rename file, are available from buttons at the top of the dialog. These can be hidden using gtk_file_selection_hide_fileop_buttons() and shown again using gtk_file_selection_show_fileop_buttons().
@ -141,8 +143,10 @@ Retrieves the currently selected filename from the file selection dialog. If no
<!-- ##### FUNCTION gtk_file_selection_complete ##### -->
<para>
Will attempt to match @pattern to a valid filename in the current directory. If a match can be made, the matched filename will appear in the text entry field of the file selection dialog.
If a partial match can be made, the "Files" list will contain those file names which have been partially matched.
Will attempt to match @pattern to a valid filenames or subdirectories in the current directory. If a match can be made, the matched filename will appear in the text entry field of the file selection dialog.
If a partial match can be made, the "Files" list will contain those
file names which have been partially matched, and the "Directories"
list those directories which have been partially matched.
</para>
@filesel: a #GtkFileSelection.

View File

@ -114,7 +114,9 @@ This is a deprecated macro, and is only maintained for compatability reasons.
<!-- ##### FUNCTION gtk_toggle_button_toggled ##### -->
<para>
Changes the state of the toggle button.
Emits the <link linkend="GtkToggleButton-toggled">toggled</link>
signal on the #GtkToggleButton. There is no good reason for an
application ever to call this function.
</para>
@toggle_button: a #GtkToggleButton.