:right-sidebar: True Settings =================================================================== .. currentmodule:: gi.repository.Gtk .. class:: Settings(**properties: ~typing.Any) :no-contents-entry: Superclasses: :class:`~gi.repository.GObject.Object` Implemented Interfaces: :class:`~gi.repository.Gtk.StyleProvider` ``GtkSettings`` provides a mechanism to share global settings between applications. On the X window system, this sharing is realized by an `XSettings `_ manager that is usually part of the desktop environment, along with utilities that let the user change these settings. On Wayland, the settings are obtained either via a settings portal, or by reading desktop settings from DConf. On macOS, the settings are obtained from ``NSUserDefaults``. In the absence of these sharing mechanisms, GTK reads default values for settings from ``settings.ini`` files in ``/etc/gtk-4.0``, ``$XDG_CONFIG_DIRS/gtk-4.0`` and ``$XDG_CONFIG_HOME/gtk-4.0``. These files must be valid key files (see ``GKeyFile``), 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 by setting the property of the ``GtkSettings`` object with :func:`~gi.repository.GObject.GObject.Object.set`. This should be restricted to special cases though; ``GtkSettings`` are not meant as an application configuration facility. There is one ``GtkSettings`` instance per display. It can be obtained with :obj:`~gi.repository.Gtk.Settings.get_for_display`, but in many cases, it is more convenient to use :obj:`~gi.repository.Gtk.Widget.get_settings`. Methods ------- .. rst-class:: interim-class .. class:: Settings :no-index: .. method:: get_default() -> ~gi.repository.Gtk.Settings | None Gets the ``GtkSettings`` object for the default display, creating it if necessary. See :obj:`~gi.repository.Gtk.Settings.get_for_display`. .. method:: get_for_display(display: ~gi.repository.Gdk.Display) -> ~gi.repository.Gtk.Settings Gets the ``GtkSettings`` object for ``display``, creating it if necessary. :param display: a ``GdkDisplay`` .. method:: reset_property(name: str) -> None Undoes the effect of calling :func:`~gi.repository.GObject.GObject.Object.set` to install an application-specific value for a setting. After this call, the setting will again follow the session-wide value for this setting. :param name: the name of the setting to reset Properties ---------- .. rst-class:: interim-class .. class:: Settings :no-index: .. attribute:: props.gtk_alternative_button_order :type: bool Whether buttons in dialogs should use the alternative button order. .. attribute:: props.gtk_alternative_sort_arrows :type: bool 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 :const:`True`, this order will be inverted. .. attribute:: props.gtk_application_prefer_dark_theme :type: bool 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...). .. attribute:: props.gtk_cursor_aspect_ratio :type: float The aspect ratio of the text caret. .. attribute:: props.gtk_cursor_blink :type: bool Whether the cursor should blink. Also see the :obj:`~gi.repository.Gtk.Settings.props.gtk_cursor_blink_timeout` setting, which allows more flexible control over cursor blinking. .. attribute:: props.gtk_cursor_blink_time :type: int Length of the cursor blink cycle, in milliseconds. .. attribute:: props.gtk_cursor_blink_timeout :type: 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 :obj:`~gi.repository.Gtk.Settings.props.gtk_cursor_blink` to :const:`False`. .. attribute:: props.gtk_cursor_theme_name :type: str Name of the cursor theme to use. Use :const:`None` to use the default theme. .. attribute:: props.gtk_cursor_theme_size :type: int The size to use for cursors. 0 means to use the default size. .. attribute:: props.gtk_decoration_layout :type: str Determines which buttons should be put in the titlebar of client-side decorated windows, and whether they should be placed on the left or 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 :obj:`~gi.repository.Gtk.HeaderBar.props.decoration_layout` property. .. attribute:: props.gtk_dialogs_use_header :type: bool 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. .. attribute:: props.gtk_dnd_drag_threshold :type: int The number of pixels the cursor can move before dragging. .. attribute:: props.gtk_double_click_distance :type: int The maximum distance allowed between two clicks for them to be considered a double click, in pixels. .. attribute:: props.gtk_double_click_time :type: int The maximum time to allow between two clicks for them to be considered a double click, in milliseconds. .. attribute:: props.gtk_enable_accels :type: bool Whether menu items should have visible accelerators which can be activated. .. attribute:: props.gtk_enable_animations :type: bool Whether to enable toolkit-wide animations. .. attribute:: props.gtk_enable_event_sounds :type: bool Whether to play any event sounds at all. See the `Sound Theme Specifications `_ 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. .. attribute:: props.gtk_enable_input_feedback_sounds :type: bool Whether to play event sounds as feedback to user input. See the `Sound Theme Specifications `_ 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. .. attribute:: props.gtk_enable_primary_paste :type: bool Whether a middle click on a mouse should paste the 'PRIMARY' clipboard content at the cursor location. .. attribute:: props.gtk_entry_password_hint_timeout :type: int 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. .. attribute:: props.gtk_entry_select_on_focus :type: bool Whether to select the contents of an entry when it is focused. .. attribute:: props.gtk_error_bell :type: bool When :const:`True`, keyboard navigation and other input-related errors will cause a beep. Since the error bell is implemented using :func:`~gi.repository.Gdk.Surface.beep`, the windowing system may offer ways to configure the error bell in many ways, such as flashing the window or similar visual effects. .. attribute:: props.gtk_font_name :type: str The default font to use. GTK uses the family name and size from this string. .. attribute:: props.gtk_fontconfig_timestamp :type: int Timestamp of the current fontconfig configuration. .. attribute:: props.gtk_hint_font_metrics :type: bool Whether hinting should be applied to font metrics. Note that this also turns off subpixel positioning of glyphs, since it conflicts with metrics hinting. .. versionadded:: 4.6 .. attribute:: props.gtk_icon_theme_name :type: str Name of the icon theme to use. See :obj:`~gi.repository.Gtk.IconTheme` for details about how GTK handles icon themes. .. attribute:: props.gtk_im_module :type: str 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 :obj:`~gi.repository.Gtk.IMContext`. .. attribute:: props.gtk_keynav_use_caret :type: bool Whether GTK should make sure that text can be navigated with a caret, even if it is not editable. This is useful when using a screen reader. .. attribute:: props.gtk_label_select_on_focus :type: bool Whether to select the contents of a selectable label when it is focused. .. attribute:: props.gtk_long_press_time :type: int The time for a button or touch press to be considered a “long press”. See :obj:`~gi.repository.Gtk.GestureLongPress`. .. attribute:: props.gtk_overlay_scrolling :type: bool Whether scrolled windows may use overlaid scrolling indicators. If this is set to :const:`False`, scrolled windows will have permanent scrollbars. .. attribute:: props.gtk_primary_button_warps_slider :type: bool If the value of this setting is :const:`True`, clicking the primary button in a ``GtkRange`` trough will move the slider, and hence set the range’s value, to the point that you clicked. If it is :const:`False`, a primary click will cause the slider/value to move by the range’s page-size towards the point clicked. Whichever action you choose for the primary button, the other action will be available by holding Shift and primary-clicking, or clicking the middle mouse button. .. attribute:: props.gtk_print_backends :type: str 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". .. attribute:: props.gtk_print_preview_command :type: str 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 :obj:`~gi.repository.Gtk.PrintSettings.to_file`. The preview application is responsible for removing the pdf file and the print settings file when it is done. .. attribute:: props.gtk_recent_files_enabled :type: bool Whether GTK should keep track of items inside the recently used resources list. If set to :const:`False`, the list will always be empty. .. attribute:: props.gtk_recent_files_max_age :type: 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. .. attribute:: props.gtk_shell_shows_app_menu :type: bool Set to :const:`True` if the desktop environment is displaying the app menu, :const:`False` if the app should display it itself. .. attribute:: props.gtk_shell_shows_desktop :type: bool Set to :const:`True` if the desktop environment is displaying the desktop folder, :const:`False` if not. .. attribute:: props.gtk_shell_shows_menubar :type: bool Set to :const:`True` if the desktop environment is displaying the menubar, :const:`False` if the app should display it itself. .. attribute:: props.gtk_show_status_shapes :type: bool When :const:`True`, widgets like switches include shapes to indicate their on/off state. .. versionadded:: 4.14 .. attribute:: props.gtk_sound_theme_name :type: str The XDG sound theme to use for event sounds. See the `Sound Theme Specifications `_ 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. .. attribute:: props.gtk_split_cursor :type: bool Whether two cursors should be displayed for mixed left-to-right and right-to-left text. .. attribute:: props.gtk_theme_name :type: str Name of the theme to load. See :obj:`~gi.repository.Gtk.CssProvider` for details about how GTK finds the CSS stylesheet for a theme. .. attribute:: props.gtk_titlebar_double_click :type: str 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. .. attribute:: props.gtk_titlebar_middle_click :type: str 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. .. attribute:: props.gtk_titlebar_right_click :type: str 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. .. attribute:: props.gtk_xft_antialias :type: int Whether to antialias fonts. The values are 0 for no, 1 for yes, or -1 for the system default. .. attribute:: props.gtk_xft_dpi :type: int The font resolution, in 1024 * dots/inch. -1 to use the default value. .. attribute:: props.gtk_xft_hinting :type: int Whether to enable font hinting. The values are 0 for no, 1 for yes, or -1 for the system default. .. attribute:: props.gtk_xft_hintstyle :type: str What degree of font hinting to use. The possible vaues are hintnone, hintslight, hintmedium, hintfull. .. attribute:: props.gtk_xft_rgba :type: str The type of subpixel antialiasing to use. The possible values are none, rgb, bgr, vrgb, vbgr. Note that GSK does not support subpixel antialiasing, and this setting has no effect on font rendering in GTK.