/usr/share/ada/adainclude/gtkada/gtk-toolbar.adb is in libgtkada2.24.1-dev 2.24.1-14.
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 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 | -----------------------------------------------------------------------
-- GtkAda - Ada95 binding for Gtk+/Gnome --
-- --
-- Copyright (C) 1998-2000 E. Briot, J. Brobecker and A. Charlet --
-- Copyright (C) 2000-2008, AdaCore --
-- --
-- This library is free software; you can redistribute it and/or --
-- modify it under the terms of the GNU 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 --
-- General Public License for more details. --
-- --
-- You should have received a copy of the GNU 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. --
-- --
-----------------------------------------------------------------------
with System;
with Gtk.Tool_Item; use Gtk.Tool_Item;
with Glib.Type_Conversion_Hooks;
package body Gtk.Toolbar is
package Type_Conversion is new Glib.Type_Conversion_Hooks.Hook_Registrator
(Get_Type'Access, Gtk_Toolbar_Record);
pragma Warnings (Off, Type_Conversion);
use type Gtk.Widget.Gtk_Widget;
--------------------
-- Append_Element --
--------------------
function Append_Element
(Toolbar : access Gtk_Toolbar_Record;
The_Type : Gtk_Toolbar_Child_Type;
Widget : Gtk.Widget.Gtk_Widget := null;
Text : UTF8_String := "";
Tooltip_Text : UTF8_String := "";
Tooltip_Private_Text : UTF8_String := "";
Icon : Gtk.Widget.Gtk_Widget := null)
return Gtk.Widget.Gtk_Widget
is
function Internal
(Toolbar : System.Address;
The_Type : Gtk_Toolbar_Child_Type;
Widget : System.Address;
Text : System.Address;
Tooltip_Text : System.Address;
Tooltip_Private_Text : System.Address;
Icon : System.Address;
Callback : System.Address;
User_Data : System.Address) return System.Address;
pragma Import (C, Internal, "gtk_toolbar_append_element");
T : aliased constant UTF8_String := Text & ASCII.NUL;
TA : System.Address := T'Address;
TT : aliased constant UTF8_String := Tooltip_Text & ASCII.NUL;
TTA : System.Address := TT'Address;
TPT : aliased constant UTF8_String := Tooltip_Private_Text & ASCII.NUL;
TPTA : System.Address := TPT'Address;
W : System.Address;
I : System.Address;
begin
if Text'Length = 0 then
TA := System.Null_Address;
end if;
if Tooltip_Text'Length = 0 then
TTA := System.Null_Address;
end if;
if Tooltip_Private_Text'Length = 0 then
TPTA := System.Null_Address;
end if;
if Widget = null then
W := System.Null_Address;
else
W := Get_Object (Widget);
end if;
if Icon = null then
I := System.Null_Address;
else
I := Get_Object (Icon);
end if;
return Gtk.Widget.Convert
(Internal
(Get_Object (Toolbar),
The_Type,
W, TA, TTA, TPTA, I, System.Null_Address,
System.Null_Address));
end Append_Element;
-----------------
-- Append_Item --
-----------------
function Append_Item
(Toolbar : access Gtk_Toolbar_Record;
Text : UTF8_String := "";
Tooltip_Text : UTF8_String := "";
Tooltip_Private_Text : UTF8_String := "";
Icon : Gtk.Widget.Gtk_Widget := null)
return Gtk.Button.Gtk_Button
is
function Internal
(Toolbar : System.Address;
Text : System.Address;
Tooltip_Text : System.Address;
Tooltip_Private_Text : System.Address;
Icon : System.Address;
Callback : System.Address;
User_Data : System.Address)
return System.Address;
pragma Import (C, Internal, "gtk_toolbar_append_item");
Stub : Gtk.Button.Gtk_Button_Record;
T : aliased constant UTF8_String := Text & ASCII.NUL;
TA : System.Address := T'Address;
TT : aliased constant UTF8_String := Tooltip_Text & ASCII.NUL;
TTA : System.Address := TT'Address;
TPT : aliased constant UTF8_String := Tooltip_Private_Text & ASCII.NUL;
TPTA : System.Address := TPT'Address;
I : System.Address;
begin
if Text'Length = 0 then
TA := System.Null_Address;
end if;
if Tooltip_Text'Length = 0 then
TTA := System.Null_Address;
end if;
if Tooltip_Private_Text'Length = 0 then
TPTA := System.Null_Address;
end if;
if Icon = null then
I := System.Null_Address;
else
I := Get_Object (Icon);
end if;
return Gtk.Button.Gtk_Button
(Get_User_Data (Internal (Get_Object (Toolbar),
TA, TTA, TPTA, I, System.Null_Address,
System.Null_Address),
Stub));
end Append_Item;
------------------
-- Append_Space --
------------------
procedure Append_Space (Toolbar : access Gtk_Toolbar_Record) is
procedure Internal (Toolbar : System.Address);
pragma Import (C, Internal, "gtk_toolbar_append_space");
begin
Internal (Get_Object (Toolbar));
end Append_Space;
-------------------
-- Append_Widget --
-------------------
procedure Append_Widget
(Toolbar : access Gtk_Toolbar_Record;
Widget : access Gtk.Widget.Gtk_Widget_Record'Class;
Tooltip_Text : UTF8_String := "";
Tooltip_Private_Text : UTF8_String := "")
is
procedure Internal
(Toolbar : System.Address;
Widget : System.Address;
Tooltip_Text : System.Address;
Tooltip_Private_Text : System.Address);
pragma Import (C, Internal, "gtk_toolbar_append_widget");
TT : aliased constant UTF8_String := Tooltip_Text & ASCII.NUL;
TTA : System.Address := TT'Address;
TPT : aliased constant UTF8_String := Tooltip_Private_Text & ASCII.NUL;
TPTA : System.Address := TPT'Address;
begin
if Tooltip_Text'Length = 0 then
TTA := System.Null_Address;
end if;
if Tooltip_Private_Text'Length = 0 then
TPTA := System.Null_Address;
end if;
Internal (Get_Object (Toolbar), Get_Object (Widget), TTA, TPTA);
end Append_Widget;
---------------------
-- Get_Orientation --
---------------------
function Get_Orientation
(Toolbar : access Gtk_Toolbar_Record) return Gtk_Orientation
is
function Internal (Toolbar : System.Address) return Gtk_Orientation;
pragma Import (C, Internal, "gtk_toolbar_get_orientation");
begin
return Internal (Get_Object (Toolbar));
end Get_Orientation;
---------------
-- Get_Style --
---------------
function Get_Style
(Toolbar : access Gtk_Toolbar_Record) return Gtk_Toolbar_Style
is
function Internal (Toolbar : System.Address) return Gtk_Toolbar_Style;
pragma Import (C, Internal, "gtk_toolbar_get_style");
begin
return Internal (Get_Object (Toolbar));
end Get_Style;
-------------------
-- Get_Icon_Size --
-------------------
function Get_Icon_Size
(Toolbar : access Gtk_Toolbar_Record) return Gtk_Icon_Size
is
function Internal (Toolbar : System.Address) return Gtk_Icon_Size;
pragma Import (C, Internal, "gtk_toolbar_get_icon_size");
begin
return Internal (Get_Object (Toolbar));
end Get_Icon_Size;
------------------
-- Get_Tooltips --
------------------
function Get_Tooltips
(Toolbar : access Gtk_Toolbar_Record) return Boolean
is
function Internal (Toolbar : System.Address) return Gboolean;
pragma Import (C, Internal, "gtk_toolbar_get_tooltips");
begin
return Internal (Get_Object (Toolbar)) /= 0;
end Get_Tooltips;
-------------
-- Gtk_New --
-------------
procedure Gtk_New (Widget : out Gtk_Toolbar) is
begin
Widget := new Gtk_Toolbar_Record;
Gtk.Toolbar.Initialize (Widget);
end Gtk_New;
-------------
-- Gtk_New --
-------------
procedure Gtk_New
(Widget : out Gtk_Toolbar;
Orientation : Gtk_Orientation;
Style : Gtk_Toolbar_Style) is
begin
Widget := new Gtk_Toolbar_Record;
pragma Warnings (Off);
Initialize (Widget, Orientation, Style);
pragma Warnings (On);
end Gtk_New;
----------------
-- Initialize --
----------------
procedure Initialize (Widget : access Gtk_Toolbar_Record'Class)
is
function Internal return System.Address;
pragma Import (C, Internal, "gtk_toolbar_new");
begin
Set_Object (Widget, Internal);
end Initialize;
----------------
-- Initialize --
----------------
procedure Initialize
(Widget : access Gtk_Toolbar_Record'Class;
Orientation : Gtk_Orientation;
Style : Gtk_Toolbar_Style) is
begin
Gtk.Toolbar.Initialize (Widget);
Set_Orientation (Widget, Orientation);
Set_Style (Widget, Style);
end Initialize;
--------------------
-- Insert_Element --
--------------------
function Insert_Element
(Toolbar : access Gtk_Toolbar_Record;
The_Type : Gtk_Toolbar_Child_Type;
Widget : access Gtk.Widget.Gtk_Widget_Record'Class;
Text : UTF8_String := "";
Tooltip_Text : UTF8_String := "";
Tooltip_Private_Text : UTF8_String := "";
Icon : Gtk.Widget.Gtk_Widget := null;
Position : Gint) return Gtk.Widget.Gtk_Widget
is
function Internal
(Toolbar : System.Address;
The_Type : Gtk_Toolbar_Child_Type;
Widget : System.Address;
Text : System.Address;
Tooltip_Text : System.Address;
Tooltip_Private_Text : System.Address;
Icon : System.Address;
Callback : System.Address;
User_Data : System.Address;
Position : Gint) return System.Address;
pragma Import (C, Internal, "gtk_toolbar_insert_element");
T : aliased constant UTF8_String := Text & ASCII.NUL;
TA : System.Address := T'Address;
TT : aliased constant UTF8_String := Tooltip_Text & ASCII.NUL;
TTA : System.Address := TT'Address;
TPT : aliased constant UTF8_String := Tooltip_Private_Text & ASCII.NUL;
TPTA : System.Address := TPT'Address;
I : System.Address;
begin
if Text'Length = 0 then
TA := System.Null_Address;
end if;
if Tooltip_Text'Length = 0 then
TTA := System.Null_Address;
end if;
if Tooltip_Private_Text'Length = 0 then
TPTA := System.Null_Address;
end if;
if Icon = null then
I := System.Null_Address;
else
I := Get_Object (Icon);
end if;
return Gtk.Widget.Convert
(Internal
(Get_Object (Toolbar),
The_Type,
Get_Object (Widget),
TA, TTA, TPTA, I,
System.Null_Address,
System.Null_Address,
Position));
end Insert_Element;
-----------------
-- Insert_Item --
-----------------
function Insert_Item
(Toolbar : access Gtk_Toolbar_Record;
Text : UTF8_String := "";
Tooltip_Text : UTF8_String := "";
Tooltip_Private_Text : UTF8_String := "";
Icon : Gtk.Widget.Gtk_Widget := null;
Position : Gint) return Gtk.Button.Gtk_Button
is
function Internal
(Toolbar : System.Address;
Text : System.Address;
Tooltip_Text : System.Address;
Tooltip_Private_Text : System.Address;
Icon : System.Address;
Callback : System.Address;
User_Data : System.Address;
Position : Gint) return System.Address;
pragma Import (C, Internal, "gtk_toolbar_insert_item");
Stub : Gtk.Button.Gtk_Button_Record;
T : aliased constant UTF8_String := Text & ASCII.NUL;
TA : System.Address := T'Address;
TT : aliased constant UTF8_String := Tooltip_Text & ASCII.NUL;
TTA : System.Address := TT'Address;
TPT : aliased constant UTF8_String := Tooltip_Private_Text & ASCII.NUL;
TPTA : System.Address := TPT'Address;
I : System.Address;
begin
if Text'Length = 0 then
TA := System.Null_Address;
end if;
if Tooltip_Text'Length = 0 then
TTA := System.Null_Address;
end if;
if Tooltip_Private_Text'Length = 0 then
TPTA := System.Null_Address;
end if;
if Icon = null then
I := System.Null_Address;
else
I := Get_Object (Icon);
end if;
return Gtk.Button.Gtk_Button
(Get_User_Data
(Internal
(Get_Object (Toolbar),
TA, TTA, TPTA, I,
System.Null_Address, System.Null_Address,
Position),
Stub));
end Insert_Item;
------------------
-- Insert_Space --
------------------
procedure Insert_Space
(Toolbar : access Gtk_Toolbar_Record; Position : Gint)
is
procedure Internal (Toolbar : System.Address; Position : Gint);
pragma Import (C, Internal, "gtk_toolbar_insert_space");
begin
Internal (Get_Object (Toolbar), Position);
end Insert_Space;
------------------
-- Remove_Space --
------------------
procedure Remove_Space
(Toolbar : access Gtk_Toolbar_Record; Position : Gint)
is
procedure Internal (Toolbar : System.Address; Position : Gint);
pragma Import (C, Internal, "gtk_toolbar_remove_space");
begin
Internal (Get_Object (Toolbar), Position);
end Remove_Space;
------------------
-- Insert_Stock --
------------------
function Insert_Stock
(Toolbar : access Gtk_Toolbar_Record;
Stock_Id : String;
Tooltip_Text : UTF8_String := "";
Tooltip_Private_Text : UTF8_String := "";
Position : Gint := -1) return Gtk.Button.Gtk_Button
is
function Internal
(Toolbar : System.Address;
Stock_Id : String;
Tooltip_Text : System.Address;
Tooltip_Private_Text : System.Address;
Callback : System.Address;
User_Data : System.Address;
Position : Gint) return System.Address;
pragma Import (C, Internal, "gtk_toolbar_insert_stock");
Stub : Gtk.Button.Gtk_Button_Record;
TT : aliased constant UTF8_String := Tooltip_Text & ASCII.NUL;
TTA : System.Address := TT'Address;
TPT : aliased constant UTF8_String := Tooltip_Private_Text & ASCII.NUL;
TPTA : System.Address := TPT'Address;
begin
if Tooltip_Text'Length = 0 then
TTA := System.Null_Address;
end if;
if Tooltip_Private_Text'Length = 0 then
TPTA := System.Null_Address;
end if;
return Gtk.Button.Gtk_Button
(Get_User_Data (Internal (Get_Object (Toolbar),
Stock_Id & ASCII.NUL, TTA, TPTA,
System.Null_Address, System.Null_Address, Position),
Stub));
end Insert_Stock;
-------------------
-- Insert_Widget --
-------------------
procedure Insert_Widget
(Toolbar : access Gtk_Toolbar_Record;
Widget : access Gtk.Widget.Gtk_Widget_Record'Class;
Tooltip_Text : UTF8_String := "";
Tooltip_Private_Text : UTF8_String := "";
Position : Gint)
is
procedure Internal
(Toolbar : System.Address;
Widget : System.Address;
Tooltip_Text : System.Address;
Tooltip_Private_Text : System.Address;
Position : Gint);
pragma Import (C, Internal, "gtk_toolbar_insert_widget");
TT : aliased constant UTF8_String := Tooltip_Text & ASCII.NUL;
TTA : System.Address := TT'Address;
TPT : aliased constant UTF8_String := Tooltip_Private_Text & ASCII.NUL;
TPTA : System.Address := TPT'Address;
begin
if Tooltip_Text'Length = 0 then
TTA := System.Null_Address;
end if;
if Tooltip_Private_Text'Length = 0 then
TPTA := System.Null_Address;
end if;
Internal
(Get_Object (Toolbar), Get_Object (Widget), TTA, TPTA, Position);
end Insert_Widget;
---------------------
-- Prepend_Element --
---------------------
function Prepend_Element
(Toolbar : access Gtk_Toolbar_Record;
The_Type : Gtk_Toolbar_Child_Type;
Widget : access Gtk.Widget.Gtk_Widget_Record'Class;
Text : UTF8_String := "";
Tooltip_Text : UTF8_String := "";
Tooltip_Private_Text : UTF8_String := "";
Icon : Gtk.Widget.Gtk_Widget := null)
return Gtk.Widget.Gtk_Widget
is
function Internal
(Toolbar : System.Address;
The_Type : Gtk_Toolbar_Child_Type;
Widget : System.Address;
Text : System.Address;
Tooltip_Text : System.Address;
Tooltip_Private_Text : System.Address;
Icon : System.Address;
Callback : System.Address;
User_Data : System.Address) return System.Address;
pragma Import (C, Internal, "gtk_toolbar_prepend_element");
T : aliased constant UTF8_String := Text & ASCII.NUL;
TA : System.Address := T'Address;
TT : aliased constant UTF8_String := Tooltip_Text & ASCII.NUL;
TTA : System.Address := TT'Address;
TPT : aliased constant UTF8_String := Tooltip_Private_Text & ASCII.NUL;
TPTA : System.Address := TPT'Address;
I : System.Address;
begin
if Text'Length = 0 then
TA := System.Null_Address;
end if;
if Tooltip_Text'Length = 0 then
TTA := System.Null_Address;
end if;
if Tooltip_Private_Text'Length = 0 then
TPTA := System.Null_Address;
end if;
if Icon = null then
I := System.Null_Address;
else
I := Get_Object (Icon);
end if;
return Gtk.Widget.Convert
(Internal
(Get_Object (Toolbar),
The_Type,
Get_Object (Widget),
TA, TTA, TPTA, I,
System.Null_Address, System.Null_Address));
end Prepend_Element;
------------------
-- Prepend_Item --
------------------
function Prepend_Item
(Toolbar : access Gtk_Toolbar_Record;
Text : UTF8_String := "";
Tooltip_Text : UTF8_String := "";
Tooltip_Private_Text : UTF8_String := "";
Icon : Gtk.Widget.Gtk_Widget := null)
return Gtk.Button.Gtk_Button
is
function Internal
(Toolbar : System.Address;
Text : System.Address;
Tooltip_Text : System.Address;
Tooltip_Private_Text : System.Address;
Icon : System.Address;
Callback : System.Address;
User_Data : System.Address)
return System.Address;
pragma Import (C, Internal, "gtk_toolbar_prepend_item");
Stub : Gtk.Button.Gtk_Button_Record;
T : aliased constant UTF8_String := Text & ASCII.NUL;
TA : System.Address := T'Address;
TT : aliased constant UTF8_String := Tooltip_Text & ASCII.NUL;
TTA : System.Address := TT'Address;
TPT : aliased constant UTF8_String := Tooltip_Private_Text & ASCII.NUL;
TPTA : System.Address := TPT'Address;
I : System.Address;
begin
if Text'Length = 0 then
TA := System.Null_Address;
end if;
if Tooltip_Text'Length = 0 then
TTA := System.Null_Address;
end if;
if Tooltip_Private_Text'Length = 0 then
TPTA := System.Null_Address;
end if;
if Icon = null then
I := System.Null_Address;
else
I := Get_Object (Icon);
end if;
return Gtk.Button.Gtk_Button
(Get_User_Data
(Internal
(Get_Object (Toolbar),
TA, TTA, TPTA, I,
System.Null_Address, System.Null_Address),
Stub));
end Prepend_Item;
-------------------
-- Prepend_Space --
-------------------
procedure Prepend_Space (Toolbar : access Gtk_Toolbar_Record) is
procedure Internal (Toolbar : System.Address);
pragma Import (C, Internal, "gtk_toolbar_prepend_space");
begin
Internal (Get_Object (Toolbar));
end Prepend_Space;
--------------------
-- Prepend_Widget --
--------------------
procedure Prepend_Widget
(Toolbar : access Gtk_Toolbar_Record;
Widget : access Gtk.Widget.Gtk_Widget_Record'Class;
Tooltip_Text : UTF8_String := "";
Tooltip_Private_Text : UTF8_String := "")
is
procedure Internal
(Toolbar : System.Address;
Widget : System.Address;
Tooltip_Text : System.Address;
Tooltip_Private_Text : System.Address);
pragma Import (C, Internal, "gtk_toolbar_prepend_widget");
TT : aliased constant UTF8_String := Tooltip_Text & ASCII.NUL;
TTA : System.Address := TT'Address;
TPT : aliased constant UTF8_String := Tooltip_Private_Text & ASCII.NUL;
TPTA : System.Address := TPT'Address;
begin
if Tooltip_Text'Length = 0 then
TTA := System.Null_Address;
end if;
if Tooltip_Private_Text'Length = 0 then
TPTA := System.Null_Address;
end if;
Internal (Get_Object (Toolbar), Get_Object (Widget), TTA, TPTA);
end Prepend_Widget;
-------------------
-- Set_Icon_Size --
-------------------
procedure Set_Icon_Size
(Toolbar : access Gtk_Toolbar_Record;
Icon_Size : Gtk_Icon_Size)
is
procedure Internal
(Toolbar : System.Address; Icon_Size : Gtk_Icon_Size);
pragma Import (C, Internal, "gtk_toolbar_set_icon_size");
begin
Internal (Get_Object (Toolbar), Icon_Size);
end Set_Icon_Size;
---------------------
-- Set_Orientation --
---------------------
procedure Set_Orientation
(Toolbar : access Gtk_Toolbar_Record;
Orientation : Gtk_Orientation)
is
procedure Internal
(Toolbar : System.Address;
Orientation : Gtk_Orientation);
pragma Import (C, Internal, "gtk_toolbar_set_orientation");
begin
Internal (Get_Object (Toolbar), Orientation);
end Set_Orientation;
---------------
-- Set_Style --
---------------
procedure Set_Style
(Toolbar : access Gtk_Toolbar_Record;
Style : Gtk_Toolbar_Style)
is
procedure Internal (Toolbar : System.Address; Style : Gtk_Toolbar_Style);
pragma Import (C, Internal, "gtk_toolbar_set_style");
begin
Internal (Get_Object (Toolbar), Style);
end Set_Style;
------------------
-- Set_Tooltips --
------------------
procedure Set_Tooltips
(Toolbar : access Gtk_Toolbar_Record; Enable : Boolean)
is
procedure Internal (Toolbar : System.Address; Enable : Gint);
pragma Import (C, Internal, "gtk_toolbar_set_tooltips");
begin
Internal (Get_Object (Toolbar), Boolean'Pos (Enable));
end Set_Tooltips;
-----------------
-- Unset_Style --
-----------------
procedure Unset_Style (Toolbar : access Gtk_Toolbar_Record)
is
procedure Internal (Toolbar : System.Address);
pragma Import (C, Internal, "gtk_toolbar_unset_style");
begin
Internal (Get_Object (Toolbar));
end Unset_Style;
---------------------
-- Unset_Icon_Size --
---------------------
procedure Unset_Icon_Size (Toolbar : access Gtk_Toolbar_Record)
is
procedure Internal (Toolbar : System.Address);
pragma Import (C, Internal, "gtk_toolbar_unset_icon_size");
begin
Internal (Get_Object (Toolbar));
end Unset_Icon_Size;
--------------------
-- Get_Drop_Index --
--------------------
function Get_Drop_Index
(Toolbar : access Gtk_Toolbar_Record;
X : Gint;
Y : Gint)
return Gint
is
function Internal
(Toolbar : System.Address;
X : Gint;
Y : Gint)
return Gint;
pragma Import (C, Internal, "gtk_toolbar_get_drop_index");
begin
return Internal (Get_Object (Toolbar), X, Y);
end Get_Drop_Index;
-----------------
-- Get_N_Items --
-----------------
function Get_N_Items
(Toolbar : access Gtk_Toolbar_Record)
return Gint
is
function Internal
(Toolbar : System.Address)
return Gint;
pragma Import (C, Internal, "gtk_toolbar_get_n_items");
begin
return Internal (Get_Object (Toolbar));
end Get_N_Items;
----------------------
-- Get_Relief_Style --
----------------------
function Get_Relief_Style
(Toolbar : access Gtk_Toolbar_Record)
return Gtk_Relief_Style
is
function Internal
(Toolbar : System.Address)
return Gtk_Relief_Style;
pragma Import (C, Internal, "gtk_toolbar_get_relief_style");
begin
return Internal (Get_Object (Toolbar));
end Get_Relief_Style;
--------------------
-- Get_Show_Arrow --
--------------------
function Get_Show_Arrow
(Toolbar : access Gtk_Toolbar_Record)
return Boolean
is
function Internal
(Toolbar : System.Address)
return Gboolean;
pragma Import (C, Internal, "gtk_toolbar_get_show_arrow");
begin
return Boolean'Val (Internal (Get_Object (Toolbar)));
end Get_Show_Arrow;
--------------------
-- Set_Show_Arrow --
--------------------
procedure Set_Show_Arrow
(Toolbar : access Gtk_Toolbar_Record;
Show_Arrow : Boolean := True)
is
procedure Internal
(Toolbar : System.Address;
Show_Arrow : Gboolean);
pragma Import (C, Internal, "gtk_toolbar_set_show_arrow");
begin
Internal (Get_Object (Toolbar), Boolean'Pos (Show_Arrow));
end Set_Show_Arrow;
------------
-- Insert --
------------
procedure Insert
(Toolbar : access Gtk_Toolbar_Record;
Item : access Gtk_Tool_Item_Record'Class;
Pos : Gint := -1)
is
procedure Internal
(Toolbar : System.Address;
Item : System.Address;
Pos : Gint);
pragma Import (C, Internal, "gtk_toolbar_insert");
begin
Internal (Get_Object (Toolbar), Get_Object (Item), Pos);
end Insert;
--------------------
-- Get_Item_Index --
--------------------
function Get_Item_Index
(Toolbar : access Gtk_Toolbar_Record;
Item : access Gtk_Tool_Item_Record'Class)
return Gint
is
function Internal
(Toolbar : System.Address;
Item : System.Address)
return Gint;
pragma Import (C, Internal, "gtk_toolbar_get_item_index");
begin
return Internal (Get_Object (Toolbar), Get_Object (Item));
end Get_Item_Index;
------------------
-- Get_Nth_Item --
------------------
function Get_Nth_Item
(Toolbar : access Gtk_Toolbar_Record;
N : Gint)
return Gtk_Tool_Item
is
function Internal
(Toolbar : System.Address;
N : Gint)
return System.Address;
pragma Import (C, Internal, "gtk_toolbar_get_nth_item");
Stub : Gtk_Tool_Item_Record;
begin
return Gtk_Tool_Item
(Get_User_Data
(Internal (Get_Object (Toolbar), N), Stub));
end Get_Nth_Item;
-----------------------------
-- Set_Drop_Highlight_Item --
-----------------------------
procedure Set_Drop_Highlight_Item
(Toolbar : access Gtk_Toolbar_Record;
Tool_Item : access Gtk_Tool_Item_Record'Class;
Index : Gint)
is
procedure Internal
(Toolbar : System.Address;
Tool_Item : System.Address;
Index : Gint);
pragma Import (C, Internal, "gtk_toolbar_set_drop_highlight_item");
begin
Internal (Get_Object (Toolbar), Get_Object (Tool_Item), Index);
end Set_Drop_Highlight_Item;
end Gtk.Toolbar;
|