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 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304
|
/* Clutter.
*
* Perl bindings for the OpenGL based 'interactive canvas' library.
*
* Clutter Authored By Matthew Allum <mallum@openedhand.com>
* Perl bindings by Emmanuele Bassi <ebassi@openedhand.com>
*
* Copyright (C) 2006 OpenedHand
*
* 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, write to the
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
#include "clutterperl.h"
#define PREP(obj) \
dSP; \
ENTER; \
SAVETMPS; \
PUSHMARK(SP); \
PUSHs (newSVGObject ((GObject *) (obj)));
#define CALL_METHOD(name,flags) \
PUTBACK; \
call_method ((name), (flags)); \
SPAGAIN;
#define FINISH \
PUTBACK; \
FREETMPS; \
LEAVE;
static gboolean
clutterperl_model_iter_is_first (ClutterModelIter *iter)
{
gboolean ret = FALSE;
PREP (iter);
CALL_METHOD ("IS_FIRST", G_SCALAR);
ret = POPi;
FINISH;
return ret;
}
static gboolean
clutterperl_model_iter_is_last (ClutterModelIter *iter)
{
gboolean ret = FALSE;
PREP (iter);
CALL_METHOD ("IS_FIRST", G_SCALAR);
ret = POPi;
FINISH;
return ret;
}
static ClutterModelIter *
clutterperl_model_iter_next (ClutterModelIter *iter)
{
PREP (iter);
CALL_METHOD ("NEXT", G_VOID | G_DISCARD);
FINISH;
return iter;
}
static ClutterModelIter *
clutterperl_model_iter_prev (ClutterModelIter *iter)
{
PREP (iter);
CALL_METHOD ("PREV", G_VOID | G_DISCARD);
FINISH;
return iter;
}
static ClutterModel *
clutterperl_model_iter_get_model (ClutterModelIter *iter)
{
ClutterModel *ret = NULL;
SV *svret;
PREP (iter);
CALL_METHOD ("GET_MODEL", G_SCALAR);
svret = POPs;
PUTBACK;
ret = SvClutterModel (svret);
FREETMPS;
LEAVE;
return ret;
}
static guint
clutterperl_model_iter_get_row (ClutterModelIter *iter)
{
guint ret = 0;
PREP (iter);
CALL_METHOD ("GET_ROW", G_SCALAR);
ret = POPi;
FINISH;
return ret;
}
static void
clutterperl_model_iter_get_value (ClutterModelIter *iter,
guint column,
GValue *value)
{
SV *svret;
PREP (iter);
XPUSHs (sv_2mortal (newSVuv (column)));
CALL_METHOD ("GET_VALUE", G_SCALAR);
svret = POPs;
PUTBACK;
gperl_value_from_sv (value, svret);
FREETMPS;
LEAVE;
}
static void
clutterperl_model_iter_set_value (ClutterModelIter *iter,
guint column,
const GValue *value)
{
PREP (iter);
XPUSHs (sv_2mortal (newSVuv (column)));
XPUSHs (sv_2mortal (gperl_sv_from_value (value)));
CALL_METHOD ("SET_VALUE", G_VOID | G_DISCARD);
FINISH;
}
static void
clutterperl_model_iter_class_init (ClutterModelIterClass *klass)
{
klass->get_model = clutterperl_model_iter_get_model;
klass->get_row = clutterperl_model_iter_get_row;
klass->is_first = clutterperl_model_iter_is_first;
klass->is_last = clutterperl_model_iter_is_last;
klass->prev = clutterperl_model_iter_prev;
klass->next = clutterperl_model_iter_next;
klass->get_value = clutterperl_model_iter_get_value;
klass->set_value = clutterperl_model_iter_set_value;
}
MODULE = Clutter::Model::Iter PACKAGE = Clutter::Model::Iter PREFIX = clutter_model_iter_
=for apidoc
=for arg ... of column indices
Fetch and return the model's values in the row pointed to by I<iter>.
If you specify no column indices, it returns the values for all of the
columns, otherwise, returns just those columns' values (in order).
=cut
void
clutter_model_iter_get_values (ClutterModelIter *iter, ...)
PREINIT:
int i;
PPCODE:
if (items > 1) {
for (i = 1 ; i < items ; i++) {
GValue gvalue = { 0, };
clutter_model_iter_get_value (iter,
SvIV (ST (i)),
&gvalue);
XPUSHs (sv_2mortal (gperl_sv_from_value (&gvalue)));
g_value_unset (&gvalue);
}
}
else {
ClutterModel *model = clutter_model_iter_get_model (iter);
guint n_columns = clutter_model_get_n_columns (model);
for( i = 0; i < n_columns; i++ ) {
GValue gvalue = { 0, };
clutter_model_iter_get_value (iter, i, &gvalue);
XPUSHs (sv_2mortal (gperl_sv_from_value (&gvalue)));
g_value_unset (&gvalue);
}
}
=for apidoc
=for arg ... of column, value pairs
Sets the model's values in the row pointed to by I<iter>.
=cut
void
clutter_model_iter_set_values (ClutterModelIter *iter, ...)
PREINIT:
ClutterModel *model;
guint n_cols;
int i;
const char *errfmt = "Usage: $iter->set_values ($column, $value, ...)\n"
" %s";
CODE:
if (items < 1 || 0 != ((items - 1) % 2))
croak (errfmt, "There must be a value for every column number");
model = clutter_model_iter_get_model (iter);
n_cols = clutter_model_get_n_columns (model);
for (i = 1 ; i < (items - 1); i++) {
GValue gvalue = { 0, };
GType t = G_TYPE_INVALID;
gint column = 0;
if (! looks_like_number (ST (1 + i * 2)))
croak (errfmt, "The first value in each pair must be "
"a column index number");
column = SvIV (ST (1 + i * 2));
if (! (column >= 0 && column < n_cols))
croak (errfmt, form ("Bad column index %d, model only "
"has %d columns",
column, n_cols));
t = clutter_model_get_column_type (model, column);
if (t == G_TYPE_INVALID)
croak (errfmt, form ("Invalid type for column "
"index %d (internal error)",
column));
g_value_init (&gvalue, t);
gperl_value_from_sv (&gvalue, ST ((1 + i * 2) + 1));
clutter_model_iter_set_value (iter, column, &gvalue);
g_value_unset (&gvalue);
}
gboolean
clutter_model_iter_is_first (ClutterModelIter *iter)
gboolean
clutter_model_iter_is_last (ClutterModelIter *iter)
ClutterModelIter_noinc *
clutter_model_iter_next (ClutterModelIter *iter)
ClutterModelIter_noinc *
clutter_model_iter_prev (ClutterModelIter *iter)
ClutterModel_noinc *
clutter_model_iter_get_model (ClutterModelIter *iter)
guint
clutter_model_iter_get_row (ClutterModelIter *iter)
=for apidoc Clutter::Model::Iter::_INSTALL_OVERRIDES __hide__
=cut
void
_INSTALL_OVERRIDES (const char *package)
PREINIT:
GType gtype;
ClutterModelIterClass *klass;
CODE:
gtype = gperl_object_type_from_package (package);
if (!gtype) {
croak("package `%s' is not registered with GPerl", package);
}
if (!g_type_is_a (gtype, CLUTTER_TYPE_MODEL)) {
croak("package `%s' (%s) is not a Clutter::Model::Iter",
package,
g_type_name (gtype));
}
klass = g_type_class_peek (gtype);
if (!klass) {
croak("INTERNAL ERROR: can't peek a type class for `%s'",
g_type_name (gtype));
}
clutterperl_model_iter_class_init (klass);
|