1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-07 14:44:12 +01:00

Clean up Xulmus.

This commit is contained in:
Doug Kearns
2009-11-18 06:41:35 +11:00
parent 5fb9140b66
commit 3dd702f6da
4 changed files with 208 additions and 125 deletions

View File

@@ -169,12 +169,22 @@ const Config = Module("config", ConfigBase, {
} }
}, { }, {
/**
* Shows or hides the main service pane.
*
* @param {boolean} value Show the service pane if true, hide it if false.
*/
showServicePane: function (value) { showServicePane: function (value) {
const key = "splitter.servicepane_splitter.was_collapsed"; const key = "splitter.servicepane_splitter.was_collapsed";
gServicePane.open = value; gServicePane.open = value;
SBDataSetBoolValue(key, gServicePane.open); SBDataSetBoolValue(key, gServicePane.open);
}, },
/**
* Opens the display panel with the specified <b>id<b>.
*
* @param {string} id The ID of the display pane.
*/
openDisplayPane: function (id) { openDisplayPane: function (id) {
if (id == "servicepane") if (id == "servicepane")
this.showServicePane(true); this.showServicePane(true);
@@ -190,6 +200,11 @@ const Config = Module("config", ConfigBase, {
} }
}, },
/**
* Closes the display panel with the specified <b>id</b>
*
* @param {string} id The ID of the display pane.
*/
closeDisplayPane: function (id) { closeDisplayPane: function (id) {
if (id == "servicepane") if (id == "servicepane")
this.showServicePane(false); this.showServicePane(false);
@@ -198,6 +213,10 @@ const Config = Module("config", ConfigBase, {
}, },
// FIXME: best way to format these args? Hyphenated? One word like :dialog? // FIXME: best way to format these args? Hyphenated? One word like :dialog?
/**
* @property {object} A map of display pane command argument strings to
* panel element IDs.
*/
displayPanes: { displayPanes: {
"service pane left": "servicepane", "service pane left": "servicepane",
"content pane bottom": "displaypane_contentpane_bottom", "content pane bottom": "displaypane_contentpane_bottom",
@@ -287,9 +306,11 @@ const Config = Module("config", ConfigBase, {
}); });
}, },
services: function () { services: function () {
services.add("displayPaneManager", "@songbirdnest.com/Songbird/DisplayPane/Manager;1", Ci.sbIDisplayPaneManager);
services.add("mediaPageManager", "@songbirdnest.com/Songbird/MediaPageManager;1", Ci.sbIMediaPageManager);
services.add("propertyManager","@songbirdnest.com/Songbird/Properties/PropertyManager;1", Ci.sbIPropertyManager);
services.addClass("mutablePropertyArray", "@songbirdnest.com/Songbird/Properties/MutablePropertyArray;1", services.addClass("mutablePropertyArray", "@songbirdnest.com/Songbird/Properties/MutablePropertyArray;1",
Ci.sbIMutablePropertyArray); Ci.sbIMutablePropertyArray);
services.add("displayPaneManager", "@songbirdnest.com/Songbird/DisplayPane/Manager;1", Ci.sbIDisplayPaneManager);
} }
}); });

View File

