2008-09-30 08:14:11 +00:00
|
|
|
|
/* GTK - The GIMP Toolkit
|
|
|
|
|
* Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
|
|
|
|
|
*
|
|
|
|
|
* gtkorientable.c
|
|
|
|
|
* Copyright (C) 2008 Imendio AB
|
|
|
|
|
* Contact: Michael Natterer <mitch@imendio.com>
|
|
|
|
|
*
|
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
|
* 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
|
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* 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/>.
|
2008-09-30 08:14:11 +00:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
2020-04-23 16:48:29 +00:00
|
|
|
|
#include "gtkorientable.h"
|
2019-03-16 03:48:26 +00:00
|
|
|
|
|
2008-09-30 08:14:11 +00:00
|
|
|
|
#include "gtkprivate.h"
|
2020-04-23 16:48:29 +00:00
|
|
|
|
#include "gtkwidgetprivate.h"
|
2011-01-04 17:05:05 +00:00
|
|
|
|
#include "gtktypebuiltins.h"
|
2008-09-30 08:14:11 +00:00
|
|
|
|
|
|
|
|
|
|
2010-05-13 01:35:02 +00:00
|
|
|
|
/**
|
2021-02-25 02:57:30 +00:00
|
|
|
|
* GtkOrientable:
|
2010-05-13 01:35:02 +00:00
|
|
|
|
*
|
2021-02-25 02:57:30 +00:00
|
|
|
|
* The `GtkOrientable` interface is implemented by all widgets that can be
|
|
|
|
|
* oriented horizontally or vertically.
|
|
|
|
|
*
|
|
|
|
|
* `GtkOrientable` is more flexible in that it allows the orientation to be
|
|
|
|
|
* changed at runtime, allowing the widgets to “flip”.
|
2023-02-12 16:28:12 +00:00
|
|
|
|
*
|
|
|
|
|
* ## CSS nodes
|
|
|
|
|
*
|
|
|
|
|
* `GtkWidget` types implementing the `GtkOrientable` interface will
|
|
|
|
|
* automatically acquire the `horizontal` or `vertical` CSS class depending on
|
|
|
|
|
* the value of the [property@Gtk.Orientable:orientation] property.
|
|
|
|
|
|
2010-05-13 01:35:02 +00:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
2010-04-09 00:29:51 +00:00
|
|
|
|
typedef GtkOrientableIface GtkOrientableInterface;
|
2010-04-13 10:22:45 +00:00
|
|
|
|
G_DEFINE_INTERFACE (GtkOrientable, gtk_orientable, G_TYPE_OBJECT)
|
2008-09-30 08:14:11 +00:00
|
|
|
|
|
|
|
|
|
static void
|
2010-04-09 00:29:51 +00:00
|
|
|
|
gtk_orientable_default_init (GtkOrientableInterface *iface)
|
2008-09-30 08:14:11 +00:00
|
|
|
|
{
|
|
|
|
|
/**
|
2021-02-25 02:57:30 +00:00
|
|
|
|
* GtkOrientable:orientation: (attributes org.gtk.Property.get=gtk_orientable_get_orientation org.gtk.Property.set=gtk_orientable_set_orientation)
|
2008-09-30 08:14:11 +00:00
|
|
|
|
*
|
|
|
|
|
* The orientation of the orientable.
|
|
|
|
|
**/
|
|
|
|
|
g_object_interface_install_property (iface,
|
2022-05-11 12:19:39 +00:00
|
|
|
|
g_param_spec_enum ("orientation", NULL, NULL,
|
2008-09-30 08:14:11 +00:00
|
|
|
|
GTK_TYPE_ORIENTATION,
|
|
|
|
|
GTK_ORIENTATION_HORIZONTAL,
|
2014-06-07 18:08:46 +00:00
|
|
|
|
GTK_PARAM_READWRITE|G_PARAM_EXPLICIT_NOTIFY));
|
2008-09-30 08:14:11 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2021-02-25 02:57:30 +00:00
|
|
|
|
* gtk_orientable_set_orientation: (attributes org.gtk.Method.set_property=orientation)
|
|
|
|
|
* @orientable: a `GtkOrientable`
|
2021-05-18 21:05:26 +00:00
|
|
|
|
* @orientation: the orientable’s new orientation
|
2008-09-30 08:14:11 +00:00
|
|
|
|
*
|
|
|
|
|
* Sets the orientation of the @orientable.
|
2021-02-25 02:57:30 +00:00
|
|
|
|
*/
|
2008-09-30 08:14:11 +00:00
|
|
|
|
void
|
|
|
|
|
gtk_orientable_set_orientation (GtkOrientable *orientable,
|
|
|
|
|
GtkOrientation orientation)
|
|
|
|
|
{
|
|
|
|
|
g_return_if_fail (GTK_IS_ORIENTABLE (orientable));
|
|
|
|
|
|
|
|
|
|
g_object_set (orientable,
|
|
|
|
|
"orientation", orientation,
|
|
|
|
|
NULL);
|
2011-01-10 22:38:47 +00:00
|
|
|
|
|
|
|
|
|
if (GTK_IS_WIDGET (orientable))
|
2020-04-23 16:48:29 +00:00
|
|
|
|
gtk_widget_update_orientation (GTK_WIDGET (orientable), orientation);
|
2008-09-30 08:14:11 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2021-02-25 02:57:30 +00:00
|
|
|
|
* gtk_orientable_get_orientation: (attributes org.gtk.Method.get_property=orientation)
|
|
|
|
|
* @orientable: a `GtkOrientable`
|
2008-09-30 08:14:11 +00:00
|
|
|
|
*
|
|
|
|
|
* Retrieves the orientation of the @orientable.
|
|
|
|
|
*
|
2021-05-18 21:05:26 +00:00
|
|
|
|
* Returns: the orientation of the @orientable
|
2021-02-25 02:57:30 +00:00
|
|
|
|
*/
|
2008-09-30 08:14:11 +00:00
|
|
|
|
GtkOrientation
|
|
|
|
|
gtk_orientable_get_orientation (GtkOrientable *orientable)
|
|
|
|
|
{
|
|
|
|
|
GtkOrientation orientation;
|
|
|
|
|
|
|
|
|
|
g_return_val_if_fail (GTK_IS_ORIENTABLE (orientable),
|
|
|
|
|
GTK_ORIENTATION_HORIZONTAL);
|
|
|
|
|
|
|
|
|
|
g_object_get (orientable,
|
|
|
|
|
"orientation", &orientation,
|
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
|
|
return orientation;
|
|
|
|
|
}
|