/usr/share/ada/adainclude/gtkada/gtk-settings.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 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 | ------------------------------------------------------------------------------
-- --
-- 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>
-- GtkSettings provide a mechanism to share global settings between
-- applications.
--
-- On the X window system, this sharing is realized by an
-- [XSettings](http://www.freedesktop.org/wiki/Specifications/xsettings-spec)
-- manager that is usually part of the desktop environment, along with
-- utilities that let the user change these settings. In the absence of an
-- Xsettings manager, GTK+ reads default values for settings from
-- `settings.ini` files in `/etc/gtk-3.0`, `$XDG_CONFIG_DIRS/gtk-3.0` and
-- `$XDG_CONFIG_HOME/gtk-3.0`. These files must be valid key files (see
-- Gkey.File.Gkey_File), and have a section called Settings. Themes can also
-- provide default values for settings by installing a `settings.ini` file
-- next to their `gtk.css` file.
--
-- Applications can override system-wide settings with
-- Gtk.Settings.Set_String_Property, Gtk.Settings.Set_Long_Property, etc. This
-- should be restricted to special cases though; GtkSettings are not meant as
-- an application configuration facility. When doing so, you need to be aware
-- that settings that are specific to individual widgets may not be available
-- before the widget type has been realized at least once. The following
-- example demonstrates a way to do this: |[<!-- language="C" --> gtk_init
-- (&argc, &argv);
--
-- // make sure the type is realized g_type_class_unref (g_type_class_ref
-- (GTK_TYPE_IMAGE_MENU_ITEM));
--
-- g_object_set (gtk_settings_get_default (), "gtk-enable-animations", FALSE,
-- NULL); ]|
--
-- There is one GtkSettings instance per screen. It can be obtained with
-- Gtk.Settings.Get_For_Screen, but in many cases, it is more convenient to
-- use gtk_widget_get_settings. Gtk.Settings.Get_Default returns the
-- GtkSettings instance for the default screen.
--
-- </description>
pragma Ada_2005;
pragma Warnings (Off, "*is already use-visible*");
with Gdk.Screen; use Gdk.Screen;
with Glib; use Glib;
with Glib.Object; use Glib.Object;
with Glib.Properties; use Glib.Properties;
with Glib.Types; use Glib.Types;
with Glib.Values; use Glib.Values;
with Gtk.Enums; use Gtk.Enums;
with Gtk.Style_Provider; use Gtk.Style_Provider;
with Gtk.Widget; use Gtk.Widget;
package Gtk.Settings is
type Gtk_Settings_Record is new GObject_Record with null record;
type Gtk_Settings is access all Gtk_Settings_Record'Class;
------------------
-- Constructors --
------------------
function Get_Type return Glib.GType;
pragma Import (C, Get_Type, "gtk_settings_get_type");
-------------
-- Methods --
-------------
procedure Set_Double_Property
(Self : not null access Gtk_Settings_Record;
Name : UTF8_String;
V_Double : Gdouble;
Origin : UTF8_String);
procedure Set_Long_Property
(Self : not null access Gtk_Settings_Record;
Name : UTF8_String;
V_Long : Glong;
Origin : UTF8_String);
procedure Set_String_Property
(Self : not null access Gtk_Settings_Record;
Name : UTF8_String;
V_String : UTF8_String;
Origin : UTF8_String);
----------------------
-- GtkAda additions --
----------------------
procedure Set_Property_Value
(Settings : not null access Gtk_Settings_Record;
Name : String;
Value : GValue;
Origin : String);
function Get_Settings
(Widget : not null access Gtk_Widget_Record'Class)
return Gtk_Settings;
-- Get the settings object holding the settings used for this widget.
--
-- Note that this function can only be called when the widget is
-- attached to a toplevel, since the settings object is specific to a
-- particular Gdk.Screen.Gdk_Screen.
---------------------------------------------
-- Inherited subprograms (from interfaces) --
---------------------------------------------
procedure Get_Style_Property
(Self : not null access Gtk_Settings_Record;
Path : Gtk.Widget.Gtk_Widget_Path;
State : Gtk.Enums.Gtk_State_Flags;
Pspec : in out Glib.Param_Spec;
Value : out Glib.Values.GValue;
Found : out Boolean);
---------------
-- Functions --
---------------
function Get_Default return Gtk_Settings;
-- Gets the Gtk.Settings.Gtk_Settings object for the default GDK screen,
-- creating it if necessary. See Gtk.Settings.Get_For_Screen.
function Get_For_Screen
(Screen : not null access Gdk.Screen.Gdk_Screen_Record'Class)
return Gtk_Settings;
-- Gets the Gtk.Settings.Gtk_Settings object for Screen, creating it if
-- necessary.
-- Since: gtk+ 2.2
-- "screen": a Gdk.Screen.Gdk_Screen.
procedure Install_Property (Pspec : in out Glib.Param_Spec);
----------------
-- Properties --
----------------
-- The following properties are defined for this widget. See
-- Glib.Properties for more information on properties)
Color_Hash_Property : constant Glib.Properties.Property_Boxed;
-- Type: GLib.Hash_Table
-- Holds a hash table representation of the
-- Gtk.Settings.Gtk_Settings:gtk-color-scheme setting, mapping color names
-- to Gdk_Colors.
Gtk_Alternative_Button_Order_Property : constant Glib.Properties.Property_Boolean;
Gtk_Alternative_Sort_Arrows_Property : constant Glib.Properties.Property_Boolean;
-- Controls the direction of the sort indicators in sorted list and tree
-- views. By default an arrow pointing down means the column is sorted in
-- ascending order. When set to True, this order will be inverted.
Gtk_Application_Prefer_Dark_Theme_Property : constant Glib.Properties.Property_Boolean;
-- Whether the application prefers to use a dark theme. If a GTK+ theme
-- includes a dark variant, it will be used instead of the configured
-- theme.
--
-- Some applications benefit from minimizing the amount of light pollution
-- that interferes with the content. Good candidates for dark themes are
-- photo and video editors that make the actual content get all the
-- attention and minimize the distraction of the chrome.
--
-- Dark themes should not be used for documents, where large spaces are
-- white/light and the dark chrome creates too much contrast (web browser,
-- text editor...).
Gtk_Auto_Mnemonics_Property : constant Glib.Properties.Property_Boolean;
-- Whether mnemonics should be automatically shown and hidden when the
-- user presses the mnemonic activator.
Gtk_Button_Images_Property : constant Glib.Properties.Property_Boolean;
Gtk_Can_Change_Accels_Property : constant Glib.Properties.Property_Boolean;
-- Whether menu accelerators can be changed by pressing a key over the
-- menu item.
Gtk_Color_Palette_Property : constant Glib.Properties.Property_String;
-- Palette to use in the deprecated color selector.
Gtk_Color_Scheme_Property : constant Glib.Properties.Property_String;
-- A palette of named colors for use in themes. The format of the string
-- is |[ name1: color1 name2: color2 ... ]| Color names must be acceptable
-- as identifiers in the [gtkrc][gtk3-Resource-Files] syntax, and color
-- specifications must be in the format accepted by gdk_color_parse.
--
-- Note that due to the way the color tables from different sources are
-- merged, color specifications will be converted to hexadecimal form when
-- getting this property.
--
-- Starting with GTK+ 2.12, the entries can alternatively be separated by
-- ';' instead of newlines: |[ name1: color1; name2: color2; ... ]|
Gtk_Cursor_Blink_Property : constant Glib.Properties.Property_Boolean;
-- Whether the cursor should blink.
--
-- Also see the Gtk.Settings.Gtk_Settings:gtk-cursor-blink-timeout
-- setting, which allows more flexible control over cursor blinking.
Gtk_Cursor_Blink_Time_Property : constant Glib.Properties.Property_Int;
Gtk_Cursor_Blink_Timeout_Property : constant Glib.Properties.Property_Int;
-- Time after which the cursor stops blinking, in seconds. The timer is
-- reset after each user interaction.
--
-- Setting this to zero has the same effect as setting
-- Gtk.Settings.Gtk_Settings:gtk-cursor-blink to False.
Gtk_Cursor_Theme_Name_Property : constant Glib.Properties.Property_String;
Gtk_Cursor_Theme_Size_Property : constant Glib.Properties.Property_Int;
Gtk_Decoration_Layout_Property : constant Glib.Properties.Property_String;
-- This setting determines which buttons should be put in the titlebar of
-- client-side decorated windows, and whether they should be placed at the
-- left of right.
--
-- The format of the string is button names, separated by commas. A colon
-- separates the buttons that should appear on the left from those on the
-- right. Recognized button names are minimize, maximize, close, icon (the
-- window icon) and menu (a menu button for the fallback app menu).
--
-- For example, "menu:minimize,maximize,close" specifies a menu on the
-- left, and minimize, maximize and close buttons on the right.
--
-- Note that buttons will only be shown when they are meaningful. E.g. a
-- menu button only appears when the desktop shell does not show the app
-- menu, and a close button only appears on a window that can be closed.
--
-- Also note that the setting can be overridden with the
-- Gtk.Header_Bar.Gtk_Header_Bar:decoration-layout property.
Gtk_Dialogs_Use_Header_Property : constant Glib.Properties.Property_Boolean;
-- Whether builtin GTK+ dialogs such as the file chooser, the color
-- chooser or the font chooser will use a header bar at the top to show
-- action widgets, or an action area at the bottom.
--
-- This setting does not affect custom dialogs using GtkDialog directly,
-- or message dialogs.
Gtk_Dnd_Drag_Threshold_Property : constant Glib.Properties.Property_Int;
Gtk_Double_Click_Distance_Property : constant Glib.Properties.Property_Int;
Gtk_Double_Click_Time_Property : constant Glib.Properties.Property_Int;
Gtk_Enable_Accels_Property : constant Glib.Properties.Property_Boolean;
-- Whether menu items should have visible accelerators which can be
-- activated.
Gtk_Enable_Animations_Property : constant Glib.Properties.Property_Boolean;
Gtk_Enable_Event_Sounds_Property : constant Glib.Properties.Property_Boolean;
-- Whether to play any event sounds at all.
--
-- See the [Sound Theme
-- Specifications](http://www.freedesktop.org/wiki/Specifications/sound-theme-spec)
-- for more information on event sounds and sound themes.
--
-- GTK+ itself does not support event sounds, you have to use a loadable
-- module like the one that comes with libcanberra.
Gtk_Enable_Input_Feedback_Sounds_Property : constant Glib.Properties.Property_Boolean;
-- Whether to play event sounds as feedback to user input.
--
-- See the [Sound Theme
-- Specifications](http://www.freedesktop.org/wiki/Specifications/sound-theme-spec)
-- for more information on event sounds and sound themes.
--
-- GTK+ itself does not support event sounds, you have to use a loadable
-- module like the one that comes with libcanberra.
Gtk_Enable_Mnemonics_Property : constant Glib.Properties.Property_Boolean;
-- Whether labels and menu items should have visible mnemonics which can
-- be activated.
Gtk_Enable_Primary_Paste_Property : constant Glib.Properties.Property_Boolean;
-- Whether a middle click on a mouse should paste the 'PRIMARY' clipboard
-- content at the cursor location.
Gtk_Enable_Tooltips_Property : constant Glib.Properties.Property_Boolean;
-- Whether tooltips should be shown on widgets.
Gtk_Entry_Password_Hint_Timeout_Property : constant Glib.Properties.Property_Uint;
-- How long to show the last input character in hidden entries. This value
-- is in milliseconds. 0 disables showing the last char. 600 is a good
-- value for enabling it.
Gtk_Entry_Select_On_Focus_Property : constant Glib.Properties.Property_Boolean;
Gtk_Error_Bell_Property : constant Glib.Properties.Property_Boolean;
-- When True, keyboard navigation and other input-related errors will
-- cause a beep. Since the error bell is implemented using Gdk.Window.Beep,
-- the windowing system may offer ways to configure the error bell in many
-- ways, such as flashing the window or similar visual effects.
Gtk_Fallback_Icon_Theme_Property : constant Glib.Properties.Property_String;
-- Name of a icon theme to fall back to.
Gtk_File_Chooser_Backend_Property : constant Glib.Properties.Property_String;
-- Name of the GtkFileChooser backend to use by default.
Gtk_Font_Name_Property : constant Glib.Properties.Property_String;
Gtk_Fontconfig_Timestamp_Property : constant Glib.Properties.Property_Uint;
Gtk_Icon_Sizes_Property : constant Glib.Properties.Property_String;
-- A list of icon sizes. The list is separated by colons, and item has the
-- form:
--
-- `size-name` = `width` , `height`
--
-- E.g. "gtk-menu=16,16:gtk-button=20,20:gtk-dialog=48,48". GTK+ itself
-- use the following named icon sizes: gtk-menu, gtk-button,
-- gtk-small-toolbar, gtk-large-toolbar, gtk-dnd, gtk-dialog. Applications
-- can register their own named icon sizes with
-- Gtk.Icon_Factory.Icon_Size_Register.
Gtk_Icon_Theme_Name_Property : constant Glib.Properties.Property_String;
Gtk_Im_Module_Property : constant Glib.Properties.Property_String;
-- Which IM (input method) module should be used by default. This is the
-- input method that will be used if the user has not explicitly chosen
-- another input method from the IM context menu. This also can be a
-- colon-separated list of input methods, which GTK+ will try in turn until
-- it finds one available on the system.
--
-- See Gtk.IM_Context.Gtk_IM_Context.
Gtk_Im_Preedit_Style_Property : constant Glib.Properties.Property_Boxed;
-- Type: IMPreedit_Style
-- How to draw the input method preedit string.
Gtk_Im_Status_Style_Property : constant Glib.Properties.Property_Boxed;
-- Type: IMStatus_Style
-- How to draw the input method statusbar.
Gtk_Key_Theme_Name_Property : constant Glib.Properties.Property_String;
Gtk_Keynav_Cursor_Only_Property : constant Glib.Properties.Property_Boolean;
-- When True, keyboard navigation should be able to reach all widgets by
-- using the cursor keys only. Tab, Shift etc. keys can't be expected to be
-- present on the used input device.
Gtk_Keynav_Wrap_Around_Property : constant Glib.Properties.Property_Boolean;
-- When True, some widgets will wrap around when doing keyboard
-- navigation, such as menus, menubars and notebooks.
Gtk_Label_Select_On_Focus_Property : constant Glib.Properties.Property_Boolean;
Gtk_Long_Press_Time_Property : constant Glib.Properties.Property_Uint;
-- The time for a button or touch press to be considered a "long press".
Gtk_Menu_Bar_Accel_Property : constant Glib.Properties.Property_String;
-- Keybinding to activate the menu bar.
Gtk_Menu_Bar_Popup_Delay_Property : constant Glib.Properties.Property_Int;
-- Delay before the submenus of a menu bar appear.
Gtk_Menu_Images_Property : constant Glib.Properties.Property_Boolean;
Gtk_Menu_Popdown_Delay_Property : constant Glib.Properties.Property_Int;
-- The time before hiding a submenu when the pointer is moving towards the
-- submenu.
Gtk_Menu_Popup_Delay_Property : constant Glib.Properties.Property_Int;
-- Minimum time the pointer must stay over a menu item before the submenu
-- appear.
Gtk_Modules_Property : constant Glib.Properties.Property_String;
Gtk_Primary_Button_Warps_Slider_Property : constant Glib.Properties.Property_Boolean;
-- Whether a click in a Gtk.GRange.Gtk_Range trough should scroll to the
-- click position or scroll by a single page in the respective direction.
Gtk_Print_Backends_Property : constant Glib.Properties.Property_String;
-- A comma-separated list of print backends to use in the print dialog.
-- Available print backends depend on the GTK+ installation, and may
-- include "file", "cups", "lpr" or "papi".
Gtk_Print_Preview_Command_Property : constant Glib.Properties.Property_String;
-- A command to run for displaying the print preview. The command should
-- contain a `%f` placeholder, which will get replaced by the path to the
-- pdf file. The command may also contain a `%s` placeholder, which will
-- get replaced by the path to a file containing the print settings in the
-- format produced by Gtk.Print_Settings.To_File.
--
-- The preview application is responsible for removing the pdf file and
-- the print settings file when it is done.
Gtk_Recent_Files_Enabled_Property : constant Glib.Properties.Property_Boolean;
-- Whether GTK+ should keep track of items inside the recently used
-- resources list. If set to False, the list will always be empty.
Gtk_Recent_Files_Limit_Property : constant Glib.Properties.Property_Int;
-- The number of recently used files that should be displayed by default
-- by Gtk.Recent_Chooser.Gtk_Recent_Chooser implementations and by the
-- Gtk.File_Chooser.Gtk_File_Chooser. A value of -1 means every recently
-- used file stored.
Gtk_Recent_Files_Max_Age_Property : constant Glib.Properties.Property_Int;
-- The maximum age, in days, of the items inside the recently used
-- resources list. Items older than this setting will be excised from the
-- list. If set to 0, the list will always be empty; if set to -1, no item
-- will be removed.
Gtk_Scrolled_Window_Placement_Property : constant Gtk.Enums.Property_Gtk_Corner_Type;
-- Where the contents of scrolled windows are located with respect to the
-- scrollbars, if not overridden by the scrolled window's own placement.
Gtk_Shell_Shows_App_Menu_Property : constant Glib.Properties.Property_Boolean;
Gtk_Shell_Shows_Desktop_Property : constant Glib.Properties.Property_Boolean;
Gtk_Shell_Shows_Menubar_Property : constant Glib.Properties.Property_Boolean;
Gtk_Show_Input_Method_Menu_Property : constant Glib.Properties.Property_Boolean;
Gtk_Show_Unicode_Menu_Property : constant Glib.Properties.Property_Boolean;
Gtk_Sound_Theme_Name_Property : constant Glib.Properties.Property_String;
-- The XDG sound theme to use for event sounds.
--
-- See the [Sound Theme
-- Specifications](http://www.freedesktop.org/wiki/Specifications/sound-theme-spec)
-- for more information on event sounds and sound themes.
--
-- GTK+ itself does not support event sounds, you have to use a loadable
-- module like the one that comes with libcanberra.
Gtk_Split_Cursor_Property : constant Glib.Properties.Property_Boolean;
Gtk_Theme_Name_Property : constant Glib.Properties.Property_String;
Gtk_Timeout_Expand_Property : constant Glib.Properties.Property_Int;
Gtk_Timeout_Initial_Property : constant Glib.Properties.Property_Int;
Gtk_Timeout_Repeat_Property : constant Glib.Properties.Property_Int;
Gtk_Titlebar_Double_Click_Property : constant Glib.Properties.Property_String;
-- This setting determines the action to take when a double-click occurs
-- on the titlebar of client-side decorated windows.
--
-- Recognized actions are minimize, toggle-maximize, menu, lower or none.
Gtk_Titlebar_Middle_Click_Property : constant Glib.Properties.Property_String;
-- This setting determines the action to take when a middle-click occurs
-- on the titlebar of client-side decorated windows.
--
-- Recognized actions are minimize, toggle-maximize, menu, lower or none.
Gtk_Titlebar_Right_Click_Property : constant Glib.Properties.Property_String;
-- This setting determines the action to take when a right-click occurs on
-- the titlebar of client-side decorated windows.
--
-- Recognized actions are minimize, toggle-maximize, menu, lower or none.
Gtk_Toolbar_Icon_Size_Property : constant Gtk.Enums.Property_Gtk_Icon_Size;
-- The size of icons in default toolbars.
Gtk_Toolbar_Style_Property : constant Gtk.Enums.Property_Gtk_Toolbar_Style;
-- The size of icons in default toolbars.
Gtk_Tooltip_Browse_Mode_Timeout_Property : constant Glib.Properties.Property_Int;
-- Amount of time, in milliseconds, after which the browse mode will be
-- disabled.
--
-- See Gtk.Settings.Gtk_Settings:gtk-tooltip-browse-timeout for more
-- information about browse mode.
Gtk_Tooltip_Browse_Timeout_Property : constant Glib.Properties.Property_Int;
-- Controls the time after which tooltips will appear when browse mode is
-- enabled, in milliseconds.
--
-- Browse mode is enabled when the mouse pointer moves off an object where
-- a tooltip was currently being displayed. If the mouse pointer hits
-- another object before the browse mode timeout expires (see
-- Gtk.Settings.Gtk_Settings:gtk-tooltip-browse-mode-timeout), it will take
-- the amount of milliseconds specified by this setting to popup the
-- tooltip for the new object.
Gtk_Tooltip_Timeout_Property : constant Glib.Properties.Property_Int;
-- Time, in milliseconds, after which a tooltip could appear if the cursor
-- is hovering on top of a widget.
Gtk_Touchscreen_Mode_Property : constant Glib.Properties.Property_Boolean;
-- When True, there are no motion notify events delivered on this screen,
-- and widgets can't use the pointer hovering them for any essential
-- functionality.
Gtk_Visible_Focus_Property : constant Gtk.Enums.Property_Gtk_Policy_Type;
-- Whether 'focus rectangles' should be always visible, never visible, or
-- hidden until the user starts to use the keyboard.
Gtk_Xft_Antialias_Property : constant Glib.Properties.Property_Int;
Gtk_Xft_Dpi_Property : constant Glib.Properties.Property_Int;
Gtk_Xft_Hinting_Property : constant Glib.Properties.Property_Int;
Gtk_Xft_Hintstyle_Property : constant Glib.Properties.Property_String;
Gtk_Xft_Rgba_Property : constant Glib.Properties.Property_String;
----------------
-- Interfaces --
----------------
-- This class implements several interfaces. See Glib.Types
--
-- - "StyleProvider"
package Implements_Gtk_Style_Provider is new Glib.Types.Implements
(Gtk.Style_Provider.Gtk_Style_Provider, Gtk_Settings_Record, Gtk_Settings);
function "+"
(Widget : access Gtk_Settings_Record'Class)
return Gtk.Style_Provider.Gtk_Style_Provider
renames Implements_Gtk_Style_Provider.To_Interface;
function "-"
(Interf : Gtk.Style_Provider.Gtk_Style_Provider)
return Gtk_Settings
renames Implements_Gtk_Style_Provider.To_Object;
private
Gtk_Xft_Rgba_Property : constant Glib.Properties.Property_String :=
Glib.Properties.Build ("gtk-xft-rgba");
Gtk_Xft_Hintstyle_Property : constant Glib.Properties.Property_String :=
Glib.Properties.Build ("gtk-xft-hintstyle");
Gtk_Xft_Hinting_Property : constant Glib.Properties.Property_Int :=
Glib.Properties.Build ("gtk-xft-hinting");
Gtk_Xft_Dpi_Property : constant Glib.Properties.Property_Int :=
Glib.Properties.Build ("gtk-xft-dpi");
Gtk_Xft_Antialias_Property : constant Glib.Properties.Property_Int :=
Glib.Properties.Build ("gtk-xft-antialias");
Gtk_Visible_Focus_Property : constant Gtk.Enums.Property_Gtk_Policy_Type :=
Gtk.Enums.Build ("gtk-visible-focus");
Gtk_Touchscreen_Mode_Property : constant Glib.Properties.Property_Boolean :=
Glib.Properties.Build ("gtk-touchscreen-mode");
Gtk_Tooltip_Timeout_Property : constant Glib.Properties.Property_Int :=
Glib.Properties.Build ("gtk-tooltip-timeout");
Gtk_Tooltip_Browse_Timeout_Property : constant Glib.Properties.Property_Int :=
Glib.Properties.Build ("gtk-tooltip-browse-timeout");
Gtk_Tooltip_Browse_Mode_Timeout_Property : constant Glib.Properties.Property_Int :=
Glib.Properties.Build ("gtk-tooltip-browse-mode-timeout");
Gtk_Toolbar_Style_Property : constant Gtk.Enums.Property_Gtk_Toolbar_Style :=
Gtk.Enums.Build ("gtk-toolbar-style");
Gtk_Toolbar_Icon_Size_Property : constant Gtk.Enums.Property_Gtk_Icon_Size :=
Gtk.Enums.Build ("gtk-toolbar-icon-size");
Gtk_Titlebar_Right_Click_Property : constant Glib.Properties.Property_String :=
Glib.Properties.Build ("gtk-titlebar-right-click");
Gtk_Titlebar_Middle_Click_Property : constant Glib.Properties.Property_String :=
Glib.Properties.Build ("gtk-titlebar-middle-click");
Gtk_Titlebar_Double_Click_Property : constant Glib.Properties.Property_String :=
Glib.Properties.Build ("gtk-titlebar-double-click");
Gtk_Timeout_Repeat_Property : constant Glib.Properties.Property_Int :=
Glib.Properties.Build ("gtk-timeout-repeat");
Gtk_Timeout_Initial_Property : constant Glib.Properties.Property_Int :=
Glib.Properties.Build ("gtk-timeout-initial");
Gtk_Timeout_Expand_Property : constant Glib.Properties.Property_Int :=
Glib.Properties.Build ("gtk-timeout-expand");
Gtk_Theme_Name_Property : constant Glib.Properties.Property_String :=
Glib.Properties.Build ("gtk-theme-name");
Gtk_Split_Cursor_Property : constant Glib.Properties.Property_Boolean :=
Glib.Properties.Build ("gtk-split-cursor");
Gtk_Sound_Theme_Name_Property : constant Glib.Properties.Property_String :=
Glib.Properties.Build ("gtk-sound-theme-name");
Gtk_Show_Unicode_Menu_Property : constant Glib.Properties.Property_Boolean :=
Glib.Properties.Build ("gtk-show-unicode-menu");
Gtk_Show_Input_Method_Menu_Property : constant Glib.Properties.Property_Boolean :=
Glib.Properties.Build ("gtk-show-input-method-menu");
Gtk_Shell_Shows_Menubar_Property : constant Glib.Properties.Property_Boolean :=
Glib.Properties.Build ("gtk-shell-shows-menubar");
Gtk_Shell_Shows_Desktop_Property : constant Glib.Properties.Property_Boolean :=
Glib.Properties.Build ("gtk-shell-shows-desktop");
Gtk_Shell_Shows_App_Menu_Property : constant Glib.Properties.Property_Boolean :=
Glib.Properties.Build ("gtk-shell-shows-app-menu");
Gtk_Scrolled_Window_Placement_Property : constant Gtk.Enums.Property_Gtk_Corner_Type :=
Gtk.Enums.Build ("gtk-scrolled-window-placement");
Gtk_Recent_Files_Max_Age_Property : constant Glib.Properties.Property_Int :=
Glib.Properties.Build ("gtk-recent-files-max-age");
Gtk_Recent_Files_Limit_Property : constant Glib.Properties.Property_Int :=
Glib.Properties.Build ("gtk-recent-files-limit");
Gtk_Recent_Files_Enabled_Property : constant Glib.Properties.Property_Boolean :=
Glib.Properties.Build ("gtk-recent-files-enabled");
Gtk_Print_Preview_Command_Property : constant Glib.Properties.Property_String :=
Glib.Properties.Build ("gtk-print-preview-command");
Gtk_Print_Backends_Property : constant Glib.Properties.Property_String :=
Glib.Properties.Build ("gtk-print-backends");
Gtk_Primary_Button_Warps_Slider_Property : constant Glib.Properties.Property_Boolean :=
Glib.Properties.Build ("gtk-primary-button-warps-slider");
Gtk_Modules_Property : constant Glib.Properties.Property_String :=
Glib.Properties.Build ("gtk-modules");
Gtk_Menu_Popup_Delay_Property : constant Glib.Properties.Property_Int :=
Glib.Properties.Build ("gtk-menu-popup-delay");
Gtk_Menu_Popdown_Delay_Property : constant Glib.Properties.Property_Int :=
Glib.Properties.Build ("gtk-menu-popdown-delay");
Gtk_Menu_Images_Property : constant Glib.Properties.Property_Boolean :=
Glib.Properties.Build ("gtk-menu-images");
Gtk_Menu_Bar_Popup_Delay_Property : constant Glib.Properties.Property_Int :=
Glib.Properties.Build ("gtk-menu-bar-popup-delay");
Gtk_Menu_Bar_Accel_Property : constant Glib.Properties.Property_String :=
Glib.Properties.Build ("gtk-menu-bar-accel");
Gtk_Long_Press_Time_Property : constant Glib.Properties.Property_Uint :=
Glib.Properties.Build ("gtk-long-press-time");
Gtk_Label_Select_On_Focus_Property : constant Glib.Properties.Property_Boolean :=
Glib.Properties.Build ("gtk-label-select-on-focus");
Gtk_Keynav_Wrap_Around_Property : constant Glib.Properties.Property_Boolean :=
Glib.Properties.Build ("gtk-keynav-wrap-around");
Gtk_Keynav_Cursor_Only_Property : constant Glib.Properties.Property_Boolean :=
Glib.Properties.Build ("gtk-keynav-cursor-only");
Gtk_Key_Theme_Name_Property : constant Glib.Properties.Property_String :=
Glib.Properties.Build ("gtk-key-theme-name");
Gtk_Im_Status_Style_Property : constant Glib.Properties.Property_Boxed :=
Glib.Properties.Build ("gtk-im-status-style");
Gtk_Im_Preedit_Style_Property : constant Glib.Properties.Property_Boxed :=
Glib.Properties.Build ("gtk-im-preedit-style");
Gtk_Im_Module_Property : constant Glib.Properties.Property_String :=
Glib.Properties.Build ("gtk-im-module");
Gtk_Icon_Theme_Name_Property : constant Glib.Properties.Property_String :=
Glib.Properties.Build ("gtk-icon-theme-name");
Gtk_Icon_Sizes_Property : constant Glib.Properties.Property_String :=
Glib.Properties.Build ("gtk-icon-sizes");
Gtk_Fontconfig_Timestamp_Property : constant Glib.Properties.Property_Uint :=
Glib.Properties.Build ("gtk-fontconfig-timestamp");
Gtk_Font_Name_Property : constant Glib.Properties.Property_String :=
Glib.Properties.Build ("gtk-font-name");
Gtk_File_Chooser_Backend_Property : constant Glib.Properties.Property_String :=
Glib.Properties.Build ("gtk-file-chooser-backend");
Gtk_Fallback_Icon_Theme_Property : constant Glib.Properties.Property_String :=
Glib.Properties.Build ("gtk-fallback-icon-theme");
Gtk_Error_Bell_Property : constant Glib.Properties.Property_Boolean :=
Glib.Properties.Build ("gtk-error-bell");
Gtk_Entry_Select_On_Focus_Property : constant Glib.Properties.Property_Boolean :=
Glib.Properties.Build ("gtk-entry-select-on-focus");
Gtk_Entry_Password_Hint_Timeout_Property : constant Glib.Properties.Property_Uint :=
Glib.Properties.Build ("gtk-entry-password-hint-timeout");
Gtk_Enable_Tooltips_Property : constant Glib.Properties.Property_Boolean :=
Glib.Properties.Build ("gtk-enable-tooltips");
Gtk_Enable_Primary_Paste_Property : constant Glib.Properties.Property_Boolean :=
Glib.Properties.Build ("gtk-enable-primary-paste");
Gtk_Enable_Mnemonics_Property : constant Glib.Properties.Property_Boolean :=
Glib.Properties.Build ("gtk-enable-mnemonics");
Gtk_Enable_Input_Feedback_Sounds_Property : constant Glib.Properties.Property_Boolean :=
Glib.Properties.Build ("gtk-enable-input-feedback-sounds");
Gtk_Enable_Event_Sounds_Property : constant Glib.Properties.Property_Boolean :=
Glib.Properties.Build ("gtk-enable-event-sounds");
Gtk_Enable_Animations_Property : constant Glib.Properties.Property_Boolean :=
Glib.Properties.Build ("gtk-enable-animations");
Gtk_Enable_Accels_Property : constant Glib.Properties.Property_Boolean :=
Glib.Properties.Build ("gtk-enable-accels");
Gtk_Double_Click_Time_Property : constant Glib.Properties.Property_Int :=
Glib.Properties.Build ("gtk-double-click-time");
Gtk_Double_Click_Distance_Property : constant Glib.Properties.Property_Int :=
Glib.Properties.Build ("gtk-double-click-distance");
Gtk_Dnd_Drag_Threshold_Property : constant Glib.Properties.Property_Int :=
Glib.Properties.Build ("gtk-dnd-drag-threshold");
Gtk_Dialogs_Use_Header_Property : constant Glib.Properties.Property_Boolean :=
Glib.Properties.Build ("gtk-dialogs-use-header");
Gtk_Decoration_Layout_Property : constant Glib.Properties.Property_String :=
Glib.Properties.Build ("gtk-decoration-layout");
Gtk_Cursor_Theme_Size_Property : constant Glib.Properties.Property_Int :=
Glib.Properties.Build ("gtk-cursor-theme-size");
Gtk_Cursor_Theme_Name_Property : constant Glib.Properties.Property_String :=
Glib.Properties.Build ("gtk-cursor-theme-name");
Gtk_Cursor_Blink_Timeout_Property : constant Glib.Properties.Property_Int :=
Glib.Properties.Build ("gtk-cursor-blink-timeout");
Gtk_Cursor_Blink_Time_Property : constant Glib.Properties.Property_Int :=
Glib.Properties.Build ("gtk-cursor-blink-time");
Gtk_Cursor_Blink_Property : constant Glib.Properties.Property_Boolean :=
Glib.Properties.Build ("gtk-cursor-blink");
Gtk_Color_Scheme_Property : constant Glib.Properties.Property_String :=
Glib.Properties.Build ("gtk-color-scheme");
Gtk_Color_Palette_Property : constant Glib.Properties.Property_String :=
Glib.Properties.Build ("gtk-color-palette");
Gtk_Can_Change_Accels_Property : constant Glib.Properties.Property_Boolean :=
Glib.Properties.Build ("gtk-can-change-accels");
Gtk_Button_Images_Property : constant Glib.Properties.Property_Boolean :=
Glib.Properties.Build ("gtk-button-images");
Gtk_Auto_Mnemonics_Property : constant Glib.Properties.Property_Boolean :=
Glib.Properties.Build ("gtk-auto-mnemonics");
Gtk_Application_Prefer_Dark_Theme_Property : constant Glib.Properties.Property_Boolean :=
Glib.Properties.Build ("gtk-application-prefer-dark-theme");
Gtk_Alternative_Sort_Arrows_Property : constant Glib.Properties.Property_Boolean :=
Glib.Properties.Build ("gtk-alternative-sort-arrows");
Gtk_Alternative_Button_Order_Property : constant Glib.Properties.Property_Boolean :=
Glib.Properties.Build ("gtk-alternative-button-order");
Color_Hash_Property : constant Glib.Properties.Property_Boxed :=
Glib.Properties.Build ("color-hash");
end Gtk.Settings;
|