summaryrefslogtreecommitdiff
path: root/apps/plugins/text_viewer/tv_preferences.h
diff options
context:
space:
mode:
authorYoshihisa Uchida <uchida@rockbox.org>2010-06-07 11:04:09 +0000
committerYoshihisa Uchida <uchida@rockbox.org>2010-06-07 11:04:09 +0000
commit1ce70a679c645c1886eff1d96c5c9f2a630066d6 (patch)
treec8923657ef6108481f789314202ba35c4563c0fb /apps/plugins/text_viewer/tv_preferences.h
parent04fd0ce374ff3b7c21ec9619a9b35f796b4d9168 (diff)
downloadrockbox-1ce70a679c645c1886eff1d96c5c9f2a630066d6.tar.gz
rockbox-1ce70a679c645c1886eff1d96c5c9f2a630066d6.zip
text viewer: can selected scroll by column/scroll by screen for the horizontal screen.
Viewer Options: "Scrollbar", "Overlap Pages", "Auto-Scroll Speed" move to Scroll Settings > Vertical. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26654 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/text_viewer/tv_preferences.h')
-rw-r--r--apps/plugins/text_viewer/tv_preferences.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/apps/plugins/text_viewer/tv_preferences.h b/apps/plugins/text_viewer/tv_preferences.h
index ca02c2b5c9..dc29dcae26 100644
--- a/apps/plugins/text_viewer/tv_preferences.h
+++ b/apps/plugins/text_viewer/tv_preferences.h
@@ -71,9 +71,14 @@ struct tv_preferences {
71 } footer_mode; 71 } footer_mode;
72 72
73 enum { 73 enum {
74 PAGE=0, 74 SCREEN = 0,
75 COLUMN,
76 } horizontal_scroll_mode;
77
78 enum {
79 PAGE = 0,
75 LINE, 80 LINE,
76 } scroll_mode; 81 } vertical_scroll_mode;
77 82
78 int autoscroll_speed; 83 int autoscroll_speed;
79 84