2008-07-01 22:57:50 +00:00
|
|
|
/* GTK - The GIMP Toolkit
|
1997-11-24 22:37:52 +00:00
|
|
|
* Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
2000-07-26 11:33:08 +00:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
1997-11-24 22:37:52 +00:00
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
2000-07-26 11:33:08 +00:00
|
|
|
* Lesser General Public License for more details.
|
1997-11-24 22:37:52 +00:00
|
|
|
*
|
2000-07-26 11:33:08 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2012-02-27 13:01:10 +00:00
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
1997-11-24 22:37:52 +00:00
|
|
|
*/
|
1999-02-24 07:37:18 +00:00
|
|
|
|
|
|
|
/*
|
2000-07-26 11:33:08 +00:00
|
|
|
* Modified by the GTK+ Team and others 1997-2000. See the AUTHORS
|
1999-02-24 07:37:18 +00:00
|
|
|
* file for a list of people on the GTK+ Team. See the ChangeLog
|
|
|
|
* files for a list of changes. These files are distributed with
|
2008-09-30 14:20:30 +00:00
|
|
|
* GTK+ at ftp://ftp.gtk.org/pub/gtk/.
|
1999-02-24 07:37:18 +00:00
|
|
|
*/
|
|
|
|
|
2008-06-22 14:28:52 +00:00
|
|
|
#include "config.h"
|
2008-09-30 14:20:30 +00:00
|
|
|
|
1997-11-24 22:37:52 +00:00
|
|
|
#include "gtkhseparator.h"
|
2008-09-30 14:20:30 +00:00
|
|
|
#include "gtkorientable.h"
|
2010-07-09 17:22:23 +00:00
|
|
|
|
2013-05-05 15:32:20 +00:00
|
|
|
G_GNUC_BEGIN_IGNORE_DEPRECATIONS
|
1997-11-24 22:37:52 +00:00
|
|
|
|
2011-04-11 21:33:38 +00:00
|
|
|
/**
|
|
|
|
* SECTION:gtkhseparator
|
|
|
|
* @Short_description: A horizontal separator
|
|
|
|
* @Title: GtkHSeparator
|
|
|
|
* @See_also: #GtkSeparator
|
|
|
|
*
|
|
|
|
* The #GtkHSeparator widget is a horizontal separator, used to group the
|
|
|
|
* widgets within a window. It displays a horizontal line with a shadow to
|
|
|
|
* make it appear sunken into the interface.
|
|
|
|
*
|
2014-02-05 04:57:30 +00:00
|
|
|
* > The #GtkHSeparator widget is not used as a separator within menus.
|
|
|
|
* > To create a separator in a menu create an empty #GtkSeparatorMenuItem
|
|
|
|
* > widget using gtk_separator_menu_item_new() and add it to the menu with
|
|
|
|
* > gtk_menu_shell_append().
|
2011-06-08 01:35:57 +00:00
|
|
|
*
|
|
|
|
* GtkHSeparator has been deprecated, use #GtkSeparator instead.
|
2011-04-11 21:33:38 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
2006-05-14 04:25:34 +00:00
|
|
|
G_DEFINE_TYPE (GtkHSeparator, gtk_hseparator, GTK_TYPE_SEPARATOR)
|
1997-11-24 22:37:52 +00:00
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_hseparator_class_init (GtkHSeparatorClass *class)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gtk_hseparator_init (GtkHSeparator *hseparator)
|
|
|
|
{
|
2008-09-30 14:20:30 +00:00
|
|
|
gtk_orientable_set_orientation (GTK_ORIENTABLE (hseparator),
|
|
|
|
GTK_ORIENTATION_HORIZONTAL);
|
1997-11-24 22:37:52 +00:00
|
|
|
}
|
|
|
|
|
2011-04-11 21:33:38 +00:00
|
|
|
/**
|
|
|
|
* gtk_hseparator_new:
|
|
|
|
*
|
|
|
|
* Creates a new #GtkHSeparator.
|
|
|
|
*
|
|
|
|
* Returns: a new #GtkHSeparator.
|
2011-06-08 01:35:57 +00:00
|
|
|
*
|
|
|
|
* Deprecated: 3.2: Use gtk_separator_new() with %GTK_ORIENTATION_HORIZONTAL instead
|
2011-04-11 21:33:38 +00:00
|
|
|
*/
|
2008-09-30 14:20:30 +00:00
|
|
|
GtkWidget *
|
1998-05-03 22:41:32 +00:00
|
|
|
gtk_hseparator_new (void)
|
1997-11-24 22:37:52 +00:00
|
|
|
{
|
2002-10-04 08:02:14 +00:00
|
|
|
return g_object_new (GTK_TYPE_HSEPARATOR, NULL);
|
1997-11-24 22:37:52 +00:00
|
|
|
}
|