1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
10 * Copyright (C) 2002 Gilles Roux
12 * 2010 Yoshihisa Uchida
14 * This program is free software; you can redistribute it and/or
15 * modify it under the terms of the GNU General Public License
16 * as published by the Free Software Foundation; either version 2
17 * of the License, or (at your option) any later version.
19 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
20 * KIND, either express or implied.
22 ****************************************************************************/
24 #include "tv_action.h"
25 #include "tv_button.h"
26 #include "tv_preferences.h"
30 enum plugin_status
plugin_start(const void* file
)
33 int lastbutton
= BUTTON_NONE
;
34 bool autoscroll
= false;
37 bool display_update
= true;
38 const struct tv_preferences
*prefs
= tv_get_preferences();
40 old_tick
= *rb
->current_tick
;
46 rb
->splash(HZ
, "Error opening file");
51 rb
->lcd_set_backdrop(NULL
);
59 display_update
= true;
61 button
= rb
->button_get_w_tmo(HZ
/10);
69 enum tv_menu_result res
= tv_menu();
71 if (res
!= TV_MENU_RESULT_EXIT_MENU
)
75 if (res
== TV_MENU_RESULT_ATTACHED_USB
)
76 return PLUGIN_USB_CONNECTED
;
82 #ifdef TV_AUTOSCROLL_PRE
83 if (lastbutton
!= TV_AUTOSCROLL_PRE
)
86 autoscroll
= !autoscroll
;
90 case TV_SCROLL_UP
| BUTTON_REPEAT
:
93 case TV_SCROLL_UP2
| BUTTON_REPEAT
:
95 tv_scroll_up(TV_VERTICAL_SCROLL_PREFS
);
96 old_tick
= *rb
->current_tick
;
100 case TV_SCROLL_DOWN
| BUTTON_REPEAT
:
102 case TV_SCROLL_DOWN2
:
103 case TV_SCROLL_DOWN2
| BUTTON_REPEAT
:
105 tv_scroll_down(TV_VERTICAL_SCROLL_PREFS
);
106 old_tick
= *rb
->current_tick
;
110 case TV_SCREEN_LEFT
| BUTTON_REPEAT
:
111 if (prefs
->windows
> 1)
114 tv_scroll_left(TV_HORIZONTAL_SCROLL_PREFS
);
116 else { /* prefs->windows == 1 */
117 /* scroll to previous page */
118 tv_scroll_up(TV_VERTICAL_SCROLL_PAGE
);
126 case TV_SCREEN_RIGHT
:
127 case TV_SCREEN_RIGHT
| BUTTON_REPEAT
:
128 if (prefs
->windows
> 1)
131 tv_scroll_right(TV_HORIZONTAL_SCROLL_PREFS
);
133 else { /* prefs->windows == 1 */
134 /* scroll to next page */
135 tv_scroll_down(TV_VERTICAL_SCROLL_PAGE
);
145 case TV_LINE_UP
| BUTTON_REPEAT
:
146 /* Scroll up one line */
147 tv_scroll_up(TV_VERTICAL_SCROLL_LINE
);
148 old_tick
= *rb
->current_tick
;
152 case TV_LINE_DOWN
| BUTTON_REPEAT
:
153 /* Scroll down one line */
154 tv_scroll_down(TV_VERTICAL_SCROLL_LINE
);
155 old_tick
= *rb
->current_tick
;
158 #ifdef TV_COLUMN_LEFT
160 case TV_COLUMN_LEFT
| BUTTON_REPEAT
:
161 /* Scroll left one column */
162 tv_scroll_left(TV_HORIZONTAL_SCROLL_COLUMN
);
165 case TV_COLUMN_RIGHT
:
166 case TV_COLUMN_RIGHT
| BUTTON_REPEAT
:
167 /* Scroll right one column */
168 tv_scroll_right(TV_HORIZONTAL_SCROLL_COLUMN
);
184 tv_add_or_remove_bookmark();
188 if (rb
->default_event_handler_ex(button
, tv_exit
, NULL
)
189 == SYS_USB_CONNECTED
)
190 return PLUGIN_USB_CONNECTED
;
191 display_update
= false;
194 if (button
!= BUTTON_NONE
)
201 if(old_tick
<= *rb
->current_tick
- (110 - prefs
->autoscroll_speed
* 10))
203 tv_scroll_down(TV_VERTICAL_SCROLL_PREFS
);
204 old_tick
= *rb
->current_tick
;
205 display_update
= true;