forked from AuroraMiddleware/gtk
Merge branch 'deprecate-infobar' into 'main'
Deprecate GtkInfoBar See merge request GNOME/gtk!5246
This commit is contained in:
commit
5e534306e4
@ -7,6 +7,8 @@
|
|||||||
#include <glib/gi18n.h>
|
#include <glib/gi18n.h>
|
||||||
#include <gtk/gtk.h>
|
#include <gtk/gtk.h>
|
||||||
|
|
||||||
|
G_GNUC_BEGIN_IGNORE_DEPRECATIONS
|
||||||
|
|
||||||
static void
|
static void
|
||||||
on_bar_response (GtkInfoBar *info_bar,
|
on_bar_response (GtkInfoBar *info_bar,
|
||||||
int response_id,
|
int response_id,
|
||||||
|
@ -97,3 +97,11 @@ is much reduced, and it has awkward, archaice APIs. Therefore,
|
|||||||
it is dropped. The recommended replacement is to just create
|
it is dropped. The recommended replacement is to just create
|
||||||
your own window and add buttons as required, either in the header
|
your own window and add buttons as required, either in the header
|
||||||
or elsewhere.
|
or elsewhere.
|
||||||
|
|
||||||
|
## GtkInfoBar is going away
|
||||||
|
|
||||||
|
GtkInfoBar had a dialog API, and with dialogs going away, it was time to
|
||||||
|
retire it. If you need such a widget, it is relatively trivial to create one
|
||||||
|
using a [class@Gtk.Revealer] with labels and buttons.
|
||||||
|
|
||||||
|
Other libraries, such as libadwaita, may provide replacements as well.
|
||||||
|
@ -46,6 +46,8 @@
|
|||||||
#include "gtkbinlayout.h"
|
#include "gtkbinlayout.h"
|
||||||
#include "gtkgestureclick.h"
|
#include "gtkgestureclick.h"
|
||||||
|
|
||||||
|
G_GNUC_BEGIN_IGNORE_DEPRECATIONS
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* GtkInfoBar:
|
* GtkInfoBar:
|
||||||
*
|
*
|
||||||
@ -122,6 +124,11 @@
|
|||||||
* on the message type.
|
* on the message type.
|
||||||
* If the info bar shows a close button, that button will have the .close
|
* If the info bar shows a close button, that button will have the .close
|
||||||
* style class applied.
|
* style class applied.
|
||||||
|
*
|
||||||
|
* Deprecated: 4.10: There is no replacement in GTK for an "info bar" widget;
|
||||||
|
* you can use [class@Gtk.Revealer] with a [class@GtkBox] containing a
|
||||||
|
* [class@Gtk.Label] and an optional [class@Gtk.Button], according to
|
||||||
|
* your application's design.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
enum
|
enum
|
||||||
@ -532,6 +539,8 @@ action_widget_activated (GtkWidget *widget,
|
|||||||
* [signal@Gtk.InfoBar::response] signal on the message area
|
* [signal@Gtk.InfoBar::response] signal on the message area
|
||||||
* when the widget is activated. The widget is appended to the
|
* when the widget is activated. The widget is appended to the
|
||||||
* end of the message areas action area.
|
* end of the message areas action area.
|
||||||
|
*
|
||||||
|
* Deprecated: 4.10
|
||||||
*/
|
*/
|
||||||
void
|
void
|
||||||
gtk_info_bar_add_action_widget (GtkInfoBar *info_bar,
|
gtk_info_bar_add_action_widget (GtkInfoBar *info_bar,
|
||||||
@ -577,6 +586,8 @@ gtk_info_bar_add_action_widget (GtkInfoBar *info_bar,
|
|||||||
*
|
*
|
||||||
* The widget must have been put there by a call to
|
* The widget must have been put there by a call to
|
||||||
* [method@Gtk.InfoBar.add_action_widget] or [method@Gtk.InfoBar.add_button].
|
* [method@Gtk.InfoBar.add_action_widget] or [method@Gtk.InfoBar.add_button].
|
||||||
|
*
|
||||||
|
* Deprecated: 4.10
|
||||||
*/
|
*/
|
||||||
void
|
void
|
||||||
gtk_info_bar_remove_action_widget (GtkInfoBar *info_bar,
|
gtk_info_bar_remove_action_widget (GtkInfoBar *info_bar,
|
||||||
@ -606,6 +617,8 @@ gtk_info_bar_remove_action_widget (GtkInfoBar *info_bar,
|
|||||||
*
|
*
|
||||||
* Returns: (transfer none) (type Gtk.Button): the `GtkButton` widget
|
* Returns: (transfer none) (type Gtk.Button): the `GtkButton` widget
|
||||||
* that was added
|
* that was added
|
||||||
|
*
|
||||||
|
* Deprecated: 4.10
|
||||||
*/
|
*/
|
||||||
GtkWidget*
|
GtkWidget*
|
||||||
gtk_info_bar_add_button (GtkInfoBar *info_bar,
|
gtk_info_bar_add_button (GtkInfoBar *info_bar,
|
||||||
@ -668,6 +681,8 @@ add_buttons_valist (GtkInfoBar *info_bar,
|
|||||||
* repeatedly. The variable argument list should be %NULL-terminated
|
* repeatedly. The variable argument list should be %NULL-terminated
|
||||||
* as with [ctor@Gtk.InfoBar.new_with_buttons]. Each button must have both
|
* as with [ctor@Gtk.InfoBar.new_with_buttons]. Each button must have both
|
||||||
* text and response ID.
|
* text and response ID.
|
||||||
|
*
|
||||||
|
* Deprecated: 4.10
|
||||||
*/
|
*/
|
||||||
void
|
void
|
||||||
gtk_info_bar_add_buttons (GtkInfoBar *info_bar,
|
gtk_info_bar_add_buttons (GtkInfoBar *info_bar,
|
||||||
@ -687,6 +702,8 @@ gtk_info_bar_add_buttons (GtkInfoBar *info_bar,
|
|||||||
* Creates a new `GtkInfoBar` object.
|
* Creates a new `GtkInfoBar` object.
|
||||||
*
|
*
|
||||||
* Returns: a new `GtkInfoBar` object
|
* Returns: a new `GtkInfoBar` object
|
||||||
|
*
|
||||||
|
* Deprecated: 4.10
|
||||||
*/
|
*/
|
||||||
GtkWidget *
|
GtkWidget *
|
||||||
gtk_info_bar_new (void)
|
gtk_info_bar_new (void)
|
||||||
@ -710,6 +727,8 @@ gtk_info_bar_new (void)
|
|||||||
* response ID.
|
* response ID.
|
||||||
*
|
*
|
||||||
* Returns: a new `GtkInfoBar`
|
* Returns: a new `GtkInfoBar`
|
||||||
|
*
|
||||||
|
* Deprecated: 4.10
|
||||||
*/
|
*/
|
||||||
GtkWidget*
|
GtkWidget*
|
||||||
gtk_info_bar_new_with_buttons (const char *first_button_text,
|
gtk_info_bar_new_with_buttons (const char *first_button_text,
|
||||||
@ -752,6 +771,8 @@ update_default_response (GtkInfoBar *info_bar,
|
|||||||
* Calls `gtk_widget_set_sensitive (widget, setting)` for each
|
* Calls `gtk_widget_set_sensitive (widget, setting)` for each
|
||||||
* widget in the info bars’s action area with the given @response_id.
|
* widget in the info bars’s action area with the given @response_id.
|
||||||
* A convenient way to sensitize/desensitize buttons.
|
* A convenient way to sensitize/desensitize buttons.
|
||||||
|
*
|
||||||
|
* Deprecated: 4.10
|
||||||
*/
|
*/
|
||||||
void
|
void
|
||||||
gtk_info_bar_set_response_sensitive (GtkInfoBar *info_bar,
|
gtk_info_bar_set_response_sensitive (GtkInfoBar *info_bar,
|
||||||
@ -788,6 +809,8 @@ gtk_info_bar_set_response_sensitive (GtkInfoBar *info_bar,
|
|||||||
*
|
*
|
||||||
* Note that this function currently requires @info_bar to
|
* Note that this function currently requires @info_bar to
|
||||||
* be added to a widget hierarchy.
|
* be added to a widget hierarchy.
|
||||||
|
*
|
||||||
|
* Deprecated: 4.10
|
||||||
*/
|
*/
|
||||||
void
|
void
|
||||||
gtk_info_bar_set_default_response (GtkInfoBar *info_bar,
|
gtk_info_bar_set_default_response (GtkInfoBar *info_bar,
|
||||||
@ -824,6 +847,8 @@ gtk_info_bar_set_default_response (GtkInfoBar *info_bar,
|
|||||||
* @response_id: a response ID
|
* @response_id: a response ID
|
||||||
*
|
*
|
||||||
* Emits the “response” signal with the given @response_id.
|
* Emits the “response” signal with the given @response_id.
|
||||||
|
*
|
||||||
|
* Deprecated: 4.10
|
||||||
*/
|
*/
|
||||||
void
|
void
|
||||||
gtk_info_bar_response (GtkInfoBar *info_bar,
|
gtk_info_bar_response (GtkInfoBar *info_bar,
|
||||||
@ -1070,6 +1095,8 @@ gtk_info_bar_buildable_add_child (GtkBuildable *buildable,
|
|||||||
* Sets the message type of the message area.
|
* Sets the message type of the message area.
|
||||||
*
|
*
|
||||||
* GTK uses this type to determine how the message is displayed.
|
* GTK uses this type to determine how the message is displayed.
|
||||||
|
*
|
||||||
|
* Deprecated: 4.10
|
||||||
*/
|
*/
|
||||||
void
|
void
|
||||||
gtk_info_bar_set_message_type (GtkInfoBar *info_bar,
|
gtk_info_bar_set_message_type (GtkInfoBar *info_bar,
|
||||||
@ -1108,6 +1135,8 @@ gtk_info_bar_set_message_type (GtkInfoBar *info_bar,
|
|||||||
* Returns the message type of the message area.
|
* Returns the message type of the message area.
|
||||||
*
|
*
|
||||||
* Returns: the message type of the message area.
|
* Returns: the message type of the message area.
|
||||||
|
*
|
||||||
|
* Deprecated: 4.10
|
||||||
*/
|
*/
|
||||||
GtkMessageType
|
GtkMessageType
|
||||||
gtk_info_bar_get_message_type (GtkInfoBar *info_bar)
|
gtk_info_bar_get_message_type (GtkInfoBar *info_bar)
|
||||||
@ -1126,6 +1155,8 @@ gtk_info_bar_get_message_type (GtkInfoBar *info_bar)
|
|||||||
* If true, a standard close button is shown.
|
* If true, a standard close button is shown.
|
||||||
*
|
*
|
||||||
* When clicked it emits the response %GTK_RESPONSE_CLOSE.
|
* When clicked it emits the response %GTK_RESPONSE_CLOSE.
|
||||||
|
*
|
||||||
|
* Deprecated: 4.10
|
||||||
*/
|
*/
|
||||||
void
|
void
|
||||||
gtk_info_bar_set_show_close_button (GtkInfoBar *info_bar,
|
gtk_info_bar_set_show_close_button (GtkInfoBar *info_bar,
|
||||||
@ -1147,6 +1178,8 @@ gtk_info_bar_set_show_close_button (GtkInfoBar *info_bar,
|
|||||||
* Returns whether the widget will display a standard close button.
|
* Returns whether the widget will display a standard close button.
|
||||||
*
|
*
|
||||||
* Returns: %TRUE if the widget displays standard close button
|
* Returns: %TRUE if the widget displays standard close button
|
||||||
|
*
|
||||||
|
* Deprecated: 4.10
|
||||||
*/
|
*/
|
||||||
gboolean
|
gboolean
|
||||||
gtk_info_bar_get_show_close_button (GtkInfoBar *info_bar)
|
gtk_info_bar_get_show_close_button (GtkInfoBar *info_bar)
|
||||||
@ -1169,6 +1202,8 @@ gtk_info_bar_get_show_close_button (GtkInfoBar *info_bar)
|
|||||||
* Note: this does not show or hide @info_bar in the
|
* Note: this does not show or hide @info_bar in the
|
||||||
* [property@Gtk.Widget:visible] sense, so revealing has no effect
|
* [property@Gtk.Widget:visible] sense, so revealing has no effect
|
||||||
* if [property@Gtk.Widget:visible] is %FALSE.
|
* if [property@Gtk.Widget:visible] is %FALSE.
|
||||||
|
*
|
||||||
|
* Deprecated: 4.10
|
||||||
*/
|
*/
|
||||||
void
|
void
|
||||||
gtk_info_bar_set_revealed (GtkInfoBar *info_bar,
|
gtk_info_bar_set_revealed (GtkInfoBar *info_bar,
|
||||||
@ -1190,6 +1225,8 @@ gtk_info_bar_set_revealed (GtkInfoBar *info_bar,
|
|||||||
* Returns whether the info bar is currently revealed.
|
* Returns whether the info bar is currently revealed.
|
||||||
*
|
*
|
||||||
* Returns: the current value of the [property@Gtk.InfoBar:revealed] property
|
* Returns: the current value of the [property@Gtk.InfoBar:revealed] property
|
||||||
|
*
|
||||||
|
* Deprecated: 4.10
|
||||||
*/
|
*/
|
||||||
gboolean
|
gboolean
|
||||||
gtk_info_bar_get_revealed (GtkInfoBar *info_bar)
|
gtk_info_bar_get_revealed (GtkInfoBar *info_bar)
|
||||||
@ -1205,6 +1242,8 @@ gtk_info_bar_get_revealed (GtkInfoBar *info_bar)
|
|||||||
* @widget: the child to be added
|
* @widget: the child to be added
|
||||||
*
|
*
|
||||||
* Adds a widget to the content area of the info bar.
|
* Adds a widget to the content area of the info bar.
|
||||||
|
*
|
||||||
|
* Deprecated: 4.10
|
||||||
*/
|
*/
|
||||||
void
|
void
|
||||||
gtk_info_bar_add_child (GtkInfoBar *info_bar,
|
gtk_info_bar_add_child (GtkInfoBar *info_bar,
|
||||||
@ -1222,6 +1261,8 @@ gtk_info_bar_add_child (GtkInfoBar *info_bar,
|
|||||||
* @widget: a child that has been added to the content area
|
* @widget: a child that has been added to the content area
|
||||||
*
|
*
|
||||||
* Removes a widget from the content area of the info bar.
|
* Removes a widget from the content area of the info bar.
|
||||||
|
*
|
||||||
|
* Deprecated: 4.10
|
||||||
*/
|
*/
|
||||||
void
|
void
|
||||||
gtk_info_bar_remove_child (GtkInfoBar *info_bar,
|
gtk_info_bar_remove_child (GtkInfoBar *info_bar,
|
@ -46,63 +46,63 @@ typedef struct _GtkInfoBar GtkInfoBar;
|
|||||||
|
|
||||||
GDK_AVAILABLE_IN_ALL
|
GDK_AVAILABLE_IN_ALL
|
||||||
GType gtk_info_bar_get_type (void) G_GNUC_CONST;
|
GType gtk_info_bar_get_type (void) G_GNUC_CONST;
|
||||||
GDK_AVAILABLE_IN_ALL
|
GDK_DEPRECATED_IN_4_10
|
||||||
GtkWidget *gtk_info_bar_new (void);
|
GtkWidget *gtk_info_bar_new (void);
|
||||||
|
|
||||||
GDK_AVAILABLE_IN_ALL
|
GDK_DEPRECATED_IN_4_10
|
||||||
GtkWidget *gtk_info_bar_new_with_buttons (const char *first_button_text,
|
GtkWidget *gtk_info_bar_new_with_buttons (const char *first_button_text,
|
||||||
...);
|
...);
|
||||||
|
|
||||||
GDK_AVAILABLE_IN_ALL
|
GDK_DEPRECATED_IN_4_10
|
||||||
void gtk_info_bar_add_action_widget (GtkInfoBar *info_bar,
|
void gtk_info_bar_add_action_widget (GtkInfoBar *info_bar,
|
||||||
GtkWidget *child,
|
GtkWidget *child,
|
||||||
int response_id);
|
int response_id);
|
||||||
GDK_AVAILABLE_IN_ALL
|
GDK_DEPRECATED_IN_4_10
|
||||||
void gtk_info_bar_remove_action_widget (GtkInfoBar *info_bar,
|
void gtk_info_bar_remove_action_widget (GtkInfoBar *info_bar,
|
||||||
GtkWidget *widget);
|
GtkWidget *widget);
|
||||||
GDK_AVAILABLE_IN_ALL
|
GDK_DEPRECATED_IN_4_10
|
||||||
GtkWidget *gtk_info_bar_add_button (GtkInfoBar *info_bar,
|
GtkWidget *gtk_info_bar_add_button (GtkInfoBar *info_bar,
|
||||||
const char *button_text,
|
const char *button_text,
|
||||||
int response_id);
|
int response_id);
|
||||||
GDK_AVAILABLE_IN_ALL
|
GDK_DEPRECATED_IN_4_10
|
||||||
void gtk_info_bar_add_buttons (GtkInfoBar *info_bar,
|
void gtk_info_bar_add_buttons (GtkInfoBar *info_bar,
|
||||||
const char *first_button_text,
|
const char *first_button_text,
|
||||||
...);
|
...);
|
||||||
GDK_AVAILABLE_IN_ALL
|
GDK_DEPRECATED_IN_4_10
|
||||||
void gtk_info_bar_add_child (GtkInfoBar *info_bar,
|
void gtk_info_bar_add_child (GtkInfoBar *info_bar,
|
||||||
GtkWidget *widget);
|
GtkWidget *widget);
|
||||||
GDK_AVAILABLE_IN_ALL
|
GDK_DEPRECATED_IN_4_10
|
||||||
void gtk_info_bar_remove_child (GtkInfoBar *info_bar,
|
void gtk_info_bar_remove_child (GtkInfoBar *info_bar,
|
||||||
GtkWidget *widget);
|
GtkWidget *widget);
|
||||||
|
|
||||||
GDK_AVAILABLE_IN_ALL
|
GDK_DEPRECATED_IN_4_10
|
||||||
void gtk_info_bar_set_response_sensitive (GtkInfoBar *info_bar,
|
void gtk_info_bar_set_response_sensitive (GtkInfoBar *info_bar,
|
||||||
int response_id,
|
int response_id,
|
||||||
gboolean setting);
|
gboolean setting);
|
||||||
GDK_AVAILABLE_IN_ALL
|
GDK_DEPRECATED_IN_4_10
|
||||||
void gtk_info_bar_set_default_response (GtkInfoBar *info_bar,
|
void gtk_info_bar_set_default_response (GtkInfoBar *info_bar,
|
||||||
int response_id);
|
int response_id);
|
||||||
|
|
||||||
GDK_AVAILABLE_IN_ALL
|
GDK_DEPRECATED_IN_4_10
|
||||||
void gtk_info_bar_response (GtkInfoBar *info_bar,
|
void gtk_info_bar_response (GtkInfoBar *info_bar,
|
||||||
int response_id);
|
int response_id);
|
||||||
|
|
||||||
GDK_AVAILABLE_IN_ALL
|
GDK_DEPRECATED_IN_4_10
|
||||||
void gtk_info_bar_set_message_type (GtkInfoBar *info_bar,
|
void gtk_info_bar_set_message_type (GtkInfoBar *info_bar,
|
||||||
GtkMessageType message_type);
|
GtkMessageType message_type);
|
||||||
GDK_AVAILABLE_IN_ALL
|
GDK_DEPRECATED_IN_4_10
|
||||||
GtkMessageType gtk_info_bar_get_message_type (GtkInfoBar *info_bar);
|
GtkMessageType gtk_info_bar_get_message_type (GtkInfoBar *info_bar);
|
||||||
|
|
||||||
GDK_AVAILABLE_IN_ALL
|
GDK_DEPRECATED_IN_4_10
|
||||||
void gtk_info_bar_set_show_close_button (GtkInfoBar *info_bar,
|
void gtk_info_bar_set_show_close_button (GtkInfoBar *info_bar,
|
||||||
gboolean setting);
|
gboolean setting);
|
||||||
GDK_AVAILABLE_IN_ALL
|
GDK_DEPRECATED_IN_4_10
|
||||||
gboolean gtk_info_bar_get_show_close_button (GtkInfoBar *info_bar);
|
gboolean gtk_info_bar_get_show_close_button (GtkInfoBar *info_bar);
|
||||||
|
|
||||||
GDK_AVAILABLE_IN_ALL
|
GDK_DEPRECATED_IN_4_10
|
||||||
void gtk_info_bar_set_revealed (GtkInfoBar *info_bar,
|
void gtk_info_bar_set_revealed (GtkInfoBar *info_bar,
|
||||||
gboolean revealed);
|
gboolean revealed);
|
||||||
GDK_AVAILABLE_IN_ALL
|
GDK_DEPRECATED_IN_4_10
|
||||||
gboolean gtk_info_bar_get_revealed (GtkInfoBar *info_bar);
|
gboolean gtk_info_bar_get_revealed (GtkInfoBar *info_bar);
|
||||||
|
|
||||||
G_DEFINE_AUTOPTR_CLEANUP_FUNC(GtkInfoBar, g_object_unref)
|
G_DEFINE_AUTOPTR_CLEANUP_FUNC(GtkInfoBar, g_object_unref)
|
@ -29,6 +29,7 @@ gtk_deprecated_sources = [
|
|||||||
'deprecated/gtkfontbutton.c',
|
'deprecated/gtkfontbutton.c',
|
||||||
'deprecated/gtkfontchooser.c',
|
'deprecated/gtkfontchooser.c',
|
||||||
'deprecated/gtkiconview.c',
|
'deprecated/gtkiconview.c',
|
||||||
|
'deprecated/gtkinfobar.c',
|
||||||
'deprecated/gtkliststore.c',
|
'deprecated/gtkliststore.c',
|
||||||
'deprecated/gtkrender.c',
|
'deprecated/gtkrender.c',
|
||||||
'deprecated/gtkstylecontext.c',
|
'deprecated/gtkstylecontext.c',
|
||||||
@ -83,6 +84,7 @@ gtk_deprecated_headers = [
|
|||||||
'deprecated/gtkfontchooserdialog.h',
|
'deprecated/gtkfontchooserdialog.h',
|
||||||
'deprecated/gtkfontchooserwidget.h',
|
'deprecated/gtkfontchooserwidget.h',
|
||||||
'deprecated/gtkiconview.h',
|
'deprecated/gtkiconview.h',
|
||||||
|
'deprecated/gtkinfobar.h',
|
||||||
'deprecated/gtkliststore.h',
|
'deprecated/gtkliststore.h',
|
||||||
'deprecated/gtkmessagedialog.h',
|
'deprecated/gtkmessagedialog.h',
|
||||||
'deprecated/gtkrender.h',
|
'deprecated/gtkrender.h',
|
||||||
|
@ -163,7 +163,7 @@
|
|||||||
#include <gtk/gtkimcontext.h>
|
#include <gtk/gtkimcontext.h>
|
||||||
#include <gtk/gtkimcontextsimple.h>
|
#include <gtk/gtkimcontextsimple.h>
|
||||||
#include <gtk/gtkimmulticontext.h>
|
#include <gtk/gtkimmulticontext.h>
|
||||||
#include <gtk/gtkinfobar.h>
|
#include <gtk/deprecated/gtkinfobar.h>
|
||||||
#include <gtk/gtkinscription.h>
|
#include <gtk/gtkinscription.h>
|
||||||
#include <gtk/gtklabel.h>
|
#include <gtk/gtklabel.h>
|
||||||
#include <gtk/gtklayoutmanager.h>
|
#include <gtk/gtklayoutmanager.h>
|
||||||
|
@ -261,7 +261,6 @@ gtk_public_sources = files([
|
|||||||
'gtkimcontextsimple.c',
|
'gtkimcontextsimple.c',
|
||||||
'gtkimmodule.c',
|
'gtkimmodule.c',
|
||||||
'gtkimmulticontext.c',
|
'gtkimmulticontext.c',
|
||||||
'gtkinfobar.c',
|
|
||||||
'gtkinscription.c',
|
'gtkinscription.c',
|
||||||
'gtklabel.c',
|
'gtklabel.c',
|
||||||
'gtklayoutchild.c',
|
'gtklayoutchild.c',
|
||||||
@ -509,7 +508,6 @@ gtk_public_headers = files([
|
|||||||
'gtkimcontextsimple.h',
|
'gtkimcontextsimple.h',
|
||||||
'gtkimmodule.h',
|
'gtkimmodule.h',
|
||||||
'gtkimmulticontext.h',
|
'gtkimmulticontext.h',
|
||||||
'gtkinfobar.h',
|
|
||||||
'gtkinscription.h',
|
'gtkinscription.h',
|
||||||
'gtklabel.h',
|
'gtklabel.h',
|
||||||
'gtklayoutchild.h',
|
'gtklayoutchild.h',
|
||||||
|
@ -211,7 +211,7 @@ gtk/gtkimcontext.c
|
|||||||
gtk/gtkimcontextsimple.c
|
gtk/gtkimcontextsimple.c
|
||||||
gtk/gtkimmodule.c
|
gtk/gtkimmodule.c
|
||||||
gtk/gtkimmulticontext.c
|
gtk/gtkimmulticontext.c
|
||||||
gtk/gtkinfobar.c
|
gtk/deprecated/gtkinfobar.c
|
||||||
gtk/gtklabel.c
|
gtk/gtklabel.c
|
||||||
gtk/gtklevelbar.c
|
gtk/gtklevelbar.c
|
||||||
gtk/gtklinkbutton.c
|
gtk/gtklinkbutton.c
|
||||||
|
Loading…
Reference in New Issue
Block a user