mirror of
https://github.com/memen45/SubMusic.git
synced 2026-02-18 00:57:39 +01:00
29 lines
846 B
MonkeyC
29 lines
846 B
MonkeyC
using Toybox.WatchUi;
|
|
|
|
// This is the menu with options to show before sync
|
|
class SubMusicConfigureSyncView extends WatchUi.Menu2 {
|
|
|
|
function initialize() {
|
|
Menu2.initialize({:title=>Rez.Strings.confSync_Title});
|
|
|
|
addItem(new WatchUi.MenuItem(
|
|
Rez.Strings.confSync_Playlists_label, // label
|
|
null, // sublabel
|
|
SyncMenu.PLAYLISTS, // identifier
|
|
null
|
|
));
|
|
addItem(new WatchUi.MenuItem(
|
|
Rez.Strings.confSync_startsync, // label
|
|
null, // sublabel
|
|
SyncMenu.START_SYNC, // identifier
|
|
null
|
|
));
|
|
addItem(new WatchUi.MenuItem(
|
|
Rez.Strings.confSync_Test_label, // label
|
|
Rez.Strings.confSync_Test_sublabel, // sublabel
|
|
SyncMenu.TEST, // identifier
|
|
null
|
|
));
|
|
}
|
|
}
|