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 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574
|
/*
* Copyright (c) 2003-2006 by the gtk2-perl team (see the file AUTHORS)
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library 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
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library 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.
*
* $Header: /cvsroot/gtk2-perl/gtk2-perl-xs/Gtk2/xs/GtkStyle.xs,v 1.26 2006/08/07 18:36:10 kaffeetisch Exp $
*/
#include "gtk2perl.h"
MODULE = Gtk2::Style PACKAGE = Gtk2::Style PREFIX = gtk_style_
BOOT:
/* theme engines can provide subclasses on GtkStyle which may have
* any name they like, and will not be registered with the gperl
* bindings type subsystem. any time a user has the theme set to
* anything other than the default, one of these unregistered
* styles comes through. set this to keep gperl_get_object from
* spewing harmless and unavoidable warnings all over stderr. */
gperl_object_set_no_warn_unreg_subclass (GTK_TYPE_STYLE, TRUE);
SV *
black (style)
GtkStyle * style
ALIAS:
Gtk2::Style::white = 1
Gtk2::Style::font_desc = 2
Gtk2::Style::xthickness = 3
Gtk2::Style::ythickness = 4
Gtk2::Style::black_gc = 5
Gtk2::Style::white_gc = 6
CODE:
switch (ix) {
case 0: RETVAL = newSVGdkColor (&(style->black)); break;
case 1: RETVAL = newSVGdkColor (&(style->white)); break;
case 2: RETVAL = newSVPangoFontDescription_copy (style->font_desc); break;
case 3: RETVAL = newSViv (style->xthickness); break;
case 4: RETVAL = newSViv (style->ythickness); break;
case 5: RETVAL = newSVGdkGC (style->black_gc); break;
case 6: RETVAL = newSVGdkGC (style->white_gc); break;
default:
RETVAL = NULL;
g_assert_not_reached ();
}
OUTPUT:
RETVAL
GdkColor *
fg (style, state)
GtkStyle * style
GtkStateType state
ALIAS:
Gtk2::Style::bg = 1
Gtk2::Style::light = 2
Gtk2::Style::dark = 3
Gtk2::Style::mid = 4
Gtk2::Style::text = 5
Gtk2::Style::base = 6
Gtk2::Style::text_aa = 7
CODE:
switch (ix) {
case 0: RETVAL = &(style->fg[state]); break;
case 1: RETVAL = &(style->bg[state]); break;
case 2: RETVAL = &(style->light[state]); break;
case 3: RETVAL = &(style->dark[state]); break;
case 4: RETVAL = &(style->mid[state]); break;
case 5: RETVAL = &(style->text[state]); break;
case 6: RETVAL = &(style->base[state]); break;
case 7: RETVAL = &(style->text_aa[state]); break;
default:
RETVAL = NULL;
g_assert_not_reached ();
}
OUTPUT:
RETVAL
# legitimate reference, not a copy
GdkGC *
fg_gc (style, state)
GtkStyle * style
GtkStateType state
ALIAS:
Gtk2::Style::bg_gc = 1
Gtk2::Style::light_gc = 2
Gtk2::Style::dark_gc = 3
Gtk2::Style::mid_gc = 4
Gtk2::Style::text_gc = 5
Gtk2::Style::base_gc = 6
Gtk2::Style::text_aa_gc = 7
CODE:
switch (ix) {
case 0: RETVAL = style->fg_gc[state]; break;
case 1: RETVAL = style->bg_gc[state]; break;
case 2: RETVAL = style->light_gc[state]; break;
case 3: RETVAL = style->dark_gc[state]; break;
case 4: RETVAL = style->mid_gc[state]; break;
case 5: RETVAL = style->text_gc[state]; break;
case 6: RETVAL = style->base_gc[state]; break;
case 7: RETVAL = style->text_aa_gc[state]; break;
default:
RETVAL = NULL;
g_assert_not_reached ();
}
OUTPUT:
RETVAL
# legitimate reference, not a copy
GdkPixmap *
bg_pixmap (style, state, pixmap=NULL)
GtkStyle * style
GtkStateType state
GdkPixmap_ornull * pixmap
CODE:
RETVAL = style->bg_pixmap[state];
if (items > 2 && style->bg_pixmap[state] != pixmap) {
if (style->bg_pixmap[state])
g_object_unref (style->bg_pixmap[state]);
style->bg_pixmap[state] = pixmap;
if (pixmap)
g_object_ref (pixmap);
}
OUTPUT:
RETVAL
## GtkStyle* gtk_style_new (void)
GtkStyle_noinc*
gtk_style_new (class)
C_ARGS:
/* void */
## GtkStyle* gtk_style_copy (GtkStyle *style)
GtkStyle_noinc*
gtk_style_copy (style)
GtkStyle *style
gboolean
gtk_style_attached (style)
GtkStyle *style
CODE:
RETVAL = GTK_STYLE_ATTACHED (style);
OUTPUT:
RETVAL
## GtkStyle* gtk_style_attach (GtkStyle *style, GdkWindow *window)
GtkStyle *
gtk_style_attach (style, window)
GtkStyle *style
GdkWindow *window
CLEANUP:
if (RETVAL != style)
/* claim ownership of new object */
g_object_unref (RETVAL);
## void gtk_style_detach (GtkStyle *style)
void
gtk_style_detach (style)
GtkStyle *style
# deprecated
## GtkStyle* gtk_style_ref (GtkStyle *style)
## void gtk_style_unref (GtkStyle *style)
## void gtk_style_set_background (GtkStyle *style, GdkWindow *window, GtkStateType state_type)
void
gtk_style_set_background (style, window, state_type)
GtkStyle *style
GdkWindow *window
GtkStateType state_type
## void gtk_style_apply_default_background (GtkStyle *style, GdkWindow *window, gboolean set_bg, GtkStateType state_type, GdkRectangle *area, gint x, gint y, gint width, gint height)
void
gtk_style_apply_default_background (style, window, set_bg, state_type, area, x, y, width, height)
GtkStyle *style
GdkWindow *window
gboolean set_bg
GtkStateType state_type
GdkRectangle_ornull *area
gint x
gint y
gint width
gint height
## GtkIconSet* gtk_style_lookup_icon_set (GtkStyle *style, const gchar *stock_id)
GtkIconSet*
gtk_style_lookup_icon_set (style, stock_id)
GtkStyle *style
const gchar *stock_id
## GdkPixbuf* gtk_style_render_icon (GtkStyle *style, const GtkIconSource *source, GtkTextDirection direction, GtkStateType state, GtkIconSize size, GtkWidget *widget, const gchar *detail)
GdkPixbuf_noinc*
gtk_style_render_icon (style, source, direction, state, size, widget, detail=NULL)
GtkStyle *style
GtkIconSource *source
GtkTextDirection direction
GtkStateType state
GtkIconSize size
GtkWidget_ornull *widget
const gchar_ornull *detail
MODULE = Gtk2::Style PACKAGE = Gtk2::Style PREFIX = gtk_
## void gtk_paint_flat_box (GtkStyle *style, GdkWindow *window, GtkStateType state_type, GtkShadowType shadow_type, GdkRectangle *area, GtkWidget *widget, const gchar *detail, gint x, gint y, gint width, gint height)
void
gtk_paint_flat_box (style, window, state_type, shadow_type, area, widget, detail, x, y, width, height)
GtkStyle *style
GdkDrawable *window
GtkStateType state_type
GtkShadowType shadow_type
GdkRectangle_ornull *area
GtkWidget_ornull *widget
const gchar_ornull *detail
gint x
gint y
gint width
gint height
## void gtk_paint_hline (GtkStyle *style, GdkWindow *window, GtkStateType state_type, GdkRectangle *area, GtkWidget *widget, const gchar *detail, gint x1, gint x2, gint y)
void
gtk_paint_hline (style, window, state_type, area, widget, detail, x1, x2, y)
GtkStyle *style
GdkDrawable *window
GtkStateType state_type
GdkRectangle_ornull *area
GtkWidget_ornull *widget
const gchar_ornull *detail
gint x1
gint x2
gint y
## void gtk_paint_vline (GtkStyle *style, GdkWindow *window, GtkStateType state_type, GdkRectangle *area, GtkWidget *widget, const gchar *detail, gint y1_, gint y2_, gint x)
void
gtk_paint_vline (style, window, state_type, area, widget, detail, y1_, y2_, x)
GtkStyle *style
GdkDrawable *window
GtkStateType state_type
GdkRectangle_ornull *area
GtkWidget_ornull *widget
const gchar_ornull *detail
gint y1_
gint y2_
gint x
## void gtk_paint_shadow (GtkStyle *style, GdkWindow *window, GtkStateType state_type, GtkShadowType shadow_type, GdkRectangle *area, GtkWidget *widget, const gchar *detail, gint x, gint y, gint width, gint height)
void
gtk_paint_shadow (style, window, state_type, shadow_type, area, widget, detail, x, y, width, height)
GtkStyle *style
GdkDrawable *window
GtkStateType state_type
GtkShadowType shadow_type
GdkRectangle_ornull *area
GtkWidget_ornull *widget
const gchar_ornull *detail
gint x
gint y
gint width
gint height
## void gtk_paint_polygon (GtkStyle *style, GdkWindow *window, GtkStateType state_type, GtkShadowType shadow_type, GdkRectangle *area, GtkWidget *widget, const gchar *detail, GdkPoint *points, gint npoints, gboolean fill)
=for apidoc
=for arg x1 (gint) x coordinate of the first vertex
=for arg y1 (gint) y coordinate of the first vertex
=for arg ... pairs of x and y coordinates
=cut
void
gtk_paint_polygon (style, window, state_type, shadow_type, area, widget, detail, fill, x1, y1, ...)
GtkStyle *style
GdkDrawable *window
GtkStateType state_type
GtkShadowType shadow_type
GdkRectangle_ornull *area
GtkWidget_ornull *widget
const gchar_ornull *detail
gboolean fill
PREINIT:
GdkPoint *points;
gint npoints, i;
CODE:
#define first 8
npoints = (items - first) / 2;
points = g_new (GdkPoint, npoints);
for (i = 0 ; i < npoints ; i++) {
points[i].x = SvIV (ST (first + 2*i));
points[i].y = SvIV (ST (first + 2*i + 1));
}
gtk_paint_polygon (style, window, state_type, shadow_type,
area, widget, detail, points, npoints, fill);
g_free (points);
#undef first
## void gtk_paint_arrow (GtkStyle *style, GdkWindow *window, GtkStateType state_type, GtkShadowType shadow_type, GdkRectangle *area, GtkWidget *widget, const gchar *detail, GtkArrowType arrow_type, gboolean fill, gint x, gint y, gint width, gint height)
void
gtk_paint_arrow (style, window, state_type, shadow_type, area, widget, detail, arrow_type, fill, x, y, width, height)
GtkStyle *style
GdkDrawable *window
GtkStateType state_type
GtkShadowType shadow_type
GdkRectangle_ornull *area
GtkWidget_ornull *widget
const gchar_ornull *detail
GtkArrowType arrow_type
gboolean fill
gint x
gint y
gint width
gint height
## void gtk_paint_diamond (GtkStyle *style, GdkWindow *window, GtkStateType state_type, GtkShadowType shadow_type, GdkRectangle *area, GtkWidget *widget, const gchar *detail, gint x, gint y, gint width, gint height)
void
gtk_paint_diamond (style, window, state_type, shadow_type, area, widget, detail, x, y, width, height)
GtkStyle *style
GdkDrawable *window
GtkStateType state_type
GtkShadowType shadow_type
GdkRectangle_ornull *area
GtkWidget_ornull *widget
const gchar_ornull *detail
gint x
gint y
gint width
gint height
## void gtk_paint_box (GtkStyle *style, GdkWindow *window, GtkStateType state_type, GtkShadowType shadow_type, GdkRectangle *area, GtkWidget *widget, const gchar *detail, gint x, gint y, gint width, gint height)
void
gtk_paint_box (style, window, state_type, shadow_type, area, widget, detail, x, y, width, height)
GtkStyle *style
GdkDrawable *window
GtkStateType state_type
GtkShadowType shadow_type
GdkRectangle_ornull *area
GtkWidget_ornull *widget
const gchar_ornull *detail
gint x
gint y
gint width
gint height
## void gtk_paint_check (GtkStyle *style, GdkWindow *window, GtkStateType state_type, GtkShadowType shadow_type, GdkRectangle *area, GtkWidget *widget, const gchar *detail, gint x, gint y, gint width, gint height)
void
gtk_paint_check (style, window, state_type, shadow_type, area, widget, detail, x, y, width, height)
GtkStyle *style
GdkDrawable *window
GtkStateType state_type
GtkShadowType shadow_type
GdkRectangle_ornull *area
GtkWidget *widget
const gchar_ornull *detail
gint x
gint y
gint width
gint height
## void gtk_paint_option (GtkStyle *style, GdkWindow *window, GtkStateType state_type, GtkShadowType shadow_type, GdkRectangle *area, GtkWidget *widget, const gchar *detail, gint x, gint y, gint width, gint height)
void
gtk_paint_option (style, window, state_type, shadow_type, area, widget, detail, x, y, width, height)
GtkStyle *style
GdkDrawable *window
GtkStateType state_type
GtkShadowType shadow_type
GdkRectangle_ornull *area
GtkWidget *widget
const gchar_ornull *detail
gint x
gint y
gint width
gint height
## void gtk_paint_tab (GtkStyle *style, GdkWindow *window, GtkStateType state_type, GtkShadowType shadow_type, GdkRectangle *area, GtkWidget *widget, const gchar *detail, gint x, gint y, gint width, gint height)
void
gtk_paint_tab (style, window, state_type, shadow_type, area, widget, detail, x, y, width, height)
GtkStyle *style
GdkDrawable *window
GtkStateType state_type
GtkShadowType shadow_type
GdkRectangle_ornull *area
GtkWidget *widget
const gchar_ornull *detail
gint x
gint y
gint width
gint height
## void gtk_paint_shadow_gap (GtkStyle *style, GdkWindow *window, GtkStateType state_type, GtkShadowType shadow_type, GdkRectangle *area, GtkWidget *widget, gchar *detail, gint x, gint y, gint width, gint height, GtkPositionType gap_side, gint gap_x, gint gap_width)
void
gtk_paint_shadow_gap (style, window, state_type, shadow_type, area, widget, detail, x, y, width, height, gap_side, gap_x, gap_width)
GtkStyle *style
GdkDrawable *window
GtkStateType state_type
GtkShadowType shadow_type
GdkRectangle_ornull *area
GtkWidget_ornull *widget
gchar_ornull *detail
gint x
gint y
gint width
gint height
GtkPositionType gap_side
gint gap_x
gint gap_width
## void gtk_paint_box_gap (GtkStyle *style, GdkWindow *window, GtkStateType state_type, GtkShadowType shadow_type, GdkRectangle *area, GtkWidget *widget, gchar *detail, gint x, gint y, gint width, gint height, GtkPositionType gap_side, gint gap_x, gint gap_width)
void
gtk_paint_box_gap (style, window, state_type, shadow_type, area, widget, detail, x, y, width, height, gap_side, gap_x, gap_width)
GtkStyle *style
GdkDrawable *window
GtkStateType state_type
GtkShadowType shadow_type
GdkRectangle_ornull *area
GtkWidget_ornull *widget
gchar_ornull *detail
gint x
gint y
gint width
gint height
GtkPositionType gap_side
gint gap_x
gint gap_width
## void gtk_paint_extension (GtkStyle *style, GdkWindow *window, GtkStateType state_type, GtkShadowType shadow_type, GdkRectangle *area, GtkWidget *widget, gchar *detail, gint x, gint y, gint width, gint height, GtkPositionType gap_side)
void
gtk_paint_extension (style, window, state_type, shadow_type, area, widget, detail, x, y, width, height, gap_side)
GtkStyle *style
GdkDrawable *window
GtkStateType state_type
GtkShadowType shadow_type
GdkRectangle_ornull *area
GtkWidget_ornull *widget
gchar_ornull *detail
gint x
gint y
gint width
gint height
GtkPositionType gap_side
## void gtk_paint_focus (GtkStyle *style, GdkWindow *window, GtkStateType state_type, GdkRectangle *area, GtkWidget *widget, const gchar *detail, gint x, gint y, gint width, gint height)
void
gtk_paint_focus (style, window, state_type, area, widget, detail, x, y, width, height)
GtkStyle *style
GdkDrawable *window
GtkStateType state_type
GdkRectangle_ornull *area
GtkWidget_ornull *widget
const gchar_ornull *detail
gint x
gint y
gint width
gint height
## void gtk_paint_slider (GtkStyle *style, GdkWindow *window, GtkStateType state_type, GtkShadowType shadow_type, GdkRectangle *area, GtkWidget *widget, const gchar *detail, gint x, gint y, gint width, gint height, GtkOrientation orientation)
void
gtk_paint_slider (style, window, state_type, shadow_type, area, widget, detail, x, y, width, height, orientation)
GtkStyle *style
GdkDrawable *window
GtkStateType state_type
GtkShadowType shadow_type
GdkRectangle_ornull *area
GtkWidget_ornull *widget
const gchar_ornull *detail
gint x
gint y
gint width
gint height
GtkOrientation orientation
## void gtk_paint_handle (GtkStyle *style, GdkWindow *window, GtkStateType state_type, GtkShadowType shadow_type, GdkRectangle *area, GtkWidget *widget, const gchar *detail, gint x, gint y, gint width, gint height, GtkOrientation orientation)
void
gtk_paint_handle (style, window, state_type, shadow_type, area, widget, detail, x, y, width, height, orientation)
GtkStyle *style
GdkDrawable *window
GtkStateType state_type
GtkShadowType shadow_type
GdkRectangle_ornull *area
GtkWidget_ornull *widget
const gchar *detail
gint x
gint y
gint width
gint height
GtkOrientation orientation
## void gtk_paint_expander (GtkStyle *style, GdkWindow *window, GtkStateType state_type, GdkRectangle *area, GtkWidget *widget, const gchar *detail, gint x, gint y, GtkExpanderStyle expander_style)
void
gtk_paint_expander (style, window, state_type, area, widget, detail, x, y, expander_style)
GtkStyle *style
GdkDrawable *window
GtkStateType state_type
GdkRectangle_ornull *area
GtkWidget *widget
const gchar_ornull *detail
gint x
gint y
GtkExpanderStyle expander_style
## void gtk_paint_layout (GtkStyle *style, GdkWindow *window, GtkStateType state_type, gboolean use_text, GdkRectangle *area, GtkWidget *widget, const gchar *detail, gint x, gint y, PangoLayout *layout)
void
gtk_paint_layout (style, window, state_type, use_text, area, widget, detail, x, y, layout)
GtkStyle *style
GdkDrawable *window
GtkStateType state_type
gboolean use_text
GdkRectangle_ornull *area
GtkWidget_ornull *widget
const gchar_ornull *detail
gint x
gint y
PangoLayout *layout
## void gtk_paint_resize_grip (GtkStyle *style, GdkWindow *window, GtkStateType state_type, GdkRectangle *area, GtkWidget *widget, const gchar *detail, GdkWindowEdge edge, gint x, gint y, gint width, gint height)
void
gtk_paint_resize_grip (style, window, state_type, area, widget, detail, edge, x, y, width, height)
GtkStyle *style
GdkDrawable *window
GtkStateType state_type
GdkRectangle_ornull *area
GtkWidget_ornull *widget
const gchar_ornull *detail
GdkWindowEdge edge
gint x
gint y
gint width
gint height
MODULE = Gtk2::Style PACKAGE = Gtk2 PREFIX = gtk_
#if GTK_CHECK_VERSION (2, 4, 0)
=for object Gtk2::Style
=cut
void
gtk_draw_insertion_cursor (class, widget, drawable, area, location, is_primary, direction, draw_arrow)
GtkWidget *widget
GdkDrawable *drawable
GdkRectangle *area
GdkRectangle *location
gboolean is_primary
GtkTextDirection direction
gboolean draw_arrow
C_ARGS:
widget, drawable, area, location, is_primary, direction, draw_arrow
#endif
MODULE = Gtk2::Style PACKAGE = Gtk2::Style PREFIX = gtk_style_
#if GTK_CHECK_VERSION (2, 10, 0)
GdkColor_copy *
gtk_style_lookup_color (GtkStyle *style, const gchar *color_name)
PREINIT:
GdkColor color;
CODE:
if (!gtk_style_lookup_color (style, color_name, &color))
XSRETURN_UNDEF;
RETVAL = &color;
OUTPUT:
RETVAL
#endif
|