2009-10-13 07:14:05 -04:00
|
|
|
/*
|
|
|
|
* Clutter.
|
|
|
|
*
|
|
|
|
* An OpenGL based 'interactive canvas' library.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2009 Intel Corporation.
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* Author:
|
|
|
|
* Emmanuele Bassi <ebassi@linux.intel.com>
|
|
|
|
*
|
|
|
|
* Based on the NBTK NbtkBoxLayout actor by:
|
|
|
|
* Thomas Wood <thomas.wood@intel.com>
|
|
|
|
*/
|
|
|
|
|
2023-07-21 09:37:20 -04:00
|
|
|
#pragma once
|
2015-07-07 10:51:13 -04:00
|
|
|
|
2009-10-13 07:14:05 -04:00
|
|
|
#if !defined(__CLUTTER_H_INSIDE__) && !defined(CLUTTER_COMPILATION)
|
|
|
|
#error "Only <clutter/clutter.h> can be included directly."
|
|
|
|
#endif
|
|
|
|
|
2023-08-07 09:38:12 -04:00
|
|
|
#include "clutter/clutter-layout-manager.h"
|
2009-10-13 07:14:05 -04:00
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
#define CLUTTER_TYPE_BOX_LAYOUT (clutter_box_layout_get_type ())
|
|
|
|
|
2018-05-22 17:01:54 -04:00
|
|
|
CLUTTER_EXPORT
|
2024-01-10 05:52:32 -05:00
|
|
|
G_DECLARE_DERIVABLE_TYPE (ClutterBoxLayout,
|
|
|
|
clutter_box_layout,
|
|
|
|
CLUTTER, BOX_LAYOUT,
|
|
|
|
ClutterLayoutManager)
|
|
|
|
|
|
|
|
struct _ClutterBoxLayoutClass
|
|
|
|
{
|
|
|
|
/*< private >*/
|
|
|
|
ClutterLayoutManagerClass parent_class;
|
|
|
|
};
|
2009-10-13 07:14:05 -04:00
|
|
|
|
2018-05-22 17:01:54 -04:00
|
|
|
CLUTTER_EXPORT
|
2012-03-27 12:08:59 -04:00
|
|
|
ClutterLayoutManager * clutter_box_layout_new (void);
|
|
|
|
|
2018-05-22 17:01:54 -04:00
|
|
|
CLUTTER_EXPORT
|
2012-03-27 12:08:59 -04:00
|
|
|
void clutter_box_layout_set_orientation (ClutterBoxLayout *layout,
|
|
|
|
ClutterOrientation orientation);
|
2018-05-22 17:01:54 -04:00
|
|
|
CLUTTER_EXPORT
|
2012-03-27 12:08:59 -04:00
|
|
|
ClutterOrientation clutter_box_layout_get_orientation (ClutterBoxLayout *layout);
|
|
|
|
|
2018-05-22 17:01:54 -04:00
|
|
|
CLUTTER_EXPORT
|
2012-03-27 12:08:59 -04:00
|
|
|
void clutter_box_layout_set_spacing (ClutterBoxLayout *layout,
|
|
|
|
guint spacing);
|
2018-05-22 17:01:54 -04:00
|
|
|
CLUTTER_EXPORT
|
2012-03-27 12:08:59 -04:00
|
|
|
guint clutter_box_layout_get_spacing (ClutterBoxLayout *layout);
|
2018-05-22 17:01:54 -04:00
|
|
|
CLUTTER_EXPORT
|
2012-03-27 12:08:59 -04:00
|
|
|
void clutter_box_layout_set_homogeneous (ClutterBoxLayout *layout,
|
|
|
|
gboolean homogeneous);
|
2018-05-22 17:01:54 -04:00
|
|
|
CLUTTER_EXPORT
|
2012-03-27 12:08:59 -04:00
|
|
|
gboolean clutter_box_layout_get_homogeneous (ClutterBoxLayout *layout);
|
|
|
|
|
2009-10-13 07:14:05 -04:00
|
|
|
G_END_DECLS
|