Warning, /network/kdeconnect-android/res/xml/mousepadplugin_preferences.xml is written in an unsupported language. File is not indexed.

0001 <?xml version="1.0" encoding="utf-8"?>
0002 
0003 <!--
0004 SPDX-FileCopyrightText: 2014 Rahil Momin <rahil.rules.you@gmail.com>
0005 
0006 SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
0007 -->
0008 
0009 <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
0010     xmlns:tools="http://schemas.android.com/tools"
0011     android:layout_width="match_parent"
0012     android:layout_height="match_parent"
0013     tools:keep="@xml/mousepadplugin_preferences">
0014 
0015     <ListPreference
0016         android:id="@+id/mousepad_single_tap_preference"
0017         android:defaultValue="@string/mousepad_default_single"
0018         android:entries="@array/mousepad_tap_entries"
0019         android:entryValues="@array/mousepad_tap_values"
0020         android:key="@string/mousepad_single_tap_key"
0021         android:summary="%s"
0022         android:title="@string/mousepad_single_tap_settings_title" />
0023 
0024     <ListPreference
0025         android:id="@+id/mousepad_double_tap_preference"
0026         android:defaultValue="@string/mousepad_default_double"
0027         android:entries="@array/mousepad_tap_entries"
0028         android:entryValues="@array/mousepad_tap_values"
0029         android:key="@string/mousepad_double_tap_key"
0030         android:summary="%s"
0031         android:title="@string/mousepad_double_tap_settings_title" />
0032 
0033     <ListPreference
0034         android:id="@+id/mousepad_triple_tap_preference"
0035         android:defaultValue="@string/mousepad_default_triple"
0036         android:entries="@array/mousepad_tap_entries"
0037         android:entryValues="@array/mousepad_tap_values"
0038         android:key="@string/mousepad_triple_tap_key"
0039         android:summary="%s"
0040         android:title="@string/mousepad_triple_tap_settings_title" />
0041 
0042     <ListPreference
0043         android:id="@+id/mousepad_sensitivity_preference"
0044         android:defaultValue="@string/mousepad_default_sensitivity"
0045         android:entries="@array/mousepad_sensitivity_entries"
0046         android:entryValues="@array/mousepad_sensitivity_values"
0047         android:key="@string/mousepad_sensitivity_key"
0048         android:summary="%s"
0049         android:title="@string/mousepad_sensitivity_settings_title" />
0050 
0051     <ListPreference
0052         android:id="@+id/mousepad_acceleration_profile_preference"
0053         android:defaultValue="@string/mousepad_default_acceleration_profile"
0054         android:entries="@array/mousepad_acceleration_profile_entries"
0055         android:entryValues="@array/mousepad_acceleration_profile_values"
0056         android:key="@string/mousepad_acceleration_profile_key"
0057         android:summary="%s"
0058         android:title="@string/mousepad_acceleration_profile_settings_title" />
0059 
0060     <SwitchPreference
0061         android:id="@+id/mousepad_scroll_preference"
0062         android:defaultValue="false"
0063         android:key="@string/mousepad_scroll_direction"
0064         android:title="@string/mousepad_scroll_direction_title" />
0065 
0066     <SeekBarPreference
0067         android:id="@+id/mousepad_scroll_sensitivity_pref"
0068         android:defaultValue="100"
0069         android:key="@string/mousepad_scroll_sensitivity"
0070         android:title="@string/mousepad_scroll_sensitivity_title"
0071         android:layout_width="wrap_content" />
0072 
0073 
0074     <SwitchPreference
0075         android:id="@+id/gyro_mouse_enabled"
0076         android:defaultValue="false"
0077         android:key="@string/gyro_mouse_enabled"
0078         android:title="@string/gyro_mouse_enabled_title" />
0079 
0080     <SeekBarPreference
0081         android:id="@+id/mousepad_gyro_sensitivity"
0082         android:defaultValue="100"
0083         android:key="@string/gyro_mouse_sensitivity"
0084         android:title="@string/gyro_mouse_sensitivity_title"
0085         android:layout_width="wrap_content" />
0086 
0087     <SwitchPreference
0088         android:id="@+id/mousepad_mouse_buttons_enabled_pref"
0089         android:defaultValue="true"
0090         android:key="@string/mousepad_mouse_buttons_enabled_pref"
0091         android:title="@string/mousepad_mouse_buttons_title" />
0092 
0093 
0094     <org.kde.kdeconnect.Helpers.LongSummaryPreferenceCategory
0095         android:key="@string/sendkeystrokes_pref_category"
0096         android:summary="@string/sendkeystrokes_pref_category_summary"
0097         android:title="@string/sendkeystrokes_pref_category_title">
0098 
0099         <SwitchPreference
0100             android:id="@+id/pref_keystrokes_enable"
0101             android:defaultValue="true"
0102             android:key="@string/pref_sendkeystrokes_enabled"
0103             android:title="@string/sendkeystrokes_pref_enabled"
0104             android:summary="@string/sendkeystrokes_pref_enabled_summary"
0105             />
0106 
0107         <SwitchPreference
0108             android:id="@+id/pref_send_safe_text_immediately"
0109             android:defaultValue="true"
0110             android:key="@string/pref_send_safe_text_immediately"
0111             android:title="@string/sendkeystrokes_safe_text_enabled"
0112             android:summary="@string/sendkeystrokes_safe_text_enabled_summary"
0113             />
0114 
0115     </org.kde.kdeconnect.Helpers.LongSummaryPreferenceCategory>
0116 </PreferenceScreen>