/usr/share/ada/adainclude/gtkada/gtk-label.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 | -----------------------------------------------------------------------
-- GtkAda - Ada95 binding for Gtk+/Gnome --
-- --
-- Copyright (C) 1998-2000 E. Briot, J. Brobecker and A. Charlet --
-- Copyright (C) 2000-2011, 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. --
-- --
-----------------------------------------------------------------------
pragma Style_Checks (Off);
pragma Warnings (Off, "*is already use-visible*");
with Glib.Type_Conversion_Hooks; use Glib.Type_Conversion_Hooks;
with Interfaces.C.Strings; use Interfaces.C.Strings;
package body Gtk.Label is
package Type_Conversion is new Glib.Type_Conversion_Hooks.Hook_Registrator
(Get_Type'Access, Gtk_Label_Record);
pragma Unreferenced (Type_Conversion);
-------------
-- Gtk_New --
-------------
procedure Gtk_New (Label : out Gtk_Label; Str : UTF8_String := "") is
begin
Label := new Gtk_Label_Record;
Gtk.Label.Initialize (Label, Str);
end Gtk_New;
---------------------------
-- Gtk_New_With_Mnemonic --
---------------------------
procedure Gtk_New_With_Mnemonic
(Label : out Gtk_Label;
Str : UTF8_String)
is
begin
Label := new Gtk_Label_Record;
Gtk.Label.Initialize_With_Mnemonic (Label, Str);
end Gtk_New_With_Mnemonic;
----------------
-- Initialize --
----------------
procedure Initialize
(Label : access Gtk_Label_Record'Class;
Str : UTF8_String := "")
is
function Internal
(Str : Interfaces.C.Strings.chars_ptr) return System.Address;
pragma Import (C, Internal, "gtk_label_new");
Tmp_Str : Interfaces.C.Strings.chars_ptr := New_String (Str);
Tmp_Return : System.Address;
begin
Tmp_Return := Internal (Tmp_Str);
Free (Tmp_Str);
Set_Object (Label, Tmp_Return);
end Initialize;
------------------------------
-- Initialize_With_Mnemonic --
------------------------------
procedure Initialize_With_Mnemonic
(Label : access Gtk_Label_Record'Class;
Str : UTF8_String)
is
function Internal
(Str : Interfaces.C.Strings.chars_ptr) return System.Address;
pragma Import (C, Internal, "gtk_label_new_with_mnemonic");
Tmp_Str : Interfaces.C.Strings.chars_ptr := New_String (Str);
Tmp_Return : System.Address;
begin
Tmp_Return := Internal (Tmp_Str);
Free (Tmp_Str);
Set_Object (Label, Tmp_Return);
end Initialize_With_Mnemonic;
---------------
-- Get_Angle --
---------------
function Get_Angle (Label : access Gtk_Label_Record) return Gdouble is
function Internal (Label : System.Address) return Gdouble;
pragma Import (C, Internal, "gtk_label_get_angle");
begin
return Internal (Get_Object (Label));
end Get_Angle;
--------------------
-- Get_Attributes --
--------------------
function Get_Attributes
(Label : access Gtk_Label_Record)
return Pango.Attributes.Pango_Attr_List
is
function Internal
(Label : System.Address) return Pango.Attributes.Pango_Attr_List;
pragma Import (C, Internal, "gtk_label_get_attributes");
begin
return Internal (Get_Object (Label));
end Get_Attributes;
---------------------
-- Get_Current_Uri --
---------------------
function Get_Current_Uri
(Label : access Gtk_Label_Record) return UTF8_String
is
function Internal
(Label : System.Address) return Interfaces.C.Strings.chars_ptr;
pragma Import (C, Internal, "gtk_label_get_current_uri");
begin
return Interfaces.C.Strings.Value (Internal (Get_Object (Label)));
end Get_Current_Uri;
-------------------
-- Get_Ellipsize --
-------------------
function Get_Ellipsize
(Label : access Gtk_Label_Record)
return Pango.Layout.Pango_Ellipsize_Mode
is
function Internal (Label : System.Address) return Integer;
pragma Import (C, Internal, "gtk_label_get_ellipsize");
begin
return Pango.Layout.Pango_Ellipsize_Mode'Val (Internal (Get_Object (Label)));
end Get_Ellipsize;
-----------------
-- Get_Justify --
-----------------
function Get_Justify
(Label : access Gtk_Label_Record) return Gtk.Enums.Gtk_Justification
is
function Internal (Label : System.Address) return Integer;
pragma Import (C, Internal, "gtk_label_get_justify");
begin
return Gtk.Enums.Gtk_Justification'Val (Internal (Get_Object (Label)));
end Get_Justify;
---------------
-- Get_Label --
---------------
function Get_Label (Label : access Gtk_Label_Record) return UTF8_String is
function Internal
(Label : System.Address) return Interfaces.C.Strings.chars_ptr;
pragma Import (C, Internal, "gtk_label_get_label");
begin
return Interfaces.C.Strings.Value (Internal (Get_Object (Label)));
end Get_Label;
----------------
-- Get_Layout --
----------------
function Get_Layout
(Label : access Gtk_Label_Record) return Pango.Layout.Pango_Layout
is
function Internal (Label : System.Address) return System.Address;
pragma Import (C, Internal, "gtk_label_get_layout");
Stub : Pango.Layout.Pango_Layout_Record;
begin
return Pango.Layout.Pango_Layout (Get_User_Data (Internal (Get_Object (Label)), Stub));
end Get_Layout;
------------------------
-- Get_Layout_Offsets --
------------------------
procedure Get_Layout_Offsets
(Label : access Gtk_Label_Record;
X : out Gint;
Y : out Gint)
is
procedure Internal
(Label : System.Address;
X : out Gint;
Y : out Gint);
pragma Import (C, Internal, "gtk_label_get_layout_offsets");
begin
Internal (Get_Object (Label), X, Y);
end Get_Layout_Offsets;
-------------------
-- Get_Line_Wrap --
-------------------
function Get_Line_Wrap (Label : access Gtk_Label_Record) return Boolean is
function Internal (Label : System.Address) return Integer;
pragma Import (C, Internal, "gtk_label_get_line_wrap");
begin
return Boolean'Val (Internal (Get_Object (Label)));
end Get_Line_Wrap;
------------------------
-- Get_Line_Wrap_Mode --
------------------------
function Get_Line_Wrap_Mode
(Label : access Gtk_Label_Record) return Pango.Layout.Pango_Wrap_Mode
is
function Internal (Label : System.Address) return Integer;
pragma Import (C, Internal, "gtk_label_get_line_wrap_mode");
begin
return Pango.Layout.Pango_Wrap_Mode'Val (Internal (Get_Object (Label)));
end Get_Line_Wrap_Mode;
-------------------------
-- Get_Max_Width_Chars --
-------------------------
function Get_Max_Width_Chars
(Label : access Gtk_Label_Record) return Gint
is
function Internal (Label : System.Address) return Gint;
pragma Import (C, Internal, "gtk_label_get_max_width_chars");
begin
return Internal (Get_Object (Label));
end Get_Max_Width_Chars;
-------------------------
-- Get_Mnemonic_Keyval --
-------------------------
function Get_Mnemonic_Keyval
(Label : access Gtk_Label_Record) return Guint
is
function Internal (Label : System.Address) return Guint;
pragma Import (C, Internal, "gtk_label_get_mnemonic_keyval");
begin
return Internal (Get_Object (Label));
end Get_Mnemonic_Keyval;
-------------------------
-- Get_Mnemonic_Widget --
-------------------------
function Get_Mnemonic_Widget
(Label : access Gtk_Label_Record) return Gtk.Widget.Gtk_Widget
is
function Internal (Label : System.Address) return System.Address;
pragma Import (C, Internal, "gtk_label_get_mnemonic_widget");
Stub : Gtk.Widget.Gtk_Widget_Record;
begin
return Gtk.Widget.Gtk_Widget (Get_User_Data (Internal (Get_Object (Label)), Stub));
end Get_Mnemonic_Widget;
--------------------
-- Get_Selectable --
--------------------
function Get_Selectable (Label : access Gtk_Label_Record) return Boolean is
function Internal (Label : System.Address) return Integer;
pragma Import (C, Internal, "gtk_label_get_selectable");
begin
return Boolean'Val (Internal (Get_Object (Label)));
end Get_Selectable;
--------------------------
-- Get_Selection_Bounds --
--------------------------
procedure Get_Selection_Bounds
(Label : access Gtk_Label_Record;
Start : out Gint;
The_End : out Gint;
Has_Selection : out Boolean)
is
function Internal
(Label : System.Address;
Acc_Start : access Gint;
Acc_The_End : access Gint) return Integer;
pragma Import (C, Internal, "gtk_label_get_selection_bounds");
Acc_Start : aliased Gint;
Acc_The_End : aliased Gint;
Tmp_Return : Integer;
begin
Tmp_Return := Internal (Get_Object (Label), Acc_Start'Access, Acc_The_End'Access);
Start := Acc_Start;
The_End := Acc_The_End;
Has_Selection := Boolean'Val (Tmp_Return);
end Get_Selection_Bounds;
--------------------------
-- Get_Single_Line_Mode --
--------------------------
function Get_Single_Line_Mode
(Label : access Gtk_Label_Record) return Boolean
is
function Internal (Label : System.Address) return Integer;
pragma Import (C, Internal, "gtk_label_get_single_line_mode");
begin
return Boolean'Val (Internal (Get_Object (Label)));
end Get_Single_Line_Mode;
--------------
-- Get_Text --
--------------
function Get_Text (Label : access Gtk_Label_Record) return UTF8_String is
function Internal
(Label : System.Address) return Interfaces.C.Strings.chars_ptr;
pragma Import (C, Internal, "gtk_label_get_text");
begin
return Interfaces.C.Strings.Value (Internal (Get_Object (Label)));
end Get_Text;
-----------------------------
-- Get_Track_Visited_Links --
-----------------------------
function Get_Track_Visited_Links
(Label : access Gtk_Label_Record) return Boolean
is
function Internal (Label : System.Address) return Integer;
pragma Import (C, Internal, "gtk_label_get_track_visited_links");
begin
return Boolean'Val (Internal (Get_Object (Label)));
end Get_Track_Visited_Links;
--------------------
-- Get_Use_Markup --
--------------------
function Get_Use_Markup (Label : access Gtk_Label_Record) return Boolean is
function Internal (Label : System.Address) return Integer;
pragma Import (C, Internal, "gtk_label_get_use_markup");
begin
return Boolean'Val (Internal (Get_Object (Label)));
end Get_Use_Markup;
-----------------------
-- Get_Use_Underline --
-----------------------
function Get_Use_Underline
(Label : access Gtk_Label_Record) return Boolean
is
function Internal (Label : System.Address) return Integer;
pragma Import (C, Internal, "gtk_label_get_use_underline");
begin
return Boolean'Val (Internal (Get_Object (Label)));
end Get_Use_Underline;
---------------------
-- Get_Width_Chars --
---------------------
function Get_Width_Chars (Label : access Gtk_Label_Record) return Gint is
function Internal (Label : System.Address) return Gint;
pragma Import (C, Internal, "gtk_label_get_width_chars");
begin
return Internal (Get_Object (Label));
end Get_Width_Chars;
-----------------
-- Parse_Uline --
-----------------
function Parse_Uline
(Label : access Gtk_Label_Record;
String : UTF8_String) return Guint
is
function Internal
(Label : System.Address;
String : Interfaces.C.Strings.chars_ptr) return Guint;
pragma Import (C, Internal, "gtk_label_parse_uline");
Tmp_String : Interfaces.C.Strings.chars_ptr := New_String (String);
Tmp_Return : Guint;
begin
Tmp_Return := Internal (Get_Object (Label), Tmp_String);
Free (Tmp_String);
return Tmp_Return;
end Parse_Uline;
-------------------
-- Select_Region --
-------------------
procedure Select_Region
(Label : access Gtk_Label_Record;
Start_Offset : Gint := -1;
End_Offset : Gint := -1)
is
procedure Internal
(Label : System.Address;
Start_Offset : Gint;
End_Offset : Gint);
pragma Import (C, Internal, "gtk_label_select_region");
begin
Internal (Get_Object (Label), Start_Offset, End_Offset);
end Select_Region;
---------------
-- Set_Angle --
---------------
procedure Set_Angle (Label : access Gtk_Label_Record; Angle : Gdouble) is
procedure Internal (Label : System.Address; Angle : Gdouble);
pragma Import (C, Internal, "gtk_label_set_angle");
begin
Internal (Get_Object (Label), Angle);
end Set_Angle;
--------------------
-- Set_Attributes --
--------------------
procedure Set_Attributes
(Label : access Gtk_Label_Record;
Attrs : out Pango.Attributes.Pango_Attr_List)
is
procedure Internal
(Label : System.Address;
Attrs : out Pango.Attributes.Pango_Attr_List);
pragma Import (C, Internal, "gtk_label_set_attributes");
begin
Internal (Get_Object (Label), Attrs);
end Set_Attributes;
-------------------
-- Set_Ellipsize --
-------------------
procedure Set_Ellipsize
(Label : access Gtk_Label_Record;
Mode : Pango.Layout.Pango_Ellipsize_Mode)
is
procedure Internal (Label : System.Address; Mode : Integer);
pragma Import (C, Internal, "gtk_label_set_ellipsize");
begin
Internal (Get_Object (Label), Pango.Layout.Pango_Ellipsize_Mode'Pos (Mode));
end Set_Ellipsize;
-----------------
-- Set_Justify --
-----------------
procedure Set_Justify
(Label : access Gtk_Label_Record;
Jtype : Gtk.Enums.Gtk_Justification)
is
procedure Internal (Label : System.Address; Jtype : Integer);
pragma Import (C, Internal, "gtk_label_set_justify");
begin
Internal (Get_Object (Label), Gtk.Enums.Gtk_Justification'Pos (Jtype));
end Set_Justify;
---------------
-- Set_Label --
---------------
procedure Set_Label (Label : access Gtk_Label_Record; Str : UTF8_String) is
procedure Internal
(Label : System.Address;
Str : Interfaces.C.Strings.chars_ptr);
pragma Import (C, Internal, "gtk_label_set_label");
Tmp_Str : Interfaces.C.Strings.chars_ptr := New_String (Str);
begin
Internal (Get_Object (Label), Tmp_Str);
Free (Tmp_Str);
end Set_Label;
-------------------
-- Set_Line_Wrap --
-------------------
procedure Set_Line_Wrap (Label : access Gtk_Label_Record; Wrap : Boolean) is
procedure Internal (Label : System.Address; Wrap : Integer);
pragma Import (C, Internal, "gtk_label_set_line_wrap");
begin
Internal (Get_Object (Label), Boolean'Pos (Wrap));
end Set_Line_Wrap;
------------------------
-- Set_Line_Wrap_Mode --
------------------------
procedure Set_Line_Wrap_Mode
(Label : access Gtk_Label_Record;
Wrap_Mode : Pango.Layout.Pango_Wrap_Mode)
is
procedure Internal (Label : System.Address; Wrap_Mode : Integer);
pragma Import (C, Internal, "gtk_label_set_line_wrap_mode");
begin
Internal (Get_Object (Label), Pango.Layout.Pango_Wrap_Mode'Pos (Wrap_Mode));
end Set_Line_Wrap_Mode;
----------------
-- Set_Markup --
----------------
procedure Set_Markup (Label : access Gtk_Label_Record; Str : UTF8_String) is
procedure Internal
(Label : System.Address;
Str : Interfaces.C.Strings.chars_ptr);
pragma Import (C, Internal, "gtk_label_set_markup");
Tmp_Str : Interfaces.C.Strings.chars_ptr := New_String (Str);
begin
Internal (Get_Object (Label), Tmp_Str);
Free (Tmp_Str);
end Set_Markup;
------------------------------
-- Set_Markup_With_Mnemonic --
------------------------------
procedure Set_Markup_With_Mnemonic
(Label : access Gtk_Label_Record;
Str : UTF8_String)
is
procedure Internal
(Label : System.Address;
Str : Interfaces.C.Strings.chars_ptr);
pragma Import (C, Internal, "gtk_label_set_markup_with_mnemonic");
Tmp_Str : Interfaces.C.Strings.chars_ptr := New_String (Str);
begin
Internal (Get_Object (Label), Tmp_Str);
Free (Tmp_Str);
end Set_Markup_With_Mnemonic;
-------------------------
-- Set_Max_Width_Chars --
-------------------------
procedure Set_Max_Width_Chars
(Label : access Gtk_Label_Record;
N_Chars : Gint)
is
procedure Internal (Label : System.Address; N_Chars : Gint);
pragma Import (C, Internal, "gtk_label_set_max_width_chars");
begin
Internal (Get_Object (Label), N_Chars);
end Set_Max_Width_Chars;
-------------------------
-- Set_Mnemonic_Widget --
-------------------------
procedure Set_Mnemonic_Widget
(Label : access Gtk_Label_Record;
Widget : access Gtk.Widget.Gtk_Widget_Record'Class)
is
procedure Internal (Label : System.Address; Widget : System.Address);
pragma Import (C, Internal, "gtk_label_set_mnemonic_widget");
begin
Internal (Get_Object (Label), Get_Object_Or_Null (GObject (Widget)));
end Set_Mnemonic_Widget;
-----------------
-- Set_Pattern --
-----------------
procedure Set_Pattern
(Label : access Gtk_Label_Record;
Pattern : UTF8_String)
is
procedure Internal
(Label : System.Address;
Pattern : Interfaces.C.Strings.chars_ptr);
pragma Import (C, Internal, "gtk_label_set_pattern");
Tmp_Pattern : Interfaces.C.Strings.chars_ptr := New_String (Pattern);
begin
Internal (Get_Object (Label), Tmp_Pattern);
Free (Tmp_Pattern);
end Set_Pattern;
--------------------
-- Set_Selectable --
--------------------
procedure Set_Selectable
(Label : access Gtk_Label_Record;
Setting : Boolean)
is
procedure Internal (Label : System.Address; Setting : Integer);
pragma Import (C, Internal, "gtk_label_set_selectable");
begin
Internal (Get_Object (Label), Boolean'Pos (Setting));
end Set_Selectable;
--------------------------
-- Set_Single_Line_Mode --
--------------------------
procedure Set_Single_Line_Mode
(Label : access Gtk_Label_Record;
Single_Line_Mode : Boolean)
is
procedure Internal
(Label : System.Address;
Single_Line_Mode : Integer);
pragma Import (C, Internal, "gtk_label_set_single_line_mode");
begin
Internal (Get_Object (Label), Boolean'Pos (Single_Line_Mode));
end Set_Single_Line_Mode;
--------------
-- Set_Text --
--------------
procedure Set_Text (Label : access Gtk_Label_Record; Str : UTF8_String) is
procedure Internal
(Label : System.Address;
Str : Interfaces.C.Strings.chars_ptr);
pragma Import (C, Internal, "gtk_label_set_text");
Tmp_Str : Interfaces.C.Strings.chars_ptr := New_String (Str);
begin
Internal (Get_Object (Label), Tmp_Str);
Free (Tmp_Str);
end Set_Text;
----------------------------
-- Set_Text_With_Mnemonic --
----------------------------
procedure Set_Text_With_Mnemonic
(Label : access Gtk_Label_Record;
Str : UTF8_String)
is
procedure Internal
(Label : System.Address;
Str : Interfaces.C.Strings.chars_ptr);
pragma Import (C, Internal, "gtk_label_set_text_with_mnemonic");
Tmp_Str : Interfaces.C.Strings.chars_ptr := New_String (Str);
begin
Internal (Get_Object (Label), Tmp_Str);
Free (Tmp_Str);
end Set_Text_With_Mnemonic;
-----------------------------
-- Set_Track_Visited_Links --
-----------------------------
procedure Set_Track_Visited_Links
(Label : access Gtk_Label_Record;
Track_Links : Boolean)
is
procedure Internal (Label : System.Address; Track_Links : Integer);
pragma Import (C, Internal, "gtk_label_set_track_visited_links");
begin
Internal (Get_Object (Label), Boolean'Pos (Track_Links));
end Set_Track_Visited_Links;
--------------------
-- Set_Use_Markup --
--------------------
procedure Set_Use_Markup
(Label : access Gtk_Label_Record;
Setting : Boolean)
is
procedure Internal (Label : System.Address; Setting : Integer);
pragma Import (C, Internal, "gtk_label_set_use_markup");
begin
Internal (Get_Object (Label), Boolean'Pos (Setting));
end Set_Use_Markup;
-----------------------
-- Set_Use_Underline --
-----------------------
procedure Set_Use_Underline
(Label : access Gtk_Label_Record;
Setting : Boolean)
is
procedure Internal (Label : System.Address; Setting : Integer);
pragma Import (C, Internal, "gtk_label_set_use_underline");
begin
Internal (Get_Object (Label), Boolean'Pos (Setting));
end Set_Use_Underline;
---------------------
-- Set_Width_Chars --
---------------------
procedure Set_Width_Chars
(Label : access Gtk_Label_Record;
N_Chars : Gint)
is
procedure Internal (Label : System.Address; N_Chars : Gint);
pragma Import (C, Internal, "gtk_label_set_width_chars");
begin
Internal (Get_Object (Label), N_Chars);
end Set_Width_Chars;
end Gtk.Label;
|