2011-01-31 16:30:01 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2009-07-10 16:46:41 +02:00
|
|
|
<interface>
|
2011-01-25 22:54:04 -05:00
|
|
|
<object class="GtkAdjustment" id="cursor_blink_time_adjustment">
|
|
|
|
<property name="lower">100</property>
|
|
|
|
<property name="upper">2500</property>
|
2011-01-31 16:30:01 +00:00
|
|
|
<property name="value">1000</property>
|
2011-01-25 22:54:04 -05:00
|
|
|
<property name="step_increment">200</property>
|
|
|
|
<property name="page_increment">200</property>
|
|
|
|
</object>
|
2016-07-22 15:26:10 -03:00
|
|
|
<template class="CcKeyboardPanel" parent="CcPanel">
|
2023-07-30 12:25:45 -04:00
|
|
|
|
2023-08-02 19:21:33 +04:00
|
|
|
<property name="child">
|
2023-07-30 12:25:45 -04:00
|
|
|
<object class="AdwToolbarView">
|
|
|
|
<child type="top">
|
2023-08-02 19:21:33 +04:00
|
|
|
<object class="AdwHeaderBar"/>
|
2022-02-12 14:36:34 -08:00
|
|
|
</child>
|
2023-07-30 12:25:45 -04:00
|
|
|
|
|
|
|
<property name="content">
|
|
|
|
<object class="AdwPreferencesPage">
|
2022-02-12 14:36:34 -08:00
|
|
|
<child>
|
2023-07-30 12:25:45 -04:00
|
|
|
<object class="AdwPreferencesGroup">
|
|
|
|
<property name="title" translatable="yes">Input Sources</property>
|
2024-02-02 16:33:16 +01:00
|
|
|
<property name="description" translatable="yes">Includes keyboard layouts and input methods</property>
|
2023-07-30 12:25:45 -04:00
|
|
|
<child>
|
|
|
|
<object class="CcInputListBox" id="input_list">
|
|
|
|
<property name="vexpand">False</property>
|
2020-07-24 09:06:36 -07:00
|
|
|
</object>
|
|
|
|
</child>
|
2022-02-12 15:00:05 -08:00
|
|
|
</object>
|
|
|
|
</child>
|
|
|
|
<child>
|
2023-07-30 12:25:45 -04:00
|
|
|
<object class="AdwPreferencesGroup" id="input_switch_group">
|
|
|
|
<property name="title" translatable="yes">Input Source Switching</property>
|
|
|
|
<child>
|
|
|
|
<object class="AdwActionRow">
|
|
|
|
<property name="title" translatable="yes">Use the _same source for all windows</property>
|
|
|
|
<property name="use-underline">True</property>
|
|
|
|
<property name="activatable-widget">same_source</property>
|
|
|
|
<child type="prefix">
|
|
|
|
<object class="GtkCheckButton" id="same_source">
|
|
|
|
<property name="valign">center</property>
|
|
|
|
</object>
|
|
|
|
</child>
|
|
|
|
</object>
|
|
|
|
</child>
|
|
|
|
<child>
|
|
|
|
<object class="AdwActionRow">
|
|
|
|
<property name="title" translatable="yes">Switch input sources _individually for each window</property>
|
|
|
|
<property name="use-underline">True</property>
|
|
|
|
<property name="activatable-widget">per_window_source</property>
|
|
|
|
<child type="prefix">
|
|
|
|
<object class="GtkCheckButton" id="per_window_source">
|
|
|
|
<property name="active" bind-source="same_source" bind-flags="sync-create|invert-boolean"/>
|
|
|
|
<property name="valign">center</property>
|
|
|
|
<property name="group">same_source</property>
|
|
|
|
</object>
|
|
|
|
</child>
|
2020-07-24 09:06:36 -07:00
|
|
|
</object>
|
|
|
|
</child>
|
2022-02-12 14:36:34 -08:00
|
|
|
</object>
|
|
|
|
</child>
|
|
|
|
<child>
|
2023-07-30 12:25:45 -04:00
|
|
|
<object class="AdwPreferencesGroup">
|
|
|
|
<property name="title" translatable="yes">Special Character Entry</property>
|
2024-02-02 16:33:16 +01:00
|
|
|
<property name="description" translatable="yes">Methods for entering symbols and letter variants using the keyboard</property>
|
2023-07-30 12:25:45 -04:00
|
|
|
<child>
|
|
|
|
<object class="CcListRow" id="alt_chars_row">
|
2023-11-20 23:28:03 -03:00
|
|
|
<property name="title" translatable="yes">A_lternate Characters Key</property>
|
2023-07-30 12:25:45 -04:00
|
|
|
<property name="show-arrow">True</property>
|
|
|
|
<property name="secondary-label" translatable="no">Right Alt</property>
|
|
|
|
<signal name="activated" handler="alt_chars_row_activated" object="CcKeyboardPanel" swapped="yes" />
|
|
|
|
</object>
|
|
|
|
</child>
|
|
|
|
<child>
|
|
|
|
<object class="CcListRow" id="compose_row">
|
2023-11-20 23:28:03 -03:00
|
|
|
<property name="title" translatable="yes">_Compose Key</property>
|
2023-07-30 12:25:45 -04:00
|
|
|
<property name="show-arrow">True</property>
|
|
|
|
<signal name="activated" handler="compose_row_activated" object="CcKeyboardPanel" swapped="yes" />
|
|
|
|
</object>
|
|
|
|
</child>
|
2022-02-12 14:36:34 -08:00
|
|
|
</object>
|
|
|
|
</child>
|
|
|
|
<child>
|
2023-07-30 12:25:45 -04:00
|
|
|
<object class="AdwPreferencesGroup">
|
|
|
|
<property name="title" translatable="yes">Keyboard Shortcuts</property>
|
|
|
|
<child>
|
|
|
|
<object class="CcListRow" id="common_shortcuts_row">
|
2023-11-20 23:28:03 -03:00
|
|
|
<property name="title" translatable="yes">_View and Customize Shortcuts</property>
|
2023-07-30 12:25:45 -04:00
|
|
|
<property name="show-arrow">True</property>
|
|
|
|
<signal name="activated" handler="keyboard_shortcuts_activated" object="CcKeyboardPanel" swapped="yes" />
|
|
|
|
</object>
|
|
|
|
</child>
|
2016-07-22 15:26:10 -03:00
|
|
|
</object>
|
|
|
|
</child>
|
|
|
|
</object>
|
2023-07-30 12:25:45 -04:00
|
|
|
</property>
|
2016-07-22 15:26:10 -03:00
|
|
|
</object>
|
2023-08-02 19:21:33 +04:00
|
|
|
</property>
|
2016-07-22 15:26:10 -03:00
|
|
|
</template>
|
2009-07-10 16:46:41 +02:00
|
|
|
</interface>
|