mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 10:50:10 +00:00
Move GtkCombo and GtkOptionMenu to the "Deprecated" chapter. Add
Thu Oct 23 22:41:02 2003 Matthias Clasen <maclas@gmx.de> * gtk/gtk-docs.sgml: Move GtkCombo and GtkOptionMenu to the "Deprecated" chapter. Add GtkFileChooser, GtkFileChooserDialog, GtkFileChooseWidget and GtkFileFilter. * gtk/gtkfilefilter.c (gtk_file_filter_new): Fix doc markup.
This commit is contained in:
parent
6de190725c
commit
4200df5bdb
@ -1,3 +1,7 @@
|
||||
Thu Oct 23 22:33:47 2003 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* gtk/gtkfilefilter.c (gtk_file_filter_new): Fix doc markup.
|
||||
|
||||
Thu Oct 23 21:49:05 2003 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* NEWS: Remove a few duplicates, group the menu changes.
|
||||
|
@ -1,3 +1,7 @@
|
||||
Thu Oct 23 22:33:47 2003 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* gtk/gtkfilefilter.c (gtk_file_filter_new): Fix doc markup.
|
||||
|
||||
Thu Oct 23 21:49:05 2003 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* NEWS: Remove a few duplicates, group the menu changes.
|
||||
|
@ -1,3 +1,7 @@
|
||||
Thu Oct 23 22:33:47 2003 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* gtk/gtkfilefilter.c (gtk_file_filter_new): Fix doc markup.
|
||||
|
||||
Thu Oct 23 21:49:05 2003 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* NEWS: Remove a few duplicates, group the menu changes.
|
||||
|
@ -1,3 +1,7 @@
|
||||
Thu Oct 23 22:33:47 2003 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* gtk/gtkfilefilter.c (gtk_file_filter_new): Fix doc markup.
|
||||
|
||||
Thu Oct 23 21:49:05 2003 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* NEWS: Remove a few duplicates, group the menu changes.
|
||||
|
@ -1,3 +1,7 @@
|
||||
Thu Oct 23 22:33:47 2003 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* gtk/gtkfilefilter.c (gtk_file_filter_new): Fix doc markup.
|
||||
|
||||
Thu Oct 23 21:49:05 2003 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* NEWS: Remove a few duplicates, group the menu changes.
|
||||
|
@ -1,3 +1,9 @@
|
||||
Thu Oct 23 22:41:02 2003 Matthias Clasen <maclas@gmx.de>
|
||||
|
||||
* gtk/gtk-docs.sgml: Move GtkCombo and GtkOptionMenu to
|
||||
the "Deprecated" chapter. Add GtkFileChooser, GtkFileChooserDialog,
|
||||
GtkFileChooseWidget and GtkFileFilter.
|
||||
|
||||
2003-10-23 Federico Mena Quintero <federico@ximian.com>
|
||||
|
||||
* gtk/gtk.types: Added gtk_file_chooser_get_type,
|
||||
|
@ -33,6 +33,10 @@
|
||||
<!ENTITY GtkEntryCompletion SYSTEM "xml/gtkentrycompletion.xml">
|
||||
<!ENTITY GtkEventBox SYSTEM "xml/gtkeventbox.xml">
|
||||
<!ENTITY GtkExpander SYSTEM "xml/gtkexpander.xml">
|
||||
<!ENTITY GtkFileChooser SYSTEM "xml/gtkfilechooser.xml">
|
||||
<!ENTITY GtkFileChooserDialog SYSTEM "xml/gtkfilechooserdialog.xml">
|
||||
<!ENTITY GtkFileChooserWidget SYSTEM "xml/gtkfilechooserwidget.xml">
|
||||
<!ENTITY GtkFileFilter SYSTEM "xml/gtkfilefilter.xml">
|
||||
<!ENTITY GtkFileSelection SYSTEM "xml/gtkfilesel.xml">
|
||||
<!ENTITY GtkFixed SYSTEM "xml/gtkfixed.xml">
|
||||
<!ENTITY GtkFontButton SYSTEM "xml/gtkfontbutton.xml">
|
||||
@ -385,14 +389,12 @@ that is, GUI components such as <link linkend="GtkButton">GtkButton</link> or
|
||||
|
||||
<chapter id="MenusAndCombos">
|
||||
<title>Menus, Combo Box, Toolbar</title>
|
||||
&GtkCombo;
|
||||
&GtkComboBox;
|
||||
&GtkComboBoxEntry;
|
||||
&GtkMenu;
|
||||
&GtkMenuBar;
|
||||
&GtkMenuItem;
|
||||
&GtkMenuShell;
|
||||
&GtkOptionMenu;
|
||||
&GtkImageMenuItem;
|
||||
&GtkRadioMenuItem;
|
||||
&GtkCheckMenuItem;
|
||||
@ -421,6 +423,10 @@ that is, GUI components such as <link linkend="GtkButton">GtkButton</link> or
|
||||
&GtkColorSelection;
|
||||
&GtkColorSelectionDialog;
|
||||
&GtkFileSelection;
|
||||
&GtkFileChooser;
|
||||
&GtkFileChooserDialog;
|
||||
&GtkFileChooserWidget;
|
||||
&GtkFileFilter;
|
||||
&GtkFontButton;
|
||||
&GtkFontSelection;
|
||||
&GtkFontSelectionDialog;
|
||||
@ -509,6 +515,8 @@ that is, GUI components such as <link linkend="GtkButton">GtkButton</link> or
|
||||
|
||||
<chapter id="DeprecatedObjects">
|
||||
<title>Deprecated</title>
|
||||
&GtkCombo;
|
||||
&GtkOptionMenu;
|
||||
&GtkItemFactory;
|
||||
&GtkCList;
|
||||
&GtkCTree;
|
||||
|
@ -152,7 +152,7 @@ gtk_file_filter_finalize (GObject *object)
|
||||
* <informalexample><programlisting>
|
||||
* GtkFileFilter *filter = gtk_file_filter_new ();
|
||||
* gtk_file_filter_add_pattern (filter, "*");
|
||||
* </programlisting></programlisting>
|
||||
* </programlisting></informalexample>
|
||||
*
|
||||
* Return value: a new #GtkFileFilter
|
||||
**/
|
||||
|
Loading…
Reference in New Issue
Block a user