1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
10 * Copyright (C) 2002 Björn Stenberg
12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement.
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
18 ****************************************************************************/
23 #include "backlight.h"
26 #ifdef HAVE_REMOTE_LCD
27 #include "lcd-remote.h"
33 #include "mp3_playback.h"
42 #include "powermgmt.h"
53 #include "statusbar.h"
54 #include "screen_access.h"
61 #ifdef HAVE_LCD_BITMAP
62 #include <bitmaps/usblogo.h>
65 #ifdef HAVE_REMOTE_LCD
66 #include <bitmaps/remote_usblogo.h>
72 #if CONFIG_CODEC == SWCODEC
76 #ifdef HAVE_LCD_BITMAP
77 #define SCROLLBAR_WIDTH 6
80 /* only used in set_time screen */
81 #if defined(HAVE_LCD_BITMAP) && (CONFIG_RTC != 0)
82 static int clamp_value_wrap(int value
, int max
, int min
)
98 bool statusbar
= global_settings
.statusbar
; /* force the statusbar */
99 global_settings
.statusbar
= true;
101 show_main_backdrop();
103 #if defined(HAVE_REMOTE_LCD) && LCD_REMOTE_DEPTH > 1
104 show_remote_main_backdrop();
108 screens
[i
].backlight_on();
109 screens
[i
].clear_display();
111 if (i
== SCREEN_REMOTE
)
113 screens
[i
].bitmap(remote_usblogo
,
114 (LCD_REMOTE_WIDTH
-BMPWIDTH_remote_usblogo
),
115 (LCD_REMOTE_HEIGHT
-BMPHEIGHT_remote_usblogo
)/2,
116 BMPWIDTH_remote_usblogo
, BMPHEIGHT_remote_usblogo
);
121 #ifdef HAVE_LCD_BITMAP
122 screens
[i
].transparent_bitmap(usblogo
,
123 (LCD_WIDTH
-BMPWIDTH_usblogo
),
124 (LCD_HEIGHT
-BMPHEIGHT_usblogo
)/2,
125 BMPWIDTH_usblogo
, BMPHEIGHT_usblogo
);
127 screens
[i
].double_height(false);
128 screens
[i
].puts_scroll(0, 0, "[USB Mode]");
129 status_set_param(false);
130 status_set_audio(false);
131 status_set_usb(true);
132 #endif /* HAVE_LCD_BITMAP */
139 gui_syncstatusbar_draw(&statusbars
, true);
141 while (button_get(true) & BUTTON_REL
);
143 usb_acknowledge(SYS_USB_CONNECTED_ACK
);
144 while(usb_wait_for_disconnect_w_tmo(&button_queue
, HZ
)) {
146 #ifdef HAVE_MMC /* USB-MMC bridge can report activity */
147 led(mmc_usb_active(HZ
));
148 #endif /* HAVE_MMC */
149 gui_syncstatusbar_draw(&statusbars
, false);
152 #endif /* SIMULATOR */
153 #ifdef HAVE_LCD_CHARCELLS
154 status_set_usb(false);
155 #endif /* HAVE_LCD_CHARCELLS */
157 screens
[i
].backlight_on();
158 global_settings
.statusbar
= statusbar
;
159 #endif /* USB_NONE */
163 int mmc_remove_request(void)
165 struct queue_event ev
;
168 screens
[i
].clear_display();
169 gui_syncsplash(1, str(LANG_REMOVE_MMC
));
170 if (global_settings
.talk_menu
)
171 talk_id(LANG_REMOVE_MMC
, false);
175 queue_wait_w_tmo(&button_queue
, &ev
, HZ
/2);
178 case SYS_HOTSWAP_EXTRACTED
:
179 return SYS_HOTSWAP_EXTRACTED
;
181 case SYS_USB_DISCONNECTED
:
182 return SYS_USB_DISCONNECTED
;
188 /* the charging screen is only used for archos targets */
189 #if CONFIG_CHARGING && !defined(HAVE_POWEROFF_WHILE_CHARGING) && defined(CPU_SH)
191 #ifdef HAVE_LCD_BITMAP
192 static void charging_display_info(bool animate
)
194 unsigned char charging_logo
[36];
195 const int pox_x
= (LCD_WIDTH
- sizeof(charging_logo
)) / 2;
196 const int pox_y
= 32;
197 static unsigned phase
= 3;
202 #ifdef NEED_ATA_POWER_BATT_MEASURE
203 if (ide_powered()) /* FM and V2 can only measure when ATA power is on */
206 int battv
= battery_voltage();
207 snprintf(buf
, 32, " Batt: %d.%02dV %d%% ", battv
/ 1000,
208 (battv
% 1000) / 10, battery_level());
212 #if CONFIG_CHARGING == CHARGING_CONTROL
214 snprintf(buf
, 32, "Charge mode:");
217 if (charge_state
== CHARGING
)
218 snprintf(buf
, 32, str(LANG_BATTERY_CHARGE
));
219 else if (charge_state
== TOPOFF
)
220 snprintf(buf
, 32, str(LANG_BATTERY_TOPOFF_CHARGE
));
221 else if (charge_state
== TRICKLE
)
222 snprintf(buf
, 32, str(LANG_BATTERY_TRICKLE_CHARGE
));
224 snprintf(buf
, 32, "not charging");
227 if (!charger_enabled
)
229 #endif /* CONFIG_CHARGING == CHARGING_CONTROL */
233 memset(charging_logo
+3, 0x00, 32);
234 charging_logo
[0] = 0x3C;
235 charging_logo
[1] = 0x24;
236 charging_logo
[2] = charging_logo
[35] = 0xFF;
239 { /* draw the outline */
241 lcd_mono_bitmap(charging_logo
, pox_x
, pox_y
+ 8,
242 sizeof(charging_logo
), 8);
243 lcd_set_drawmode(DRMODE_FG
);
245 charging_logo
[0] = charging_logo
[1] = 0x00;
246 memset(charging_logo
+2, 0x80, 34);
247 lcd_mono_bitmap(charging_logo
, pox_x
, pox_y
, sizeof(charging_logo
), 8);
249 memset(charging_logo
+2, 0x01, 34);
250 lcd_mono_bitmap(charging_logo
, pox_x
, pox_y
+ 16,
251 sizeof(charging_logo
), 8);
252 lcd_set_drawmode(DRMODE_SOLID
);
255 { /* animate the middle part */
256 for (i
= 3; i
<MIN(sizeof(charging_logo
)-1, phase
); i
++)
258 if ((i
-phase
) % 8 == 0)
259 { /* draw a "bubble" here */
261 bitpos
= (phase
+ i
/8) % 15; /* "bounce" effect */
263 bitpos
= 14 - bitpos
;
264 charging_logo
[i
] = 0x01 << bitpos
;
267 lcd_mono_bitmap(charging_logo
, pox_x
, pox_y
+ 8,
268 sizeof(charging_logo
), 8);
273 #else /* not HAVE_LCD_BITMAP */
275 static unsigned long logo_chars
[4];
276 static const unsigned char logo_pattern
[] = {
277 0x07, 0x04, 0x1c, 0x14, 0x1c, 0x04, 0x07, 0, /* char 1 */
278 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1f, 0, /* char 2 */
279 0x1f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1f, 0, /* char 3 */
280 0x1f, 0x01, 0x01, 0x01, 0x01, 0x01, 0x1f, 0, /* char 4 */
283 static void logo_lock_patterns(bool on
)
289 for (i
= 0; i
< 4; i
++)
290 logo_chars
[i
] = lcd_get_locked_pattern();
294 for (i
= 0; i
< 4; i
++)
295 lcd_unlock_pattern(logo_chars
[i
]);
299 static void charging_display_info(bool animate
)
303 static unsigned phase
= 3;
306 battv
= battery_voltage();
307 snprintf(buf
, sizeof(buf
), " %d.%02dV", battv
/ 1000, (battv
% 1000) / 10);
310 memcpy(buf
, logo_pattern
, 32); /* copy logo patterns */
312 if (!animate
) /* build the screen */
314 lcd_double_height(false);
315 lcd_puts(0, 0, "[Charging]");
316 for (i
= 0; i
< 4; i
++)
317 lcd_putc(i
, 1, logo_chars
[i
]);
319 else /* animate the logo */
321 for (i
= 3; i
< MIN(19, phase
); i
++)
323 if ((i
- phase
) % 5 == 0)
324 { /* draw a "bubble" here */
325 ypos
= (phase
+ i
/5) % 9; /* "bounce" effect */
328 buf
[5 - ypos
+ 8 * (i
/5)] |= 0x10 >> (i
%5);
334 for (i
= 0; i
< 4; i
++)
335 lcd_define_pattern(logo_chars
[i
], buf
+ 8 * i
);
339 #endif /* (not) HAVE_LCD_BITMAP */
341 /* blocks while charging, returns on event:
342 1 if charger cable was removed
343 2 if Off/Stop key was pressed
344 3 if On key was pressed
345 4 if USB was connected */
347 int charging_screen(void)
352 ide_power_enable(false); /* power down the disk, else would be spinning */
355 backlight_set_timeout(global_settings
.backlight_timeout
);
356 #ifdef HAVE_REMOTE_LCD
357 remote_backlight_set_timeout(global_settings
.remote_backlight_timeout
);
359 backlight_set_timeout_plugged(global_settings
.backlight_timeout_plugged
);
360 gui_syncstatusbar_draw(&statusbars
, true);
362 #ifdef HAVE_LCD_CHARCELLS
363 logo_lock_patterns(true);
365 charging_display_info(false);
369 gui_syncstatusbar_draw(&statusbars
, false);
370 charging_display_info(true);
371 button
= get_action(CONTEXT_STD
,HZ
/3);
372 if (button
== ACTION_STD_OK
)
374 else if (usb_detect())
376 else if (!charger_inserted())
380 #ifdef HAVE_LCD_CHARCELLS
381 logo_lock_patterns(false);
385 #endif /* CONFIG_CHARGING && !HAVE_POWEROFF_WHILE_CHARGING && defined(CPU_SH) */
388 void charging_splash(void)
390 gui_syncsplash(2*HZ
, (unsigned char *)str(LANG_BATTERY_CHARGE
));
391 button_clear_queue();
396 #if defined(HAVE_LCD_BITMAP) && (CONFIG_RTC != 0)
398 /* little helper function for voice output */
399 static void say_time(int cursorpos
, const struct tm
*tm
)
404 if (!global_settings
.talk_menu
)
422 value
= tm
->tm_year
+ 1900;
429 if (cursorpos
== 4) /* month */
430 talk_id(LANG_MONTH_JANUARY
+ tm
->tm_mon
, false);
432 talk_value(value
, unit
, false);
439 #define SEPARATOR ":"
440 bool set_time_screen(const char* title
, struct tm
*tm
)
444 unsigned int i
, j
, s
;
446 unsigned int julianday
;
447 unsigned int realyear
;
449 unsigned int min
, max
;
450 unsigned int statusbar_height
= 0;
451 unsigned int separator_width
, weekday_width
;
452 unsigned int prev_line_height
;
453 int daysinmonth
[] = {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
454 unsigned char buffer
[20];
455 struct viewport vp
[NB_SCREENS
];
458 /* 6 possible cursor possitions, 2 values stored for each: x, y */
459 unsigned int cursor
[6][2];
462 unsigned char *ptr
[6];
464 if(global_settings
.statusbar
)
465 statusbar_height
= STATUSBAR_HEIGHT
;
467 /* speak selection when screen is entered */
468 say_time(cursorpos
, tm
);
471 /* for easy acess in the drawing loop */
472 ptr
[0] = buffer
; /* hours */
473 ptr
[1] = buffer
+ 3; /* minutes */
474 ptr
[2] = buffer
+ 6; /* seconds */
475 ptr
[3] = buffer
+ 9; /* year */
476 ptr
[4] = str(LANG_MONTH_JANUARY
+ tm
->tm_mon
); /* monthname */
477 ptr
[5] = buffer
+ 14; /* day of month */
479 /* calculate the number of days in febuary */
480 realyear
= tm
->tm_year
+ 1900;
481 if((realyear
% 4 == 0 && !(realyear
% 100 == 0)) || realyear
% 400 == 0)
486 /* fix day if month or year changed */
487 if (tm
->tm_mday
> daysinmonth
[tm
->tm_mon
])
488 tm
->tm_mday
= daysinmonth
[tm
->tm_mon
];
490 /* calculate day of week */
491 julianday
= tm
->tm_mday
;
492 for(i
= 0; (int)i
< tm
->tm_mon
; i
++) {
493 julianday
+= daysinmonth
[i
];
496 tm
->tm_wday
= (realyear
+ julianday
+ (realyear
- 1) / 4 -
497 (realyear
- 1) / 100 + (realyear
- 1) / 400 + 7 - 1) % 7;
499 /* put all the numbers we want from the tm struct into
500 an easily printable buffer */
501 snprintf(buffer
, sizeof(buffer
),
502 "%02d " "%02d " "%02d " "%04d " "%02d",
503 tm
->tm_hour
, tm
->tm_min
, tm
->tm_sec
,
504 tm
->tm_year
+1900, tm
->tm_mday
);
506 /* convert spaces in the buffer to '\0' to make it possible to work
507 directly on the buffer */
508 for(i
=0; i
< sizeof(buffer
); i
++)
516 viewport_set_defaults(&vp
[s
], s
);
517 nb_lines
= viewport_get_nb_lines(&vp
[s
]);
519 /* minimum lines needed is 2 + title line */
522 vp
[s
].font
= FONT_SYSFIXED
;
523 nb_lines
= viewport_get_nb_lines(&vp
[s
]);
526 /* recalculate the positions and offsets */
528 screens
[s
].getstringsize(title
, NULL
, &prev_line_height
);
530 prev_line_height
= 0;
532 screens
[s
].getstringsize(SEPARATOR
, &separator_width
, NULL
);
535 screens
[s
].getstringsize(str(LANG_WEEKDAY_SUNDAY
+ tm
->tm_wday
),
536 &weekday_width
, NULL
);
537 screens
[s
].getstringsize(" ", &separator_width
, NULL
);
539 for(i
=0, j
=0; i
< 6; i
++)
541 if(i
==3) /* second row */
543 j
= weekday_width
+ separator_width
;;
544 prev_line_height
*= 2;
546 screens
[s
].getstringsize(ptr
[i
], &width
, NULL
);
547 cursor
[i
][INDEX_Y
] = prev_line_height
+ statusbar_height
;
548 cursor
[i
][INDEX_X
] = j
;
549 j
+= width
+ separator_width
;
552 /* draw the screen */
553 screens
[s
].set_viewport(&vp
[s
]);
554 screens
[s
].clear_viewport();
555 /* display the screen title */
556 screens
[s
].puts_scroll(0, 0, title
);
558 /* these are not selectable, so we draw them outside the loop */
559 /* name of the week day */
560 screens
[s
].putsxy(0, cursor
[3][INDEX_Y
],
561 str(LANG_WEEKDAY_SUNDAY
+ tm
->tm_wday
));
563 /* draw the selected item with drawmode set to
564 DRMODE_SOLID|DRMODE_INVERSEVID, all other selectable
565 items with drawmode DRMODE_SOLID */
568 if (cursorpos
== (int)i
)
569 vp
[s
].drawmode
= (DRMODE_SOLID
|DRMODE_INVERSEVID
);
571 screens
[s
].putsxy(cursor
[i
][INDEX_X
],
572 cursor
[i
][INDEX_Y
], ptr
[i
]);
574 vp
[s
].drawmode
= DRMODE_SOLID
;
576 screens
[s
].putsxy(cursor
[i
/4 +1][INDEX_X
] - separator_width
,
577 cursor
[0][INDEX_Y
], SEPARATOR
);
580 /* print help text */
582 screens
[s
].puts(0, 4, str(LANG_TIME_SET_BUTTON
));
584 screens
[s
].puts(0, 5, str(LANG_TIME_REVERT
));
585 screens
[s
].update_viewport();
586 screens
[s
].set_viewport(NULL
);
588 gui_syncstatusbar_draw(&statusbars
, true);
590 /* set the most common numbers */
593 /* calculate the minimum and maximum for the number under cursor */
597 valptr
= &tm
->tm_hour
;
600 valptr
= &tm
->tm_min
;
603 valptr
= &tm
->tm_sec
;
608 valptr
= &tm
->tm_year
;
612 valptr
= &tm
->tm_mon
;
616 max
= daysinmonth
[tm
->tm_mon
];
617 valptr
= &tm
->tm_mday
;
621 button
= get_action(CONTEXT_SETTINGS_TIME
, TIMEOUT_BLOCK
);
623 case ACTION_STD_PREV
:
624 cursorpos
= clamp_value_wrap(--cursorpos
, 5, 0);
625 say_time(cursorpos
, tm
);
627 case ACTION_STD_NEXT
:
628 cursorpos
= clamp_value_wrap(++cursorpos
, 5, 0);
629 say_time(cursorpos
, tm
);
631 case ACTION_SETTINGS_INC
:
632 case ACTION_SETTINGS_INCREPEAT
:
633 *valptr
= clamp_value_wrap(++(*valptr
), max
, min
);
634 say_time(cursorpos
, tm
);
636 case ACTION_SETTINGS_DEC
:
637 case ACTION_SETTINGS_DECREPEAT
:
638 *valptr
= clamp_value_wrap(--(*valptr
), max
, min
);
639 say_time(cursorpos
, tm
);
646 case ACTION_STD_CANCEL
:
652 if (default_event_handler(button
) == SYS_USB_CONNECTED
)
659 #endif /* defined(HAVE_LCD_BITMAP) && (CONFIG_RTC != 0) */
661 #if (CONFIG_KEYPAD == RECORDER_PAD) && !defined(HAVE_SW_POWEROFF)
662 bool shutdown_screen(void)
666 long time_entered
= current_tick
;
670 gui_syncsplash(0, str(LANG_CONFIRM_SHUTDOWN
));
672 while(!done
&& TIME_BEFORE(current_tick
,time_entered
+HZ
*2))
674 button
= get_action(CONTEXT_STD
,HZ
);
677 case ACTION_STD_CANCEL
:
681 /* do nothing here, because ACTION_NONE might be caused
682 * by timeout or button release. In case of timeout the loop
683 * is terminated by TIME_BEFORE */
688 if(default_event_handler(button
) == SYS_USB_CONNECTED
)
698 static const int id3_headers
[]=
703 LANG_ID3_ALBUMARTIST
,
714 #if CONFIG_CODEC == SWCODEC
721 static char * id3_get_info(int selected_item
, void* data
,
722 char *buffer
, size_t buffer_len
)
724 struct mp3entry
* id3
=(struct mp3entry
*)data
;
725 int info_no
=selected_item
/2;
726 if(!(selected_item
%2))
728 return( str(id3_headers
[info_no
]));
736 case 0:/*LANG_ID3_TITLE*/
739 case 1:/*LANG_ID3_ARTIST*/
742 case 2:/*LANG_ID3_ALBUM*/
745 case 3:/*LANG_ID3_ALBUMARTIST*/
746 info
=id3
->albumartist
;
748 case 4:/*LANG_ID3_GROUPING*/
751 case 5:/*LANG_ID3_DISCNUM*/
752 if (id3
->disc_string
)
753 info
= id3
->disc_string
;
754 else if (id3
->discnum
)
756 snprintf(buffer
, buffer_len
, "%d", id3
->discnum
);
760 case 6:/*LANG_ID3_TRACKNUM*/
761 if (id3
->track_string
)
762 info
= id3
->track_string
;
763 else if (id3
->tracknum
)
765 snprintf(buffer
, buffer_len
, "%d", id3
->tracknum
);
769 case 7:/*LANG_ID3_COMMENT*/
772 case 8:/*LANG_ID3_GENRE*/
773 info
= id3
->genre_string
;
775 case 9:/*LANG_ID3_YEAR*/
776 if (id3
->year_string
)
777 info
= id3
->year_string
;
780 snprintf(buffer
, buffer_len
, "%d", id3
->year
);
784 case 10:/*LANG_ID3_LENGTH*/
785 format_time(buffer
, buffer_len
, id3
->length
);
788 case 11:/*LANG_ID3_PLAYLIST*/
789 snprintf(buffer
, buffer_len
, "%d/%d",
790 playlist_get_display_index(), playlist_amount());
793 case 12:/*LANG_ID3_BITRATE*/
794 snprintf(buffer
, buffer_len
, "%d kbps%s", id3
->bitrate
,
795 id3
->vbr
? str(LANG_ID3_VBR
) : (const unsigned char*) "");
798 case 13:/*LANG_ID3_FREQUENCY*/
799 snprintf(buffer
, buffer_len
, "%ld Hz", id3
->frequency
);
802 #if CONFIG_CODEC == SWCODEC
803 case 14:/*LANG_ID3_TRACK_GAIN*/
804 info
=id3
->track_gain_string
;
806 case 15:/*LANG_ID3_ALBUM_GAIN*/
807 info
=id3
->album_gain_string
;
809 case 16:/*LANG_ID3_PATH*/
811 case 14:/*LANG_ID3_PATH*/
816 return info
&& *info
? info
: (char*) str(LANG_ID3_NO_INFO
);
820 bool browse_id3(void)
822 struct gui_synclist id3_lists
;
823 struct mp3entry
* id3
= audio_current_track();
826 gui_synclist_init(&id3_lists
, &id3_get_info
, id3
, true, 2, NULL
);
827 gui_synclist_set_nb_items(&id3_lists
,
828 sizeof(id3_headers
)/sizeof(id3_headers
[0])*2);
829 gui_synclist_draw(&id3_lists
);
830 gui_syncstatusbar_draw(&statusbars
, true);
832 gui_syncstatusbar_draw(&statusbars
, false);
833 key
= get_action(CONTEXT_LIST
,HZ
/2);
834 if(key
!=ACTION_NONE
&& key
!=ACTION_UNKNOWN
835 && !gui_synclist_do_button(&id3_lists
, &key
,LIST_WRAP_UNLESS_HELD
))
837 return(default_event_handler(key
) == SYS_USB_CONNECTED
);
842 static char* runtime_get_data(int selected_item
, void* data
,
843 char* buffer
, size_t buffer_len
)
846 unsigned char *headers
[] = {str(LANG_RUNNING_TIME
), str(LANG_TOP_TIME
) };
848 if(!(selected_item
%2))
849 return headers
[selected_item
/2];
852 t
= global_status
.topruntime
;
854 else t
= global_status
.runtime
;
856 snprintf(buffer
, buffer_len
, "%dh %dm %ds",
857 t
/ 3600, (t
% 3600) / 60, t
% 60);
861 static int runtime_speak_data(int selected_item
, void* data
)
864 long title_ids
[] = {LANG_RUNNING_TIME
, LANG_TOP_TIME
};
866 title_ids
[selected_item
/2],
867 TALK_ID((selected_item
== 0) ? global_status
.runtime
868 : global_status
.topruntime
, UNIT_TIME
));
873 bool view_runtime(void)
875 static const char *lines
[]={ID2P(LANG_CLEAR_TIME
)};
876 static const struct text_message message
={lines
, 1};
878 struct gui_synclist lists
;
880 gui_synclist_init(&lists
, runtime_get_data
, NULL
, false, 2, NULL
);
881 #if !defined(HAVE_LCD_CHARCELLS)
882 gui_synclist_set_title(&lists
, str(LANG_RUNNING_TIME
), NOICON
);
884 gui_synclist_set_title(&lists
, NULL
, NOICON
);
886 if(global_settings
.talk_menu
)
887 gui_synclist_set_voice_callback(&lists
, runtime_speak_data
);
888 gui_synclist_set_icon_callback(&lists
, NULL
);
889 gui_synclist_set_nb_items(&lists
, 4);
890 gui_synclist_speak_item(&lists
);
894 if (charger_inserted()
895 #ifdef HAVE_USB_POWER
900 global_status
.runtime
= 0;
905 global_status
.runtime
+= ((current_tick
- lasttime
) / HZ
);
907 lasttime
= current_tick
;
908 gui_synclist_draw(&lists
);
909 gui_syncstatusbar_draw(&statusbars
, true);
910 list_do_action(CONTEXT_STD
, HZ
,
911 &lists
, &action
, LIST_WRAP_UNLESS_HELD
);
912 if(action
== ACTION_STD_CANCEL
)
914 if(action
== ACTION_STD_OK
) {
915 if(gui_syncyesno_run(&message
, NULL
, NULL
)==YESNO_YES
)
917 if (!(gui_synclist_get_sel_pos(&lists
)/2))
918 global_status
.runtime
= 0;
920 global_status
.topruntime
= 0;
921 gui_synclist_speak_item(&lists
);
924 if(default_event_handler(action
) == SYS_USB_CONNECTED
)