1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146
|
/* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
/*
* Copyright (C) 2011 Ruby-GNOME2 Project Team
* Copyright (C) 2002-2005 Ruby-GNOME2 Project Team
* Copyright (C) 1998-2000 Yukihiro Matsumoto,
* Daisuke Kanda,
* Hiroshi Igarashi
*
* 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.1 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, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
* MA 02110-1301 USA
*/
#include "rbgtk3private.h"
#define RG_TARGET_NAMESPACE cBox
#define _SELF(self) (RVAL2GTKBOX(self))
static VALUE
rg_initialize(int argc, VALUE *argv, VALUE self)
{
VALUE orientation, spacing;
rb_scan_args(argc, argv, "11", &orientation, &spacing);
RBGTK_INITIALIZE(self, gtk_box_new(RVAL2GTKORIENTATION(orientation),
NIL_P(spacing) ? 0 : NUM2INT(spacing)));
return Qnil;
}
static void
box_pack_start_or_end(int argc, VALUE *argv, VALUE self, void (*func)(GtkBox *, GtkWidget *, gboolean, gboolean, guint))
{
VALUE options, child, expand, fill, padding;
rb_scan_args(argc, argv, "11", &child, &options);
rbg_scan_options(options,
"expand", &expand,
"fill", &fill,
"padding", &padding,
NULL);
func(_SELF(self),
RVAL2GTKWIDGET(child),
NIL_P(expand) ? TRUE : RVAL2CBOOL(expand),
NIL_P(fill) ? TRUE : RVAL2CBOOL(fill),
NIL_P(padding) ? 0 : NUM2UINT(padding));
G_CHILD_ADD(self, child);
}
static VALUE
rg_pack_start(int argc, VALUE *argv, VALUE self)
{
box_pack_start_or_end(argc, argv, self, gtk_box_pack_start);
return self;
}
static VALUE
rg_pack_end(int argc, VALUE *argv, VALUE self)
{
box_pack_start_or_end(argc, argv, self, gtk_box_pack_end);
return self;
}
static VALUE
rg_reorder_child(VALUE self, VALUE child, VALUE pos)
{
gtk_box_reorder_child(_SELF(self),
RVAL2GTKWIDGET(child), NUM2INT(pos));
return self;
}
static VALUE
rg_query_child_packing(VALUE self, VALUE child)
{
gboolean expand, fill;
guint padding;
GtkPackType pack_type;
VALUE ary;
gtk_box_query_child_packing(_SELF(self),
RVAL2GTKWIDGET(child),
&expand, &fill, &padding, &pack_type);
ary = rb_ary_new2(4);
rb_ary_push(ary, expand == FALSE ? Qfalse : Qtrue);
rb_ary_push(ary, fill == FALSE ? Qfalse : Qtrue);
rb_ary_push(ary, INT2NUM(padding));
rb_ary_push(ary, GTKPACKTYPE2RVAL(pack_type));
return ary;
}
static VALUE
rg_set_child_packing(int argc, VALUE *argv, VALUE self)
{
VALUE options, child, expand, fill, padding, pack_type;
gboolean old_expand, old_fill;
guint old_padding;
GtkPackType old_pack_type;
rb_scan_args(argc, argv, "11", &child, &options);
rbg_scan_options(options,
"expand", &expand,
"fill", &fill,
"padding", &padding,
"pack_type", &pack_type,
NULL);
gtk_box_query_child_packing(_SELF(self),
RVAL2GTKWIDGET(child),
&old_expand, &old_fill, &old_padding, &old_pack_type);
gtk_box_set_child_packing(_SELF(self),
RVAL2GTKWIDGET(child),
NIL_P(expand) ? old_expand : RVAL2CBOOL(expand),
NIL_P(fill) ? old_fill : RVAL2CBOOL(fill),
NIL_P(padding) ? old_padding : NUM2UINT(padding),
NIL_P(pack_type) ? old_pack_type : (GtkPackType)RVAL2GTKPACKTYPE(pack_type));
return self;
}
void
Init_gtk_box(VALUE mGtk)
{
VALUE RG_TARGET_NAMESPACE = G_DEF_CLASS(GTK_TYPE_BOX, "Box", mGtk);
RG_DEF_METHOD(initialize, -1);
RG_DEF_METHOD(pack_start, -1);
RG_DEF_METHOD(pack_end, -1);
RG_DEF_METHOD(reorder_child, 2);
RG_DEF_METHOD(query_child_packing, 1);
RG_DEF_METHOD(set_child_packing, -1);
}
|