@@ -5,14 +5,20 @@
// given in the LICENSE.txt file included with this file. // given in the LICENSE.txt file included with this file.
// TODO: flesh this out
const Library = Module("library", { const Library = Module("library", {
init: function () { init: function () {
this.MAIN_LIBRARY = LibraryUtils.mainLibrary; this.MAIN_LIBRARY = LibraryUtils.mainLibrary;
}, },
/**
* Converts an XPCOM enumerator to a JavaScript array.
*
* @param {nsISimpleEnumerator|nsIStringEnumerator|nsIArray} enum The enumerator to convert.
* @returns {Array}
*/
_toJSArray: function _toJSArray(enum) ArrayConverter.JSArray(enum), _toJSArray: function _toJSArray(enum) ArrayConverter.JSArray(enum),
// TODO: return some actually useful objects. ;-)
/** /**
* Returns an array of all the artist names in the main library. * Returns an array of all the artist names in the main library.
* *
@@ -20,12 +26,12 @@ const Library = Module("library", {
*/ */
getArtists: function getArtists() this._toJSArray(this.MAIN_LIBRARY.getDistinctValuesForProperty(SBProperties.artistName)), getArtists: function getArtists() this._toJSArray(this.MAIN_LIBRARY.getDistinctValuesForProperty(SBProperties.artistName)),
// FIXME: ken do we really want to remove duplicates? If so, why not tracks too? --djk // FIXME: Prathyush do we really want to remove duplicates? If so, why not tracks too? --djk
/** /**
* Returns an array of all the album names for <b>artist</b> in the * Returns an array of all the album names for <b>artist</b> in the
* main library. * main library.
* *
* @param {param} artist The artist name. * @param {string} artist The artist's name.
* @returns {string[]} * @returns {string[]}
*/ */
getAlbums: function getAlbums(artist) { getAlbums: function getAlbums(artist) {
@@ -38,8 +44,8 @@ const Library = Module("library", {
* Returns an array of all the track names for <b>artist</b> and * Returns an array of all the track names for <b>artist</b> and
* <b>album</b> in the main library. * <b>album</b> in the main library.
* *
* @param {param} artist The artist name. * @param {string} artist The artist's name.
* @param {param} album The album name. * @param {string} album The album's name.
* @returns {string[]} * @returns {string[]}
*/ */
getTracks: function getTracks(artist, album) { getTracks: function getTracks(artist, album) {

View File

@@ -16,20 +16,31 @@ const Player = Module("player", {
gMM.addListener(this._mediaCoreListener); gMM.addListener(this._mediaCoreListener);
}, },
destroy: function destroy() { destroy: function destroy() {
gMM.removeListener(this._mediaCoreListener); gMM.removeListener(this._mediaCoreListener);
}, },
// interval (milliseconds) /**
* Adjusts the track position <b>interval</b> milliseconds forwards or
* backwards.
*
* @param {number} interval The time interval (ms) to move the track
* position.
* @param {boolean} direction The direction in which to move the track
* position, forward if true otherwise backwards.
* @private
*/
_seek: function _seek(interval, direction) { _seek: function _seek(interval, direction) {
let position = gMM.playbackControl ? gMM.playbackControl.position : 0; let position = gMM.playbackControl ? gMM.playbackControl.position : 0;
player.seekTo(position + (direction ? interval : -interval)); player.seekTo(position + (direction ? interval : -interval));
}, },
_focusTrack: function _focusTrack(mediaItem) { /**
SBGetBrowser().mediaTab.mediaPage.highlightItem(_SBGetCurrentView().getIndexForItem(mediaItem)); * Listens for media core events and in response dispatches the appropriate
}, * autocommand events.
* @private
*/
_mediaCoreListener: { _mediaCoreListener: {
onMediacoreEvent: function (event) { onMediacoreEvent: function (event) {
switch (event.type) { switch (event.type) {
@@ -67,48 +78,73 @@ const Player = Module("player", {
} }
} }
}, },
// TODO: check bounds and round, 0 - 1 or 0 - 100?
/** /**
* @property {string} The player volume as a percentage. * @property {number} The player volume in the range 0.0-1.0.
*/ */
get volume() gMM.volumeControl.volume, get volume() gMM.volumeControl.volume,
set volume(value) { set volume(value) {
gMM.volumeControl.volume = value; gMM.volumeControl.volume = value;
}, },
// FIXME: can't be called from non-media tabs since 840e78 /**
play: function play() { * Focuses the specified media item in the current media view.
// Check if there is any selection in place, else play first item of the visible view. *
if (_SBGetCurrentView().selection.count != 0) { * @param {sbIMediaItem} mediaItem The media item to focus.
// Play the selection. */
gMM.sequencer.playView(_SBGetCurrentView(), _SBGetCurrentView().getIndexForItem(_SBGetCurrentView().selection.currentMediaItem)); focusTrack: function focusTrack(mediaItem) {
this._focusTrack(gMM.sequencer.currentItem); SBGetBrowser().mediaTab.mediaPage.highlightItem(_SBGetCurrentView().getIndexForItem(mediaItem));
}
else {
gMM.sequencer.playView(SBGetBrowser().currentMediaListView, 0);
this._focusTrack(gMM.sequencer.currentItem);
}
}, },
// FIXME: can't be called from non-media tabs since 840e78 (git)
// _SBGetCurrentView only returns the view in that tab - use SBGetBrowser().currentMediaListView
/**
* Plays the currently selected media item. If no item is selected the
* first item in the current media view is played.
*/
play: function play() {
// Check if there is any selection in place, else play first item of the visible view.
// TODO: this approach, or similar, should be generalised for all commands, PT? --djk
if (_SBGetCurrentView().selection.count != 0)
gMM.sequencer.playView(_SBGetCurrentView(),
_SBGetCurrentView().getIndexForItem(_SBGetCurrentView().selection.currentMediaItem));
else
gMM.sequencer.playView(SBGetBrowser().currentMediaListView, 0);
this.focusTrack(gMM.sequencer.currentItem);
},
/**
* Stops playback of the currently playing media item.
*/
stop: function stop() { stop: function stop() {
gMM.sequencer.stop(); gMM.sequencer.stop();
}, },
/**
* Plays the next media item in the current media view.
*/
next: function next() { next: function next() {
gSongbirdWindowController.doCommand("cmd_control_next"); ["cmd_control_next", "cmd_find_current_track"].forEach(gSongbirdWindowController.doCommand);
gSongbirdWindowController.doCommand("cmd_find_current_track");
}, },
/**
* Plays the previous media item in the current media view.
*/
previous: function previous() { previous: function previous() {
gSongbirdWindowController.doCommand("cmd_control_previous"); ["cmd_control_previous", "cmd_find_current_track"].forEach(gSongbirdWindowController.doCommand);
gSongbirdWindowController.doCommand("cmd_find_current_track");
}, },
/**
* Toggles the play/pause status of the current media item.
*/
togglePlayPause: function togglePlayPause() { togglePlayPause: function togglePlayPause() {
gSongbirdWindowController.doCommand("cmd_control_playpause"); ["cmd_control_playpause", "cmd_find_current_track"].forEach(gSongbirdWindowController.doCommand);
this._focusTrack(gMM.sequencer.currentItem);
}, },
/**
* Toggles the shuffle status of the sequencer.
*/
toggleShuffle: function toggleShuffle() { toggleShuffle: function toggleShuffle() {
if (gMM.sequencer.mode != gMM.sequencer.MODE_SHUFFLE) if (gMM.sequencer.mode != gMM.sequencer.MODE_SHUFFLE)
gMM.sequencer.mode = gMM.sequencer.MODE_SHUFFLE; gMM.sequencer.mode = gMM.sequencer.MODE_SHUFFLE;
@@ -116,7 +152,11 @@ const Player = Module("player", {
gMM.sequencer.mode = gMM.sequencer.MODE_FORWARD; gMM.sequencer.mode = gMM.sequencer.MODE_FORWARD;
}, },
// FIXME: not really toggling - good enough for now. // FIXME: not really toggling (depending on your definition) - good enough for now.
/**
* Toggles between the sequencer's three repeat modes: Repeat-One,
* Repeat-All and Repeat-None.
*/
toggleRepeat: function toggleRepeat() { toggleRepeat: function toggleRepeat() {
switch (gMM.sequencer.repeatMode) { switch (gMM.sequencer.repeatMode) {
case gMM.sequencer.MODE_REPEAT_NONE: case gMM.sequencer.MODE_REPEAT_NONE:
@@ -135,7 +175,7 @@ const Player = Module("player", {
}, },
/** /**
* Seek forward <b>interval</b> milliseconds in the currently playing * Seeks forward <b>interval</b> milliseconds in the currently playing
* track. * track.
* *
* @param {number} interval The time interval (ms) to advance the * @param {number} interval The time interval (ms) to advance the
@@ -146,7 +186,7 @@ const Player = Module("player", {
}, },
/** /**
* Seek backwards <b>interval</b> milliseconds in the currently * Seeks backwards <b>interval</b> milliseconds in the currently
* playing track. * playing track.
* *
* @param {number} interval The time interval (ms) to rewind the * @param {number} interval The time interval (ms) to rewind the
@@ -157,7 +197,7 @@ const Player = Module("player", {
}, },
/** /**
* Seek to a specific position in the currently playing track. * Seeks to a specific position in the currently playing track.
* *
* @param {number} The new position (ms) in the track. * @param {number} The new position (ms) in the track.
*/ */
@@ -172,50 +212,43 @@ const Player = Module("player", {
gMM.playbackControl.position = util.Math.constrain(position, min, max); gMM.playbackControl.position = util.Math.constrain(position, min, max);
}, },
// FIXME: 10% ? /**
// I think just general increments of say 0.05 might be better --djk * Increases the volume by 5% of the maximum volume.
*/
increaseVolume: function increaseVolume() { increaseVolume: function increaseVolume() {
gMM.volumeControl.volume = gMM.volumeControl.volume * 1.1; this.volume = util.Math.constrain(this.volume + 0.05, 0, 1);
}, },
/**
* Decreases the volume by 5% of the maximum volume.
*/
decreaseVolume: function decreaseVolume() { decreaseVolume: function decreaseVolume() {
if (gMM.volumeControl.volume == 0) this.volume = util.Math.constrain(this.volume - 0.05, 0, 1);
gMM.volumeControl.volume = 0.1;
else
gMM.volumeControl.volume = gMM.volumeControl.volume * 0.9;
}, },
// TODO: Document what this buys us over and above cmd_find_current_track
/**
* Focuses the currently playing track.
*/
focusPlayingTrack: function focusPlayingTrack() { focusPlayingTrack: function focusPlayingTrack() {
this._focusTrack(gMM.sequencer.currentItem); this.focusTrack(gMM.sequencer.currentItem);
}, },
listTracks: function listTracks(view) { /**
//let myView = LibraryUtils.createStandardMediaListView(LibraryUtils.mainLibrary, args); * Searches the current media view for <b>str</b>
let length = view.length; *
let tracksList = []; * @param {string} str The search string.
*/
for (let i = 0; i < length; i++) { searchView: function searchView(str) {
let mediaItem = view.getItemByIndex(i);
let trackName = mediaItem.getProperty(SBProperties.trackName);
let albumName = mediaItem.getProperty(SBProperties.albumName);
let artistName = mediaItem.getProperty(SBProperties.artistName);
tracksList[i] = [trackName, "Album : " + albumName + " Artist : " + artistName];
}
return tracksList;
},
searchView: function searchView(args) {
let currentView = _SBGetCurrentView(); let currentView = _SBGetCurrentView();
let mediaItemList = currentView.mediaList; let mediaItemList = currentView.mediaList;
let search = _getSearchString(currentView); let search = _getSearchString(currentView);
let searchString = ""; let searchString = "";
if (search != "") if (search != "") // XXX
searchString = args + " " + search; searchString = str + " " + search;
else else
searchString = args; searchString = str;
this._lastSearchString = searchString; this._lastSearchString = searchString;
@@ -224,12 +257,17 @@ const Player = Module("player", {
if (mySearchView.length) { if (mySearchView.length) {
this._lastSearchView = mySearchView; this._lastSearchView = mySearchView;
this._lastSearchIndex = 0; this._lastSearchIndex = 0;
this._focusTrack(mySearchView.getItemByIndex(this._lastSearchIndex)); this.focusTrack(mySearchView.getItemByIndex(this._lastSearchIndex));
} }
else else
liberator.echoerr("E486 Pattern not found: " + searchString, commandline.FORCE_SINGLELINE); liberator.echoerr("E486 Pattern not found: " + searchString, commandline.FORCE_SINGLELINE);
}, },
/**
* Repeats the previous view search.
*
* @param {boolean} reverse
*/
searchViewAgain: function searchViewAgain(reverse) { searchViewAgain: function searchViewAgain(reverse) {
function echo(str) { function echo(str) {
setTimeout(function () { setTimeout(function () {
@@ -256,7 +294,7 @@ const Player = Module("player", {
// FIXME: Implement for "?" --ken // FIXME: Implement for "?" --ken
commandline.echo("/" + this._lastSearchString, null, commandline.FORCE_SINGLELINE); commandline.echo("/" + this._lastSearchString, null, commandline.FORCE_SINGLELINE);
this._focusTrack(this._lastSearchView.getItemByIndex(this._lastSearchIndex)); this.focusTrack(this._lastSearchView.getItemByIndex(this._lastSearchIndex));
}, },
@@ -286,6 +324,11 @@ const Player = Module("player", {
// TODO: restore the view state if altered by an 'incsearch' search // TODO: restore the view state if altered by an 'incsearch' search
}, },
/**
* Returns an array of all available playlists.
*
* @returns {sbIMediaList[]}
*/
getPlaylists: function getPlaylists() { getPlaylists: function getPlaylists() {
let mainLibrary = LibraryUtils.mainLibrary; let mainLibrary = LibraryUtils.mainLibrary;
let playlists = [mainLibrary]; let playlists = [mainLibrary];
@@ -305,61 +348,73 @@ const Player = Module("player", {
return playlists; return playlists;
}, },
// Play track at 'row' in 'playlist' /**
playPlaylist: function playPlaylist(playlist, row) { * Plays the media item at <b>index</b> in <b>playlist</b>.
gMM.sequencer.playView(playlist.createView(), row); *
* @param {sbIMediaList} playlist
* @param {number} index
*/
playPlaylist: function playPlaylist(playlist, index) {
gMM.sequencer.playView(playlist.createView(), index);
}, },
/**
* Returns an array of all available media pages.
*
* @returns {sbIMediaPageInfo[]}
*/
getMediaPages: function getMediaPages() { getMediaPages: function getMediaPages() {
let list = gBrowser.currentMediaPage.mediaListView.mediaList; let list = SBGetBrowser().currentMediaPage.mediaListView.mediaList;
let pages = services.get("mediaPageManager").getAvailablePages(list); let pages = services.get("mediaPageManager").getAvailablePages(list);
return ArrayConverter.JSArray(pages).map(function (page) page.QueryInterface(Ci.sbIMediaPageInfo)); return ArrayConverter.JSArray(pages).map(function (page) page.QueryInterface(Ci.sbIMediaPageInfo));
}, },
loadMediaPage: function loadMediaList(page, list, view) { /**
* Loads the the specified media page into <b>view</b> with the given
* <b>list</b> of media items.
*
* @param {sbIMediaPage} page
* @param {sbIMediaList} list
* @param {sbIMediaView} view
*/
loadMediaPage: function loadMediaPage(page, list, view) {
services.get("mediaPageManager").setPage(list, page); services.get("mediaPageManager").setPage(list, page);
gBrowser.loadMediaList(list, null, null, view, null); SBGetBrowser().loadMediaList(list, null, null, view, null);
}, },
rateMediaItem: function rateMediaItem(rating) { /**
if (gMM.sequencer.currentItem) * Applys the specified <b>rating<b> to <b>mediaItem<b>.
gMM.sequencer.currentItem.setProperty(SBProperties.rating, rating); *
* @param {sbIMediaItem} mediaItem The media item to rate.
* @param {number} rating The star rating (1-5).
*/
rateMediaItem: function rateMediaItem(mediaItem, rating) {
mediaItem.setProperty(SBProperties.rating, rating);
}, },
getUserViewable: function getUserViewable() { // TODO: add all fields, and ascending arg
let propManager = services.get("propertyManager"); /**
let propEnumerator = propManager.propertyIDs; * Sorts the current media view by <b>field</b>.
let properties = []; *
* @param {string} field The sort field.
while (propEnumerator.hasMore()) { */
let propertyId = propEnumerator.getNext(); sortBy: function sortBy(property) {
if (propManager.getPropertyInfo(propertyId).userViewable) {
//liberator.dump("propertyId - " + propManager.getPropertyInfo(propertyId).id);
properties.push(propManager.getPropertyInfo(propertyId).displayName);
}
}
return properties;
},
sortBy: function sortBy(property, order) {
let properties = services.create("mutablePropertyArray"); let properties = services.create("mutablePropertyArray");
switch (property.string) { switch (property.string) {
case "#": case "#":
case "Title": case "Title":
properties.appendProperty(SBProperties.trackName, "a"); properties.appendProperty(SBProperties.trackName, "a");
break; break;
case "Rating": case "Rating":
properties.appendProperty(SBProperties.rating, 1); properties.appendProperty(SBProperties.rating, 1);
break; break;
case "Album": case "Album":
properties.appendProperty(SBProperties.albumName, "a"); properties.appendProperty(SBProperties.albumName, "a");
break; break;
default: default:
properties.appendProperty(SBProperties.trackName, "a"); properties.appendProperty(SBProperties.trackName, "a");
break; break;
} }
_SBGetCurrentView().setSort(properties); _SBGetCurrentView().setSort(properties);
@@ -367,11 +422,12 @@ const Player = Module("player", {
}, { }, {
}, { }, {
commandline: function () { commandline: function () {
commandline.registerCallback("change", modes.SEARCH_VIEW_FORWARD, function (str) { player.onSearchKeyPress(str); }); commandline.registerCallback("change", modes.SEARCH_VIEW_FORWARD, this.closure.onSearchKeyPress);
commandline.registerCallback("submit", modes.SEARCH_VIEW_FORWARD, function (str) { player.onSearchSubmit(str); }); commandline.registerCallback("submit", modes.SEARCH_VIEW_FORWARD, this.closure.onSearchSubmit);
commandline.registerCallback("cancel", modes.SEARCH_VIEW_FORWARD, function () { player.onSearchCancel(); }); commandline.registerCallback("cancel", modes.SEARCH_VIEW_FORWARD, this.closure.onSearchCancel);
}, },
commands: function () { commands: function () {
// TODO: clear up filter/Filter confusion
commands.add(["f[ilter]"], commands.add(["f[ilter]"],
"Filter tracks based on keywords {genre/artist/album/track}", "Filter tracks based on keywords {genre/artist/album/track}",
function (args) { function (args) {
@@ -383,8 +439,8 @@ const Player = Module("player", {
else { else {
SBGetBrowser().loadMediaList(LibraryUtils.mainLibrary, null, null, view, SBGetBrowser().loadMediaList(LibraryUtils.mainLibrary, null, null, view,
"chrome://songbird/content/mediapages/filtersPage.xul"); "chrome://songbird/content/mediapages/filtersPage.xul");
// TODO: make this this._focusTrack work ? // TODO: make this this.focusTrack work ?
this._focusTrack(view.getItemByIndex(0)); this.focusTrack(view.getItemByIndex(0));
} }
}, },
{ {
@@ -405,7 +461,7 @@ const Player = Module("player", {
for ([i, list] in Iterator(playlists)) { for ([i, list] in Iterator(playlists)) {
if (util.compareIgnoreCase(arg, list.name) == 0) { if (util.compareIgnoreCase(arg, list.name) == 0) {
SBGetBrowser().loadMediaList(playlists[i]); SBGetBrowser().loadMediaList(playlists[i]);
this._focusTrack(_SBGetCurrentView().getItemByIndex(0)); this.focusTrack(_SBGetCurrentView().getItemByIndex(0));
return; return;
} }
} }
@@ -479,7 +535,7 @@ const Player = Module("player", {
"Change the current media view", "Change the current media view",
function (args) { function (args) {
// FIXME: is this a SB restriction? --djk // FIXME: is this a SB restriction? --djk
if (!gBrowser.currentMediaPage) if (!SBGetBrowser().currentMediaPage)
return void liberator.echoerr("Exxx: Can only set the media view from the media tab"); // XXX return void liberator.echoerr("Exxx: Can only set the media view from the media tab"); // XXX
let arg = args[0]; let arg = args[0];
@@ -489,7 +545,8 @@ const Player = Module("player", {
for ([, page] in Iterator(pages)) { for ([, page] in Iterator(pages)) {
if (util.compareIgnoreCase(arg, page.contentTitle) == 0) { if (util.compareIgnoreCase(arg, page.contentTitle) == 0) {
player.loadMediaPage(page, gBrowser.currentMediaListView.mediaList, gBrowser.currentMediaListView); player.loadMediaPage(page, SBGetBrowser().currentMediaListView.mediaList,
SBGetBrowser().currentMediaListView);
return; return;
} }
} }
@@ -503,21 +560,15 @@ const Player = Module("player", {
literal: 0 literal: 0
}); });
// TODO: Add a completer and order option
commands.add(["sort[view]"], commands.add(["sort[view]"],
"Sort the current media view", "Sort the current media view",
function (args) { function (args) { player.sortBy(args, true); });
player.sortBy(args, true);
});
// FIXME: use :add -q like cmus? (not very vim-like are it's multi-option commands) --djk // FIXME: use :add -q like cmus? (not very vim-like are it's multi-option commands) --djk
commands.add(["qu[eue]"], commands.add(["qu[eue]"],
"Queue tracks by artist/album/track", "Queue tracks by artist/album/track",
function (args) { function (args) {
// Store the old view
// let prev_view = gMM.status.view;
let library = LibraryUtils.mainLibrary;
let mainView = library.createView();
let properties = services.create("mutablePropertyArray"); let properties = services.create("mutablePropertyArray");
// args // args
@@ -533,7 +584,10 @@ const Player = Module("player", {
break; break;
} }
gMM.sequencer.playView(mainView, mainView.getIndexForItem(library.getItemsByProperties(properties).queryElementAt(0, Ci.sbIMediaItem))); let library = LibraryUtils.mainLibrary;
let mainView = library.createView();
gMM.sequencer.playView(mainView,
mainView.getIndexForItem(library.getItemsByProperties(properties).queryElementAt(0, Ci.sbIMediaItem)));
player.focusPlayingTrack(); player.focusPlayingTrack();
}, },
{ {
@@ -654,11 +708,11 @@ const Player = Module("player", {
{ count: true }); { count: true });
mappings.add([modes.PLAYER], mappings.add([modes.PLAYER],
["=", "+"], "Increase volume by 10%", ["=", "+"], "Increase volume by 5% of the maximum",
function () { player.increaseVolume(); }); function () { player.increaseVolume(); });
mappings.add([modes.PLAYER], mappings.add([modes.PLAYER],
["-"], "Decrease volume by 10%", ["-"], "Decrease volume by 5% of the maximum",
function () { player.decreaseVolume(); }); function () { player.decreaseVolume(); });
mappings.add([modes.PLAYER], mappings.add([modes.PLAYER],
@@ -677,7 +731,14 @@ const Player = Module("player", {
let (rating = i) { let (rating = i) {
mappings.add([modes.PLAYER], mappings.add([modes.PLAYER],
["<C-" + rating + ">"], "Rate the current media item " + rating, ["<C-" + rating + ">"], "Rate the current media item " + rating,
function () { player.rateMediaItem(rating); }); function () {
let item = gMM.sequencer.currentItem || _SBGetCurrentView().selection.currentMediaItem; // XXX: a bit too magic
if (item)
player.rateMediaItem(item, rating);
else
liberator.beep();
}
);
}; };
} }
}, },
@@ -700,14 +761,9 @@ const Player = Module("player", {
"Play tracks in shuffled order", "Play tracks in shuffled order",
"boolean", false, "boolean", false,
{ {
setter: function (value) value ? gMM.sequencer.mode = gMM.sequencer.MODE_SHUFFLE : setter: function (value) gMM.sequencer.mode = value ? gMM.sequencer.MODE_SHUFFLE : gMM.sequencer.MODE_FORWARD,
gMM.sequencer.mode = gMM.sequencer.MODE_FORWARD,
getter: function () gMM.sequencer.mode == gMM.sequencer.MODE_SHUFFLE getter: function () gMM.sequencer.mode == gMM.sequencer.MODE_SHUFFLE
}); });
},
services: function () {
services.add("mediaPageManager", "@songbirdnest.com/Songbird/MediaPageManager;1", Ci.sbIMediaPageManager);
services.add("propertyManager","@songbirdnest.com/Songbird/Properties/PropertyManager;1", Ci.sbIPropertyManager);
} }
}); });

View File

@@ -218,7 +218,7 @@
<spec>=</spec> <spec>=</spec>
<description> <description>
<p> <p>
Increase volume by 10%. Increase volume by 5% of the maximum.
</p> </p>
</description> </description>
</item> </item>
@@ -229,7 +229,7 @@
<spec>-</spec> <spec>-</spec>
<description> <description>
<p> <p>
Decrease volume by 10%. Decrease volume by 5% of the maximum.
</p> </p>
</description> </description>
</item> </item>