mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-12-26 13:41:07 +00:00
Deprecate h/v subclasses of GtkSeparator
This has been discussed in bug 541009.
This commit is contained in:
parent
fdd324c855
commit
00544af8c2
@ -26,6 +26,7 @@
|
||||
|
||||
#include "config.h"
|
||||
|
||||
#undef GTK_DISABLE_DEPRECATED
|
||||
#include "gtkhseparator.h"
|
||||
#include "gtkorientable.h"
|
||||
|
||||
@ -46,6 +47,8 @@
|
||||
* widget using gtk_separator_menu_item_new() and add it to the menu with
|
||||
* gtk_menu_shell_append().
|
||||
* </note>
|
||||
*
|
||||
* GtkHSeparator has been deprecated, use #GtkSeparator instead.
|
||||
*/
|
||||
|
||||
|
||||
@ -69,6 +72,8 @@ gtk_hseparator_init (GtkHSeparator *hseparator)
|
||||
* Creates a new #GtkHSeparator.
|
||||
*
|
||||
* Returns: a new #GtkHSeparator.
|
||||
*
|
||||
* Deprecated: 3.2: Use gtk_separator_new() with %GTK_ORIENTATION_HORIZONTAL instead
|
||||
*/
|
||||
GtkWidget *
|
||||
gtk_hseparator_new (void)
|
||||
|
@ -31,6 +31,7 @@
|
||||
#ifndef __GTK_HSEPARATOR_H__
|
||||
#define __GTK_HSEPARATOR_H__
|
||||
|
||||
#ifndef GTK_DISABLE_DEPRECATED
|
||||
|
||||
#include <gtk/gtkseparator.h>
|
||||
|
||||
@ -65,4 +66,5 @@ GtkWidget* gtk_hseparator_new (void);
|
||||
|
||||
G_END_DECLS
|
||||
|
||||
#endif
|
||||
#endif /* __GTK_HSEPARATOR_H__ */
|
||||
|
@ -27,6 +27,7 @@
|
||||
#include "config.h"
|
||||
|
||||
#include "gtkorientable.h"
|
||||
#undef GTK_DISABLE_DEPRECATED
|
||||
#include "gtkvseparator.h"
|
||||
|
||||
|
||||
@ -39,6 +40,8 @@
|
||||
* The #GtkVSeparator widget is a vertical separator, used to group the
|
||||
* widgets within a window. It displays a vertical line with a shadow to
|
||||
* make it appear sunken into the interface.
|
||||
*
|
||||
* GtkVSeparator has been deprecated, use #GtkSeparator instead.
|
||||
*/
|
||||
|
||||
G_DEFINE_TYPE (GtkVSeparator, gtk_vseparator, GTK_TYPE_SEPARATOR)
|
||||
@ -61,6 +64,8 @@ gtk_vseparator_init (GtkVSeparator *vseparator)
|
||||
* Creates a new #GtkVSeparator.
|
||||
*
|
||||
* Returns: a new #GtkVSeparator.
|
||||
*
|
||||
* Deprecated: 3.2: Use gtk_separator_new() with %GTK_ORIENTATION_VERTICAL instead
|
||||
*/
|
||||
GtkWidget *
|
||||
gtk_vseparator_new (void)
|
||||
|
@ -31,10 +31,10 @@
|
||||
#ifndef __GTK_VSEPARATOR_H__
|
||||
#define __GTK_VSEPARATOR_H__
|
||||
|
||||
#ifndef GTK_DISABLE_DEPRECATED
|
||||
|
||||
#include <gtk/gtkseparator.h>
|
||||
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
|
||||
@ -72,5 +72,6 @@ GtkWidget* gtk_vseparator_new (void);
|
||||
|
||||
G_END_DECLS
|
||||
|
||||
#endif
|
||||
|
||||
#endif /* __GTK_SEPARATOR_H__ */
|
||||
#endif /* __GTK_VSEPARATOR_H__ */
|
||||
|
Loading…
Reference in New Issue
Block a user