/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */ /* * st-box-layout-child.h: box layout child actor * * Copyright 2009 Intel Corporation * * This program is free software; you can redistribute it and/or modify it * under the terms and conditions of the GNU Lesser General Public License, * version 2.1, as published by the Free Software Foundation. * * This program is distributed in the hope 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 program. If not, see . */ #ifndef _ST_BOX_LAYOUT_CHILD_H #define _ST_BOX_LAYOUT_CHILD_H #include #include "st-enum-types.h" #include "st-box-layout.h" G_BEGIN_DECLS #define ST_TYPE_BOX_LAYOUT_CHILD st_box_layout_child_get_type() G_DECLARE_FINAL_TYPE (StBoxLayoutChild, st_box_layout_child, ST, BOX_LAYOUT_CHILD, ClutterChildMeta) typedef struct _StBoxLayoutChild StBoxLayoutChild; typedef struct _StBoxLayoutChildPrivate StBoxLayoutChildPrivate; /** * StBoxLayoutChild: * * The contents of this structure are private and should only be accessed * through the public API. */ struct _StBoxLayoutChild { /*< private >*/ ClutterChildMeta parent; gboolean x_fill_set; gboolean y_fill_set; }; G_END_DECLS #endif /* _ST_BOX_LAYOUT_CHILD_H */