/** * @author AT * @since 2010-05-20 */ package com.astroplayerbeta.playback; interface IPlayerServiceCallback { void sync(boolean force); void firePositionChanged(long playlistId, int newPosition, long trackId); void fireRadioMetaChanged(String artist, String title, String album); void sdCardMounted(); void sdCardShared(); void setCurrentTabSettingsForVideoScreen(int val); int getCurrentTabSettingsForVideoScreen(); void setBackgroundVideoPlayback(boolean val); boolean getBackgroundVideoPlayback(); void setSubtitlesEnabled(boolean val); boolean getSubtitlesEnabled(); void setCurrentBackButtonSettingsForVideoScreen(int val); int getCurrentBackButtonSettingsForVideoScreen(); void loadOptions(); void saveOptions(); }