-rw-r--r-- | content/fireflix-panel.xul | 11 | ||||
-rw-r--r-- | content/fireflix.js | 13 |
2 files changed, 23 insertions, 1 deletions
diff --git a/content/fireflix-panel.xul b/content/fireflix-panel.xul index 62862a9..0e511c5 100644 --- a/content/fireflix-panel.xul +++ b/content/fireflix-panel.xul @@ -75,4 +75,13 @@ </popupset> + <commandset id="cmdset_setphotos"> + </commandset> + + <popupset> + <popup id="setphotos_menu"> + <menu label="&panel.setphotos.generate_html;" id="setphotos_html_menu"/> + </popup> + </popupset> + <commandset id="cmdset_uploads"> <command id="cmd_uploads_clear" label="&panel.uploads.clear.label;" @@ -200,5 +209,5 @@ <tree id="setphotos" rows="2" onselect="fireflix.photoset.on_select()" flex="1" ondblclick="fireflix.photoset.on_cmd_open(event)" - onkeypress="if(event.keyCode==event.DOM_VK_RETURN) fireflix.photoset.on_cmd_open(event)"> + onkeypress="if(event.keyCode==event.DOM_VK_RETURN) fireflix.photoset.on_cmd_open(event)" context="setphotos_menu"> <treecols> <treecol id="sp_title" label="&panel.setphotos.title.label;" flex="1" crop="end" align="start" tooltiptext="&panel.setphotos.title.tip;" /> diff --git a/content/fireflix.js b/content/fireflix.js index 328e9e2..995ec5c 100644 --- a/content/fireflix.js +++ b/content/fireflix.js @@ -666,4 +666,13 @@ var fireflix = { this.popup_content(rv); }, + on_cmd_setphotos_html: function(csfx,ev) { + var uti = csfx.charAt(0); var utl = csfx.charAt(1); + var rv = ''; + for(var p in this.photoset.photos) { + if(this.photoset.selection.isSelected(p)) + rv += this.photo_html(this.photoset.photos[p],uti,utl)+'\n'; + } + this.popup_content(rv); + }, on_cmd_uploads_html: function(csfx,ev) { @@ -924,4 +933,8 @@ var fireflix = { ); this.append_html_menu( + document.getElementById('setphotos_html_menu'), + 'stm_','m_bop','cmdset_setphotos','cmd_setphotos_html' + ); + this.append_html_menu( document.getElementById('uploads_html_menu'), 'stm_','m_bop','cmdset_uploads','cmd_uploads_html' |