forked from AuroraMiddleware/gtk
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:
parent
f2e4ead7db
commit
691576eb40
@ -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>
|
Fri Nov 17 17:31:30 2000 Owen Taylor <otaylor@redhat.com>
|
||||||
|
|
||||||
* gtk/Makefile.am (content_files): Add a couple
|
* gtk/Makefile.am (content_files): Add a couple
|
||||||
|
@ -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().
|
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>
|
||||||
<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>
|
||||||
<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().
|
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 ##### -->
|
<!-- ##### FUNCTION gtk_file_selection_complete ##### -->
|
||||||
<para>
|
<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.
|
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.
|
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>
|
</para>
|
||||||
|
|
||||||
@filesel: a #GtkFileSelection.
|
@filesel: a #GtkFileSelection.
|
||||||
|
@ -114,7 +114,9 @@ This is a deprecated macro, and is only maintained for compatability reasons.
|
|||||||
|
|
||||||
<!-- ##### FUNCTION gtk_toggle_button_toggled ##### -->
|
<!-- ##### FUNCTION gtk_toggle_button_toggled ##### -->
|
||||||
<para>
|
<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>
|
</para>
|
||||||
|
|
||||||
@toggle_button: a #GtkToggleButton.
|
@toggle_button: a #GtkToggleButton.
|
||||||
|
Loading…
Reference in New Issue
Block a user