aboutsummaryrefslogtreecommitdiffstats
path: root/res/xml
diff options
context:
space:
mode:
authorJeffrey Sharkey <jsharkey@jsharkey.org>2008-10-27 15:58:43 +0000
committerJeffrey Sharkey <jsharkey@jsharkey.org>2008-10-27 15:58:43 +0000
commitc394e79b95caaa2b0eb21241dacf5b7373cef887 (patch)
tree7af6489d0f0cf628038127d8a86f24be3134e643 /res/xml
parentcb8a0cf9827bcec452fd49023a2a940bdd334f62 (diff)
downloadconnectbot-c394e79b95caaa2b0eb21241dacf5b7373cef887.tar.gz
connectbot-c394e79b95caaa2b0eb21241dacf5b7373cef887.tar.bz2
connectbot-c394e79b95caaa2b0eb21241dacf5b7373cef887.zip
* finished implementing copy functionality
* added right or left alt- or shift- helping keys (/ and tab), disableable from settings * fixed a few random bugs
Diffstat (limited to 'res/xml')
-rw-r--r--res/xml/preferences.xml61
1 files changed, 39 insertions, 22 deletions
diff --git a/res/xml/preferences.xml b/res/xml/preferences.xml
index 825b457..317aa26 100644
--- a/res/xml/preferences.xml
+++ b/res/xml/preferences.xml
@@ -18,30 +18,47 @@
-->
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
- <ListPreference
- android:key="@string/pref_emulation"
- android:title="Emulation mode"
- android:summary="Terminal emulation mode to use for PTY connections"
- android:entries="@array/list_emulation_modes"
- android:defaultValue="screen"
- android:entryValues="@array/list_emulation_modes"
- android:singleLine="true"
- />
+ <PreferenceCategory
+ android:title="Terminal emulation">
+
+ <ListPreference
+ android:key="@string/pref_emulation"
+ android:title="Emulation mode"
+ android:summary="Terminal emulation mode to use for PTY connections"
+ android:entries="@array/list_emulation_modes"
+ android:defaultValue="screen"
+ android:entryValues="@array/list_emulation_modes"
+ />
+
+ <EditTextPreference
+ android:key="@string/pref_scrollback"
+ android:title="Scrollback size"
+ android:summary="Size of scrollback buffer to keep in memory for each console"
+ android:defaultValue="140"
+ android:singleLine="true"
+ />
+
+ </PreferenceCategory>
- <EditTextPreference
- android:key="@string/pref_scrollback"
- android:title="Scrollback size"
- android:summary="Size of scrollback buffer to keep in memory for each console"
- android:defaultValue="140"
- android:singleLine="true"
- />
+ <PreferenceCategory
+ android:title="User interface">
- <CheckBoxPreference
- android:key="@string/pref_keepalive"
- android:title="Keep phone awake"
- android:summary="Keep the screen from turning off when working in a console"
- android:defaultValue="true"
- />
+ <ListPreference
+ android:key="@string/pref_keymode"
+ android:title="Directory shortcuts"
+ android:summary="Select how to use Alt for '/' and Shift for Tab"
+ android:entries="@array/list_keymode"
+ android:defaultValue="Use right-side keys"
+ android:entryValues="@array/list_keymode"
+ />
+
+ <CheckBoxPreference
+ android:key="@string/pref_keepalive"
+ android:title="Keep screen awake"
+ android:summary="Prevent the screen from turning off when working in a console"
+ android:defaultValue="true"
+ />
+ </PreferenceCategory>
</PreferenceScreen> \ No newline at end of file