/usr/share/ada/adainclude/gtkada/gtk-image.ads is in libgtkada16.1.0-dev 17.0.2017-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 | ------------------------------------------------------------------------------
-- --
-- Copyright (C) 1998-2000 E. Briot, J. Brobecker and A. Charlet --
-- Copyright (C) 2000-2017, AdaCore --
-- --
-- This library is free software; you can redistribute it and/or modify it --
-- under terms of the GNU General Public License as published by the Free --
-- Software Foundation; either version 3, 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 MERCHAN- --
-- TABILITY or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- --
-- --
-- --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
------------------------------------------------------------------------------
-- <description>
-- The Gtk.Image.Gtk_Image widget displays an image. Various kinds of object
-- can be displayed as an image; most typically, you would load a
-- Gdk.Pixbuf.Gdk_Pixbuf ("pixel buffer") from a file, and then display that.
-- There's a convenience function to do this, Gtk.Image.Gtk_New, used as
-- follows: |[<!-- language="C" --> GtkWidget *image; image =
-- gtk_image_new_from_file ("myfile.png"); ]| If the file isn't loaded
-- successfully, the image will contain a "broken image" icon similar to that
-- used in many web browsers. If you want to handle errors in loading the file
-- yourself, for example by displaying an error message, then load the image
-- with Gdk.Pixbuf.Gdk_New_From_File, then create the Gtk.Image.Gtk_Image with
-- Gtk.Image.Gtk_New.
--
-- The image file may contain an animation, if so the Gtk.Image.Gtk_Image
-- will display an animation (Gdk_Pixbuf_Animation) instead of a static image.
--
-- Gtk.Image.Gtk_Image is a subclass of Gtk.Misc.Gtk_Misc, which implies that
-- you can align it (center, left, right) and add padding to it, using
-- Gtk.Misc.Gtk_Misc methods.
--
-- Gtk.Image.Gtk_Image is a "no window" widget (has no Gdk.Gdk_Window of its
-- own), so by default does not receive events. If you want to receive events
-- on the image, such as button clicks, place the image inside a
-- Gtk.Event_Box.Gtk_Event_Box, then connect to the event signals on the event
-- box.
--
-- ## Handling button press events on a Gtk.Image.Gtk_Image.
--
-- |[<!-- language="C" --> static gboolean button_press_callback (GtkWidget
-- *event_box, GdkEventButton *event, gpointer data) { g_print ("Event box
-- clicked at coordinates %f,%f\n", event->x, event->y);
--
-- // Returning TRUE means we handled the event, so the signal // emission
-- should be stopped (don't call any further callbacks // that may be
-- connected). Return FALSE to continue invoking callbacks. return TRUE; }
--
-- static GtkWidget* create_image (void) { GtkWidget *image; GtkWidget
-- *event_box;
--
-- image = gtk_image_new_from_file ("myfile.png");
--
-- event_box = gtk_event_box_new ();
--
-- gtk_container_add (GTK_CONTAINER (event_box), image);
--
-- g_signal_connect (G_OBJECT (event_box), "button_press_event", G_CALLBACK
-- (button_press_callback), image);
--
-- return image; } ]|
--
-- When handling events on the event box, keep in mind that coordinates in
-- the image may be different from event box coordinates due to the alignment
-- and padding settings on the image (see Gtk.Misc.Gtk_Misc). The simplest way
-- to solve this is to set the alignment to 0.0 (left/top), and set the
-- padding to zero. Then the origin of the image will be the same as the
-- origin of the event box.
--
-- Sometimes an application will want to avoid depending on external data
-- files, such as image files. GTK+ comes with a program to avoid this, called
-- "gdk-pixbuf-csource". This library allows you to convert an image into a C
-- variable declaration, which can then be loaded into a Gdk.Pixbuf.Gdk_Pixbuf
-- using gdk_pixbuf_new_from_inline.
--
-- </description>
-- <screenshot>gtk-image</screenshot>
-- <group>Display widgets</group>
pragma Ada_2005;
pragma Warnings (Off, "*is already use-visible*");
with Cairo; use Cairo;
with GNAT.Strings; use GNAT.Strings;
with Gdk.Pixbuf; use Gdk.Pixbuf;
with Glib; use Glib;
with Glib.G_Icon; use Glib.G_Icon;
with Glib.Generic_Properties; use Glib.Generic_Properties;
with Glib.Properties; use Glib.Properties;
with Glib.Types; use Glib.Types;
with Gtk.Buildable; use Gtk.Buildable;
with Gtk.Enums; use Gtk.Enums;
with Gtk.Icon_Set; use Gtk.Icon_Set;
with Gtk.Misc; use Gtk.Misc;
package Gtk.Image is
type Gtk_Image_Record is new Gtk_Misc_Record with null record;
type Gtk_Image is access all Gtk_Image_Record'Class;
type Gtk_Image_Type is (
Image_Empty,
Image_Pixbuf,
Image_Stock,
Image_Icon_Set,
Image_Animation,
Image_Icon_Name,
Image_Gicon,
Image_Surface);
pragma Convention (C, Gtk_Image_Type);
-- Describes the image data representation used by a Gtk.Image.Gtk_Image.
-- If you want to get the image from the widget, you can only get the
-- currently-stored representation. e.g. if the Gtk.Image.Get_Storage_Type
-- returns GTK_IMAGE_PIXBUF, then you can call Gtk.Image.Get but not Get.
-- For empty images, you can request any storage type (call any of the
-- "get" functions), but they will all return null values.
----------------------------
-- Enumeration Properties --
----------------------------
package Gtk_Image_Type_Properties is
new Generic_Internal_Discrete_Property (Gtk_Image_Type);
type Property_Gtk_Image_Type is new Gtk_Image_Type_Properties.Property;
------------------
-- Constructors --
------------------
procedure Gtk_New (Image : out Gtk_Image);
procedure Initialize (Image : not null access Gtk_Image_Record'Class);
-- Creates a new empty Gtk.Image.Gtk_Image widget.
-- Initialize does nothing if the object was already created with another
-- call to Initialize* or G_New.
function Gtk_Image_New return Gtk_Image;
-- Creates a new empty Gtk.Image.Gtk_Image widget.
procedure Gtk_New
(Image : out Gtk_Image;
Animation : Gdk.Pixbuf.Gdk_Pixbuf_Animation);
procedure Initialize
(Image : not null access Gtk_Image_Record'Class;
Animation : Gdk.Pixbuf.Gdk_Pixbuf_Animation);
-- Creates a Gtk.Image.Gtk_Image displaying the given animation. The
-- Gtk.Image.Gtk_Image does not assume a reference to the animation; you
-- still need to unref it if you own references. Gtk.Image.Gtk_Image will
-- add its own reference rather than adopting yours.
-- Note that the animation frames are shown using a timeout with
-- G_PRIORITY_DEFAULT. When using animations to indicate busyness, keep in
-- mind that the animation will only be shown if the main loop is not busy
-- with something that has a higher priority.
-- Initialize does nothing if the object was already created with another
-- call to Initialize* or G_New.
-- "animation": an animation
function Gtk_Image_New_From_Animation
(Animation : Gdk.Pixbuf.Gdk_Pixbuf_Animation) return Gtk_Image;
-- Creates a Gtk.Image.Gtk_Image displaying the given animation. The
-- Gtk.Image.Gtk_Image does not assume a reference to the animation; you
-- still need to unref it if you own references. Gtk.Image.Gtk_Image will
-- add its own reference rather than adopting yours.
-- Note that the animation frames are shown using a timeout with
-- G_PRIORITY_DEFAULT. When using animations to indicate busyness, keep in
-- mind that the animation will only be shown if the main loop is not busy
-- with something that has a higher priority.
-- "animation": an animation
procedure Gtk_New (Image : out Gtk_Image; Filename : UTF8_String);
procedure Initialize
(Image : not null access Gtk_Image_Record'Class;
Filename : UTF8_String);
-- Creates a new Gtk.Image.Gtk_Image displaying the file Filename. If the
-- file isn't found or can't be loaded, the resulting Gtk.Image.Gtk_Image
-- will display a "broken image" icon. This function never returns null, it
-- always returns a valid Gtk.Image.Gtk_Image widget.
-- If the file contains an animation, the image will contain an animation.
-- If you need to detect failures to load the file, use
-- Gdk.Pixbuf.Gdk_New_From_File to load the file yourself, then create the
-- Gtk.Image.Gtk_Image from the pixbuf. (Or for animations, use
-- Gdk.Pixbuf.Gdk_New_From_File).
-- The storage type (gtk_image_get_storage_type) of the returned image is
-- not defined, it will be whatever is appropriate for displaying the file.
-- Initialize does nothing if the object was already created with another
-- call to Initialize* or G_New.
-- "filename": a filename
function Gtk_Image_New_From_File
(Filename : UTF8_String) return Gtk_Image;
-- Creates a new Gtk.Image.Gtk_Image displaying the file Filename. If the
-- file isn't found or can't be loaded, the resulting Gtk.Image.Gtk_Image
-- will display a "broken image" icon. This function never returns null, it
-- always returns a valid Gtk.Image.Gtk_Image widget.
-- If the file contains an animation, the image will contain an animation.
-- If you need to detect failures to load the file, use
-- Gdk.Pixbuf.Gdk_New_From_File to load the file yourself, then create the
-- Gtk.Image.Gtk_Image from the pixbuf. (Or for animations, use
-- Gdk.Pixbuf.Gdk_New_From_File).
-- The storage type (gtk_image_get_storage_type) of the returned image is
-- not defined, it will be whatever is appropriate for displaying the file.
-- "filename": a filename
procedure Gtk_New_From_Gicon
(Image : out Gtk_Image;
Icon : Glib.G_Icon.G_Icon;
Size : Gtk.Enums.Gtk_Icon_Size);
procedure Initialize_From_Gicon
(Image : not null access Gtk_Image_Record'Class;
Icon : Glib.G_Icon.G_Icon;
Size : Gtk.Enums.Gtk_Icon_Size);
-- Creates a Gtk.Image.Gtk_Image displaying an icon from the current icon
-- theme. If the icon name isn't known, a "broken image" icon will be
-- displayed instead. If the current icon theme is changed, the icon will
-- be updated appropriately.
-- Since: gtk+ 2.14
-- Initialize_From_Gicon does nothing if the object was already created
-- with another call to Initialize* or G_New.
-- "icon": an icon
-- "size": a stock icon size
function Gtk_Image_New_From_Gicon
(Icon : Glib.G_Icon.G_Icon;
Size : Gtk.Enums.Gtk_Icon_Size) return Gtk_Image;
-- Creates a Gtk.Image.Gtk_Image displaying an icon from the current icon
-- theme. If the icon name isn't known, a "broken image" icon will be
-- displayed instead. If the current icon theme is changed, the icon will
-- be updated appropriately.
-- Since: gtk+ 2.14
-- "icon": an icon
-- "size": a stock icon size
procedure Gtk_New_From_Icon_Name
(Image : out Gtk_Image;
Icon_Name : UTF8_String;
Size : Gtk.Enums.Gtk_Icon_Size);
procedure Initialize_From_Icon_Name
(Image : not null access Gtk_Image_Record'Class;
Icon_Name : UTF8_String;
Size : Gtk.Enums.Gtk_Icon_Size);
-- Creates a Gtk.Image.Gtk_Image displaying an icon from the current icon
-- theme. If the icon name isn't known, a "broken image" icon will be
-- displayed instead. If the current icon theme is changed, the icon will
-- be updated appropriately.
-- Since: gtk+ 2.6
-- Initialize_From_Icon_Name does nothing if the object was already
-- created with another call to Initialize* or G_New.
-- "icon_name": an icon name
-- "size": a stock icon size
function Gtk_Image_New_From_Icon_Name
(Icon_Name : UTF8_String;
Size : Gtk.Enums.Gtk_Icon_Size) return Gtk_Image;
-- Creates a Gtk.Image.Gtk_Image displaying an icon from the current icon
-- theme. If the icon name isn't known, a "broken image" icon will be
-- displayed instead. If the current icon theme is changed, the icon will
-- be updated appropriately.
-- Since: gtk+ 2.6
-- "icon_name": an icon name
-- "size": a stock icon size
procedure Gtk_New
(Image : out Gtk_Image;
Icon_Set : Gtk.Icon_Set.Gtk_Icon_Set;
Size : Gtk.Enums.Gtk_Icon_Size);
procedure Initialize
(Image : not null access Gtk_Image_Record'Class;
Icon_Set : Gtk.Icon_Set.Gtk_Icon_Set;
Size : Gtk.Enums.Gtk_Icon_Size);
-- Creates a Gtk.Image.Gtk_Image displaying an icon set. Sample stock
-- sizes are GTK_ICON_SIZE_MENU, GTK_ICON_SIZE_SMALL_TOOLBAR. Instead of
-- using this function, usually it's better to create a
-- Gtk.Icon_Factory.Gtk_Icon_Factory, put your icon sets in the icon
-- factory, add the icon factory to the list of default factories with
-- Gtk.Icon_Factory.Add_Default, and then use Gtk.Image.Gtk_New. This will
-- allow themes to override the icon you ship with your application.
-- The Gtk.Image.Gtk_Image does not assume a reference to the icon set;
-- you still need to unref it if you own references. Gtk.Image.Gtk_Image
-- will add its own reference rather than adopting yours.
-- Initialize does nothing if the object was already created with another
-- call to Initialize* or G_New.
-- "icon_set": a Gtk.Icon_Set.Gtk_Icon_Set
-- "size": a stock icon size
function Gtk_Image_New_From_Icon_Set
(Icon_Set : Gtk.Icon_Set.Gtk_Icon_Set;
Size : Gtk.Enums.Gtk_Icon_Size) return Gtk_Image;
-- Creates a Gtk.Image.Gtk_Image displaying an icon set. Sample stock
-- sizes are GTK_ICON_SIZE_MENU, GTK_ICON_SIZE_SMALL_TOOLBAR. Instead of
-- using this function, usually it's better to create a
-- Gtk.Icon_Factory.Gtk_Icon_Factory, put your icon sets in the icon
-- factory, add the icon factory to the list of default factories with
-- Gtk.Icon_Factory.Add_Default, and then use Gtk.Image.Gtk_New. This will
-- allow themes to override the icon you ship with your application.
-- The Gtk.Image.Gtk_Image does not assume a reference to the icon set;
-- you still need to unref it if you own references. Gtk.Image.Gtk_Image
-- will add its own reference rather than adopting yours.
-- "icon_set": a Gtk.Icon_Set.Gtk_Icon_Set
-- "size": a stock icon size
procedure Gtk_New
(Image : out Gtk_Image;
Pixbuf : access Gdk.Pixbuf.Gdk_Pixbuf_Record'Class);
procedure Initialize
(Image : not null access Gtk_Image_Record'Class;
Pixbuf : access Gdk.Pixbuf.Gdk_Pixbuf_Record'Class);
-- Creates a new Gtk.Image.Gtk_Image displaying Pixbuf. The
-- Gtk.Image.Gtk_Image does not assume a reference to the pixbuf; you still
-- need to unref it if you own references. Gtk.Image.Gtk_Image will add its
-- own reference rather than adopting yours.
-- Note that this function just creates an Gtk.Image.Gtk_Image from the
-- pixbuf. The Gtk.Image.Gtk_Image created will not react to state changes.
-- Should you want that, you should use Gtk.Image.Gtk_New_From_Icon_Name.
-- Initialize does nothing if the object was already created with another
-- call to Initialize* or G_New.
-- "pixbuf": a Gdk.Pixbuf.Gdk_Pixbuf, or null
function Gtk_Image_New_From_Pixbuf
(Pixbuf : access Gdk.Pixbuf.Gdk_Pixbuf_Record'Class) return Gtk_Image;
-- Creates a new Gtk.Image.Gtk_Image displaying Pixbuf. The
-- Gtk.Image.Gtk_Image does not assume a reference to the pixbuf; you still
-- need to unref it if you own references. Gtk.Image.Gtk_Image will add its
-- own reference rather than adopting yours.
-- Note that this function just creates an Gtk.Image.Gtk_Image from the
-- pixbuf. The Gtk.Image.Gtk_Image created will not react to state changes.
-- Should you want that, you should use Gtk.Image.Gtk_New_From_Icon_Name.
-- "pixbuf": a Gdk.Pixbuf.Gdk_Pixbuf, or null
procedure Gtk_New_From_Resource
(Image : out Gtk_Image;
Resource_Path : UTF8_String);
procedure Initialize_From_Resource
(Image : not null access Gtk_Image_Record'Class;
Resource_Path : UTF8_String);
-- Creates a new Gtk.Image.Gtk_Image displaying the resource file
-- Resource_Path. If the file isn't found or can't be loaded, the resulting
-- Gtk.Image.Gtk_Image will display a "broken image" icon. This function
-- never returns null, it always returns a valid Gtk.Image.Gtk_Image
-- widget.
-- If the file contains an animation, the image will contain an animation.
-- If you need to detect failures to load the file, use
-- Gdk.Pixbuf.Gdk_New_From_File to load the file yourself, then create the
-- Gtk.Image.Gtk_Image from the pixbuf. (Or for animations, use
-- Gdk.Pixbuf.Gdk_New_From_File).
-- The storage type (gtk_image_get_storage_type) of the returned image is
-- not defined, it will be whatever is appropriate for displaying the file.
-- Since: gtk+ 3.4
-- Initialize_From_Resource does nothing if the object was already created
-- with another call to Initialize* or G_New.
-- "resource_path": a resource path
function Gtk_Image_New_From_Resource
(Resource_Path : UTF8_String) return Gtk_Image;
-- Creates a new Gtk.Image.Gtk_Image displaying the resource file
-- Resource_Path. If the file isn't found or can't be loaded, the resulting
-- Gtk.Image.Gtk_Image will display a "broken image" icon. This function
-- never returns null, it always returns a valid Gtk.Image.Gtk_Image
-- widget.
-- If the file contains an animation, the image will contain an animation.
-- If you need to detect failures to load the file, use
-- Gdk.Pixbuf.Gdk_New_From_File to load the file yourself, then create the
-- Gtk.Image.Gtk_Image from the pixbuf. (Or for animations, use
-- Gdk.Pixbuf.Gdk_New_From_File).
-- The storage type (gtk_image_get_storage_type) of the returned image is
-- not defined, it will be whatever is appropriate for displaying the file.
-- Since: gtk+ 3.4
-- "resource_path": a resource path
procedure Gtk_New
(Image : out Gtk_Image;
Stock_Id : UTF8_String;
Size : Gtk.Enums.Gtk_Icon_Size);
procedure Initialize
(Image : not null access Gtk_Image_Record'Class;
Stock_Id : UTF8_String;
Size : Gtk.Enums.Gtk_Icon_Size);
-- Creates a Gtk.Image.Gtk_Image displaying a stock icon. Sample stock
-- icon names are GTK_STOCK_OPEN, GTK_STOCK_QUIT. Sample stock sizes are
-- GTK_ICON_SIZE_MENU, GTK_ICON_SIZE_SMALL_TOOLBAR. If the stock icon name
-- isn't known, the image will be empty. You can register your own stock
-- icon names, see Gtk.Icon_Factory.Add_Default and Gtk.Icon_Factory.Add.
-- Initialize does nothing if the object was already created with another
-- call to Initialize* or G_New.
-- "stock_id": a stock icon name
-- "size": a stock icon size
function Gtk_Image_New_From_Stock
(Stock_Id : UTF8_String;
Size : Gtk.Enums.Gtk_Icon_Size) return Gtk_Image;
-- Creates a Gtk.Image.Gtk_Image displaying a stock icon. Sample stock
-- icon names are GTK_STOCK_OPEN, GTK_STOCK_QUIT. Sample stock sizes are
-- GTK_ICON_SIZE_MENU, GTK_ICON_SIZE_SMALL_TOOLBAR. If the stock icon name
-- isn't known, the image will be empty. You can register your own stock
-- icon names, see Gtk.Icon_Factory.Add_Default and Gtk.Icon_Factory.Add.
-- "stock_id": a stock icon name
-- "size": a stock icon size
procedure Gtk_New_From_Surface
(Image : out Gtk_Image;
Surface : Cairo.Cairo_Surface);
procedure Initialize_From_Surface
(Image : not null access Gtk_Image_Record'Class;
Surface : Cairo.Cairo_Surface);
-- Creates a new Gtk.Image.Gtk_Image displaying Surface. The
-- Gtk.Image.Gtk_Image does not assume a reference to the surface; you
-- still need to unref it if you own references. Gtk.Image.Gtk_Image will
-- add its own reference rather than adopting yours.
-- Since: gtk+ 3.10
-- Initialize_From_Surface does nothing if the object was already created
-- with another call to Initialize* or G_New.
-- "surface": a cairo_surface_t, or null
function Gtk_Image_New_From_Surface
(Surface : Cairo.Cairo_Surface) return Gtk_Image;
-- Creates a new Gtk.Image.Gtk_Image displaying Surface. The
-- Gtk.Image.Gtk_Image does not assume a reference to the surface; you
-- still need to unref it if you own references. Gtk.Image.Gtk_Image will
-- add its own reference rather than adopting yours.
-- Since: gtk+ 3.10
-- "surface": a cairo_surface_t, or null
function Get_Type return Glib.GType;
pragma Import (C, Get_Type, "gtk_image_get_type");
-------------
-- Methods --
-------------
procedure Clear (Image : not null access Gtk_Image_Record);
-- Resets the image to be empty.
-- Since: gtk+ 2.8
function Get
(Image : not null access Gtk_Image_Record)
return Gdk.Pixbuf.Gdk_Pixbuf_Animation;
-- Gets the Gdk_Pixbuf_Animation being displayed by the
-- Gtk.Image.Gtk_Image. The storage type of the image must be
-- Gtk.Image.Image_Empty or Gtk.Image.Image_Animation (see
-- Gtk.Image.Get_Storage_Type). The caller of this function does not own a
-- reference to the returned animation.
procedure Get
(Image : not null access Gtk_Image_Record;
G_Icon : out Glib.G_Icon.G_Icon;
Size : out Gtk.Enums.Gtk_Icon_Size);
-- Gets the Glib.G_Icon.G_Icon and size being displayed by the
-- Gtk.Image.Gtk_Image. The storage type of the image must be
-- Gtk.Image.Image_Empty or Gtk.Image.Image_Gicon (see
-- Gtk.Image.Get_Storage_Type). The caller of this function does not own a
-- reference to the returned Glib.G_Icon.G_Icon.
-- Since: gtk+ 2.14
-- "gicon": place to store a Glib.G_Icon.G_Icon, or null
-- "size": place to store an icon size, or null
procedure Get
(Image : not null access Gtk_Image_Record;
Icon_Set : out Gtk.Icon_Set.Gtk_Icon_Set;
Size : out Gtk.Enums.Gtk_Icon_Size);
pragma Obsolescent (Get);
-- Gets the icon set and size being displayed by the Gtk.Image.Gtk_Image.
-- The storage type of the image must be Gtk.Image.Image_Empty or
-- Gtk.Image.Image_Icon_Set (see Gtk.Image.Get_Storage_Type).
-- Deprecated since 3.10, 1
-- "icon_set": location to store a Gtk.Icon_Set.Gtk_Icon_Set, or null
-- "size": location to store a stock icon size, or null
function Get
(Image : not null access Gtk_Image_Record)
return Gdk.Pixbuf.Gdk_Pixbuf;
-- Gets the Gdk.Pixbuf.Gdk_Pixbuf being displayed by the
-- Gtk.Image.Gtk_Image. The storage type of the image must be
-- Gtk.Image.Image_Empty or Gtk.Image.Image_Pixbuf (see
-- Gtk.Image.Get_Storage_Type). The caller of this function does not own a
-- reference to the returned pixbuf.
function Get_Pixel_Size
(Image : not null access Gtk_Image_Record) return Gint;
-- Gets the pixel size used for named icons.
-- Since: gtk+ 2.6
procedure Set_Pixel_Size
(Image : not null access Gtk_Image_Record;
Pixel_Size : Gint);
-- Sets the pixel size to use for named icons. If the pixel size is set to
-- a value != -1, it is used instead of the icon size set by
-- Gtk.Image.Set_From_Icon_Name.
-- Since: gtk+ 2.6
-- "pixel_size": the new pixel size
function Get_Storage_Type
(Image : not null access Gtk_Image_Record) return Gtk_Image_Type;
-- Gets the type of representation being used by the Gtk.Image.Gtk_Image
-- to store image data. If the Gtk.Image.Gtk_Image has no image data, the
-- return value will be Gtk.Image.Image_Empty.
procedure Set
(Image : not null access Gtk_Image_Record;
Animation : Gdk.Pixbuf.Gdk_Pixbuf_Animation);
-- Causes the Gtk.Image.Gtk_Image to display the given animation (or
-- display nothing, if you set the animation to null).
-- "animation": the Gdk_Pixbuf_Animation
procedure Set
(Image : not null access Gtk_Image_Record;
Filename : UTF8_String := "");
-- See Gtk.Image.Gtk_New for details.
-- "filename": a filename or null
procedure Set
(Image : not null access Gtk_Image_Record;
Icon : Glib.G_Icon.G_Icon;
Size : Gtk.Enums.Gtk_Icon_Size);
-- See Gtk.Image.Gtk_New_From_Gicon for details.
-- Since: gtk+ 2.14
-- "icon": an icon
-- "size": an icon size
procedure Set
(Image : not null access Gtk_Image_Record;
Icon_Set : Gtk.Icon_Set.Gtk_Icon_Set;
Size : Gtk.Enums.Gtk_Icon_Size);
pragma Obsolescent (Set);
-- See Gtk.Image.Gtk_New for details.
-- Deprecated since 3.10, 1
-- "icon_set": a Gtk.Icon_Set.Gtk_Icon_Set
-- "size": a stock icon size
procedure Set
(Image : not null access Gtk_Image_Record;
Pixbuf : access Gdk.Pixbuf.Gdk_Pixbuf_Record'Class);
-- See Gtk.Image.Gtk_New for details.
-- "pixbuf": a Gdk.Pixbuf.Gdk_Pixbuf or null
procedure Set
(Image : not null access Gtk_Image_Record;
Stock_Id : UTF8_String;
Size : Gtk.Enums.Gtk_Icon_Size);
pragma Obsolescent (Set);
-- See Gtk.Image.Gtk_New for details.
-- Deprecated since 3.10, 1
-- "stock_id": a stock icon name
-- "size": a stock icon size
procedure Set_From_Icon_Name
(Image : not null access Gtk_Image_Record;
Icon_Name : UTF8_String;
Size : Gtk.Enums.Gtk_Icon_Size);
-- See Gtk.Image.Gtk_New_From_Icon_Name for details.
-- Since: gtk+ 2.6
-- "icon_name": an icon name
-- "size": an icon size
procedure Set_From_Resource
(Image : not null access Gtk_Image_Record;
Resource_Path : UTF8_String := "");
-- See Gtk.Image.Gtk_New_From_Resource for details.
-- "resource_path": a resource path or null
procedure Set_From_Surface
(Image : not null access Gtk_Image_Record;
Surface : Cairo.Cairo_Surface);
-- See Gtk.Image.Gtk_New_From_Surface for details.
-- Since: gtk+ 3.10
-- "surface": a cairo_surface_t
----------------------
-- GtkAda additions --
----------------------
function Get
(Image : access Gtk_Image_Record;
Size : access Gtk.Enums.Gtk_Icon_Size) return String;
-- Get the stock_id for the image displayed
procedure Get_Icon_Name
(Image : access Gtk_Image_Record;
Name : out GNAT.Strings.String_Access;
Size : out Gtk.Enums.Gtk_Icon_Size);
----------------
-- Properties --
----------------
-- The following properties are defined for this widget. See
-- Glib.Properties for more information on properties)
File_Property : constant Glib.Properties.Property_String;
G_Icon_Property : constant Glib.Properties.Property_Boxed;
-- Type: Glib.G_Icon.G_Icon
-- The GIcon displayed in the GtkImage. For themed icons, If the icon
-- theme is changed, the image will be updated automatically.
Icon_Name_Property : constant Glib.Properties.Property_String;
-- The name of the icon in the icon theme. If the icon theme is changed,
-- the image will be updated automatically.
Icon_Set_Property : constant Glib.Properties.Property_Object;
-- Type: Gtk.Icon_Set.Gtk_Icon_Set
Icon_Size_Property : constant Glib.Properties.Property_Int;
Pixbuf_Property : constant Glib.Properties.Property_Object;
-- Type: Gdk.Pixbuf.Gdk_Pixbuf
Pixbuf_Animation_Property : constant Glib.Properties.Property_Boxed;
-- Type: Gdk.Pixbuf.Gdk_Pixbuf_Animation
Pixel_Size_Property : constant Glib.Properties.Property_Int;
-- The "pixel-size" property can be used to specify a fixed size
-- overriding the Gtk.Image.Gtk_Image:icon-size property for images of type
-- Gtk.Image.Image_Icon_Name.
Resource_Property : constant Glib.Properties.Property_String;
-- A path to a resource file to display.
Stock_Property : constant Glib.Properties.Property_String;
Storage_Type_Property : constant Gtk.Image.Property_Gtk_Image_Type;
-- Type: Gtk_Image_Type
Surface_Property : constant Glib.Properties.Property_Boxed;
-- Type: Cairo.Cairo_Surface
Use_Fallback_Property : constant Glib.Properties.Property_Boolean;
-- Whether the icon displayed in the GtkImage will use standard icon names
-- fallback. The value of this property is only relevant for images of type
-- Gtk.Image.Image_Icon_Name and Gtk.Image.Image_Gicon.
----------------
-- Interfaces --
----------------
-- This class implements several interfaces. See Glib.Types
--
-- - "Buildable"
package Implements_Gtk_Buildable is new Glib.Types.Implements
(Gtk.Buildable.Gtk_Buildable, Gtk_Image_Record, Gtk_Image);
function "+"
(Widget : access Gtk_Image_Record'Class)
return Gtk.Buildable.Gtk_Buildable
renames Implements_Gtk_Buildable.To_Interface;
function "-"
(Interf : Gtk.Buildable.Gtk_Buildable)
return Gtk_Image
renames Implements_Gtk_Buildable.To_Object;
private
Use_Fallback_Property : constant Glib.Properties.Property_Boolean :=
Glib.Properties.Build ("use-fallback");
Surface_Property : constant Glib.Properties.Property_Boxed :=
Glib.Properties.Build ("surface");
Storage_Type_Property : constant Gtk.Image.Property_Gtk_Image_Type :=
Gtk.Image.Build ("storage-type");
Stock_Property : constant Glib.Properties.Property_String :=
Glib.Properties.Build ("stock");
Resource_Property : constant Glib.Properties.Property_String :=
Glib.Properties.Build ("resource");
Pixel_Size_Property : constant Glib.Properties.Property_Int :=
Glib.Properties.Build ("pixel-size");
Pixbuf_Animation_Property : constant Glib.Properties.Property_Boxed :=
Glib.Properties.Build ("pixbuf-animation");
Pixbuf_Property : constant Glib.Properties.Property_Object :=
Glib.Properties.Build ("pixbuf");
Icon_Size_Property : constant Glib.Properties.Property_Int :=
Glib.Properties.Build ("icon-size");
Icon_Set_Property : constant Glib.Properties.Property_Object :=
Glib.Properties.Build ("icon-set");
Icon_Name_Property : constant Glib.Properties.Property_String :=
Glib.Properties.Build ("icon-name");
G_Icon_Property : constant Glib.Properties.Property_Boxed :=
Glib.Properties.Build ("gicon");
File_Property : constant Glib.Properties.Property_String :=
Glib.Properties.Build ("file");
end Gtk.Image;
|