##// END OF EJS Templates
test WinHPC launchers on all platforms...
test WinHPC launchers on all platforms the tests don't actually launch anything, they just write template files, so they can run on any platform.

File last commit:

r12649:4c1106f8
r12903:1e3f6739
Show More
celltoolbar.js
393 lines | 13.4 KiB | application/javascript | JavascriptLexer
Matthias BUSSONNIER
Add a per cell toolbar....
r9055 //----------------------------------------------------------------------------
// Copyright (C) 2012 The IPython Development Team
//
// Distributed under the terms of the BSD License. The full license is in
// the file COPYING, distributed as part of this software.
//----------------------------------------------------------------------------
//============================================================================
Matthias BUSSONNIER
rename metaui -> celltoolbar
r9064 // CellToolbar
Matthias BUSSONNIER
Add a per cell toolbar....
r9055 //============================================================================
/**
* A Module to control the per-cell toolbar.
* @module IPython
* @namespace IPython
Matthias BUSSONNIER
rename metaui -> celltoolbar
r9064 * @submodule CellToolbar
Matthias BUSSONNIER
Add a per cell toolbar....
r9055 */
var IPython = (function (IPython) {
"use strict";
/**
* @constructor
Matthias BUSSONNIER
rename metaui -> celltoolbar
r9064 * @class CellToolbar
Matthias BUSSONNIER
Add a per cell toolbar....
r9055 * @param {The cell to attach the metadata UI to} cell
*/
Matthias BUSSONNIER
rename metaui -> celltoolbar
r9064 var CellToolbar = function (cell) {
CellToolbar._instances.push(this);
Matthias BUSSONNIER
Add a per cell toolbar....
r9055 this.cell = cell;
Brian E. Granger
Fixing styling issues with CellToolbar....
r9142 this.create_element();
Matthias BUSSONNIER
Add a per cell toolbar....
r9055 this.rebuild();
return this;
};
Brian E. Granger
Fixing styling issues with CellToolbar....
r9142
CellToolbar.prototype.create_element = function () {
Matthias BUSSONNIER
remove one useless element
r9462 this.inner_element = $('<div/>').addClass('celltoolbar hbox reverse')
Brian Granger
Further cleanup for celltoolbars.
r9144 this.element = $('<div/>').addClass('ctb_hideshow')
Matthias BUSSONNIER
remove one useless element
r9462 .append(this.inner_element);
Brian E. Granger
Fixing styling issues with CellToolbar....
r9142 };
Brian Granger
Minor tweaks to the css to enable single cell hide/show.
r9145 // The default css style for the outer celltoolbar div
// (ctb_hideshow) is display: none. We add the ctb_show
// class to either 1) the body to show all cell's toolbars
// or 2) to the individual celltoolbar divs to show just one
// cell's toolbar.
Matthias BUSSONNIER
enable dropdown preset change
r9062
Matthias BUSSONNIER
gshow
r9143 CellToolbar.global_hide = function () {
Brian Granger
Further cleanup for celltoolbars.
r9144 $('body').removeClass('ctb_show');
Brian E. Granger
Fixing styling issues with CellToolbar....
r9142 }
Matthias BUSSONNIER
gshow
r9143 CellToolbar.global_show = function () {
Brian Granger
Further cleanup for celltoolbars.
r9144 $('body').addClass('ctb_show');
Matthias BUSSONNIER
gshow
r9143 }
Brian Granger
Minor tweaks to the css to enable single cell hide/show.
r9145
Matthias BUSSONNIER
gshow
r9143 CellToolbar.prototype.hide = function () {
Brian Granger
Further cleanup for celltoolbars.
r9144 this.element.removeClass('ctb_show');
Matthias BUSSONNIER
gshow
r9143 }
CellToolbar.prototype.show = function () {
Brian Granger
Further cleanup for celltoolbars.
r9144 this.element.addClass('ctb_show');
Brian E. Granger
Fixing styling issues with CellToolbar....
r9142 }
Matthias BUSSONNIER
enable dropdown preset change
r9062
Matthias BUSSONNIER
Add a per cell toolbar....
r9055 /**
* Class variable that should contain a dict of all availlable callback
* we need to think of wether or not we allow nested namespace
* @property _callback_dict
* @private
Matthias BUSSONNIER
change set_preset to activate_preset...
r9077 * @static
* @type Dict
Matthias BUSSONNIER
Add a per cell toolbar....
r9055 */
Matthias BUSSONNIER
rename metaui -> celltoolbar
r9064 CellToolbar._callback_dict = {};
Matthias BUSSONNIER
Add a per cell toolbar....
r9055
Brian Granger
Decoupling the celltoolbar select UI from CellToolbar....
r9146
Matthias BUSSONNIER
Add a per cell toolbar....
r9055 /**
* Class variable that should contain the reverse order list of the button
* to add to the toolbar of each cell
Matthias BUSSONNIER
rename _button_list to _ui_controls_list
r9066 * @property _ui_controls_list
Matthias BUSSONNIER
Add a per cell toolbar....
r9055 * @private
Matthias BUSSONNIER
change set_preset to activate_preset...
r9077 * @static
* @type List
Matthias BUSSONNIER
Add a per cell toolbar....
r9055 */
Matthias BUSSONNIER
rename _button_list to _ui_controls_list
r9066 CellToolbar._ui_controls_list = [];
Matthias BUSSONNIER
Add a per cell toolbar....
r9055
Brian Granger
Decoupling the celltoolbar select UI from CellToolbar....
r9146
Matthias BUSSONNIER
Add a per cell toolbar....
r9055 /**
Matthias BUSSONNIER
change set_preset to activate_preset...
r9077 * Class variable that should contains the CellToolbar instances for each
* cell of the notebook
*
Matthias BUSSONNIER
Add a per cell toolbar....
r9055 * @private
* @property _instances
Matthias BUSSONNIER
change set_preset to activate_preset...
r9077 * @static
* @type List
Matthias BUSSONNIER
Add a per cell toolbar....
r9055 */
Matthias BUSSONNIER
rename metaui -> celltoolbar
r9064 CellToolbar._instances =[]
Matthias BUSSONNIER
Add a per cell toolbar....
r9055
Brian Granger
Decoupling the celltoolbar select UI from CellToolbar....
r9146
Matthias BUSSONNIER
Add a per cell toolbar....
r9055 /**
* keep a list of all the availlabel presets for the toolbar
* @private
* @property _presets
Matthias BUSSONNIER
change set_preset to activate_preset...
r9077 * @static
* @type Dict
Matthias BUSSONNIER
Add a per cell toolbar....
r9055 */
Matthias BUSSONNIER
rename metaui -> celltoolbar
r9064 CellToolbar._presets ={}
Matthias BUSSONNIER
Add a per cell toolbar....
r9055
Brian Granger
Decoupling the celltoolbar select UI from CellToolbar....
r9146
Matthias BUSSONNIER
Add a per cell toolbar....
r9055 // this is by design not a prototype.
/**
* Register a callback to create an UI element in a cell toolbar.
* @method register_callback
* @param name {String} name to use to refer to the callback. It is advised to use a prefix with the name
* for easier sorting and avoid collision
* @param callback {function(div, cell)} callback that will be called to generate the ui element
*
*
* The callback will receive the following element :
*
* * a div in which to add element.
Matthias BUSSONNIER
change set_preset to activate_preset...
r9077 * * the cell it is responsible from
Matthias BUSSONNIER
Add a per cell toolbar....
r9055 *
* @example
*
* Example that create callback for a button that toggle between `true` and `false` label,
* with the metadata under the key 'foo' to reflect the status of the button.
*
* // first param reference to a DOM div
* // second param reference to the cell.
* var toggle = function(div, cell) {
* var button_container = $(div)
*
* // let's create a button that show the current value of the metadata
* var button = $('<div/>').button({label:String(cell.metadata.foo)});
*
* // On click, change the metadata value and update the button label
* button.click(function(){
* var v = cell.metadata.foo;
* cell.metadata.foo = !v;
Matthias BUSSONNIER
slightly generalize utils generator
r9072 * button.button("option", "label", String(!v));
Matthias BUSSONNIER
Add a per cell toolbar....
r9055 * })
*
* // add the button to the DOM div.
* button_container.append(button);
* }
*
* // now we register the callback under the name `foo` to give the
* // user the ability to use it later
Matthias BUSSONNIER
slightly generalize utils generator
r9072 * CellToolbar.register_callback('foo', toggle);
Matthias BUSSONNIER
Add a per cell toolbar....
r9055 */
Matthias BUSSONNIER
rename metaui -> celltoolbar
r9064 CellToolbar.register_callback = function(name, callback){
Matthias BUSSONNIER
change set_preset to activate_preset...
r9077 // Overwrite if it already exists.
Matthias BUSSONNIER
rename metaui -> celltoolbar
r9064 CellToolbar._callback_dict[name] = callback;
Matthias BUSSONNIER
Add a per cell toolbar....
r9055 };
Brian Granger
Decoupling the celltoolbar select UI from CellToolbar....
r9146
Matthias BUSSONNIER
Add a per cell toolbar....
r9055 /**
* Register a preset of UI element in a cell toolbar.
* Not supported Yet.
* @method register_preset
* @param name {String} name to use to refer to the preset. It is advised to use a prefix with the name
* for easier sorting and avoid collision
* @param preset_list {List of String} reverse order of the button in the toolbar. Each String of the list
* should correspond to a name of a registerd callback.
*
* @private
* @example
*
Matthias BUSSONNIER
slightly generalize utils generator
r9072 * CellToolbar.register_callback('foo.c1', function(div, cell){...});
* CellToolbar.register_callback('foo.c2', function(div, cell){...});
* CellToolbar.register_callback('foo.c3', function(div, cell){...});
* CellToolbar.register_callback('foo.c4', function(div, cell){...});
* CellToolbar.register_callback('foo.c5', function(div, cell){...});
Matthias BUSSONNIER
Add a per cell toolbar....
r9055 *
Matthias BUSSONNIER
slightly generalize utils generator
r9072 * CellToolbar.register_preset('foo.foo_preset1', ['foo.c1', 'foo.c2', 'foo.c5'])
* CellToolbar.register_preset('foo.foo_preset2', ['foo.c4', 'foo.c5'])
Matthias BUSSONNIER
Add a per cell toolbar....
r9055 */
Brian Granger
Decoupling the celltoolbar select UI from CellToolbar....
r9146 CellToolbar.register_preset = function(name, preset_list) {
Matthias BUSSONNIER
rename metaui -> celltoolbar
r9064 CellToolbar._presets[name] = preset_list
Brian Granger
Decoupling the celltoolbar select UI from CellToolbar....
r9146 $([IPython.events]).trigger('preset_added.CellToolbar', {name: name});
};
/**
* List the names of the presets that are currently registered.
*
* @method list_presets
* @static
*/
CellToolbar.list_presets = function() {
var keys = [];
for (var k in CellToolbar._presets) {
keys.push(k);
}
return keys;
};
Matthias BUSSONNIER
Add a per cell toolbar....
r9055 /**
Matthias BUSSONNIER
change set_preset to activate_preset...
r9077 * Activate an UI preset from `register_preset`
*
* This does not update the selection UI.
*
* @method activate_preset
Matthias BUSSONNIER
Add a per cell toolbar....
r9055 * @param preset_name {String} string corresponding to the preset name
*
* @static
* @private
* @example
*
Matthias BUSSONNIER
change set_preset to activate_preset...
r9077 * CellToolbar.activate_preset('foo.foo_preset1');
Matthias BUSSONNIER
Add a per cell toolbar....
r9055 */
Matthias BUSSONNIER
change set_preset to activate_preset...
r9077 CellToolbar.activate_preset= function(preset_name){
Matthias BUSSONNIER
rename metaui -> celltoolbar
r9064 var preset = CellToolbar._presets[preset_name];
Matthias BUSSONNIER
Add a per cell toolbar....
r9055
if(preset != undefined){
Matthias BUSSONNIER
rename _button_list to _ui_controls_list
r9066 CellToolbar._ui_controls_list = preset;
Matthias BUSSONNIER
rename metaui -> celltoolbar
r9064 CellToolbar.rebuild_all();
Matthias BUSSONNIER
Add a per cell toolbar....
r9055 }
}
Matthias BUSSONNIER
enable dropdown preset change
r9062
Matthias BUSSONNIER
Add a per cell toolbar....
r9055 /**
* This should be called on the class and not on a instance as it will trigger
* rebuild of all the instances.
* @method rebuild_all
* @static
*
*/
Matthias BUSSONNIER
rename metaui -> celltoolbar
r9064 CellToolbar.rebuild_all = function(){
for(var i in CellToolbar._instances){
CellToolbar._instances[i].rebuild();
Matthias BUSSONNIER
Add a per cell toolbar....
r9055 }
}
/**
* Rebuild all the button on the toolbar to update it's state.
* @method rebuild
*/
Matthias BUSSONNIER
rename metaui -> celltoolbar
r9064 CellToolbar.prototype.rebuild = function(){
Matthias BUSSONNIER
Add a per cell toolbar....
r9055 // strip evrything from the div
// which is probabli metainner.
Matthias BUSSONNIER
rename metaui -> celltoolbar
r9064 // or this.element.
this.inner_element.empty();
Matthias BUSSONNIER
Add a per cell toolbar....
r9055
Matthias BUSSONNIER
rename metaui -> celltoolbar
r9064 var cdict = CellToolbar._callback_dict;
Matthias BUSSONNIER
rename _button_list to _ui_controls_list
r9066 var preset = CellToolbar._ui_controls_list;
Matthias BUSSONNIER
Add a per cell toolbar....
r9055 // Yes we iterate on the class varaible, not the instance one.
Matthias BUSSONNIER
rename _button_list to _ui_controls_list
r9066 for ( var index in CellToolbar._ui_controls_list){
Matthias BUSSONNIER
Add a per cell toolbar....
r9055 var local_div = $('<div/>').addClass('button_container');
Matthias BUSSONNIER
add utils and docs for metadata UI...
r9056 // Note,
// do this the other way, wrap in try/catch and don't append if any errors.
Matthias BUSSONNIER
rename metaui -> celltoolbar
r9064 this.inner_element.append(local_div)
Matthias BUSSONNIER
slightly generalize utils generator
r9072 cdict[preset[index]](local_div, this.cell)
Matthias BUSSONNIER
Add a per cell toolbar....
r9055 }
}
Matthias BUSSONNIER
add utils and docs for metadata UI...
r9056 /**
*/
Matthias BUSSONNIER
rename metaui -> celltoolbar
r9064 CellToolbar.utils = {};
Matthias BUSSONNIER
add utils and docs for metadata UI...
r9056
Brian Granger
Decoupling the celltoolbar select UI from CellToolbar....
r9146
Matthias BUSSONNIER
add utils and docs for metadata UI...
r9056 /**
Matthias BUSSONNIER
slightly generalize utils generator
r9072 * A utility function to generate bindings between a checkbox and cell/metadata
Matthias BUSSONNIER
add utils and docs for metadata UI...
r9056 * @method utils.checkbox_ui_generator
* @static
*
* @param name {string} Label in front of the checkbox
Matthias BUSSONNIER
slightly generalize utils generator
r9072 * @param setter {function( cell, newValue )}
* A setter method to set the newValue
* @param getter {function( cell )}
* A getter methods which return the current value.
Matthias BUSSONNIER
add utils and docs for metadata UI...
r9056 *
* @return callback {function( div, cell )} Callback to be passed to `register_callback`
*
* @example
*
* An exmple that bind the subkey `slideshow.isSectionStart` to a checkbox with a `New Slide` label
*
Matthias BUSSONNIER
rename metaui -> celltoolbar
r9064 * var newSlide = CellToolbar.utils.checkbox_ui_generator('New Slide',
Matthias BUSSONNIER
add utils and docs for metadata UI...
r9056 * // setter
Matthias BUSSONNIER
slightly generalize utils generator
r9072 * function(cell, value){
Matthias BUSSONNIER
add utils and docs for metadata UI...
r9056 * // we check that the slideshow namespace exist and create it if needed
Matthias BUSSONNIER
slightly generalize utils generator
r9072 * if (cell.metadata.slideshow == undefined){cell.metadata.slideshow = {}}
Matthias BUSSONNIER
add utils and docs for metadata UI...
r9056 * // set the value
Matthias BUSSONNIER
slightly generalize utils generator
r9072 * cell.metadata.slideshow.isSectionStart = value
Matthias BUSSONNIER
add utils and docs for metadata UI...
r9056 * },
* //geter
Matthias BUSSONNIER
slightly generalize utils generator
r9072 * function(cell){ var ns = cell.metadata.slideshow;
Matthias BUSSONNIER
add utils and docs for metadata UI...
r9056 * // if the slideshow namespace does not exist return `undefined`
* // (will be interpreted as `false` by checkbox) otherwise
* // return the value
* return (ns == undefined)? undefined: ns.isSectionStart
* }
* );
*
Matthias BUSSONNIER
rename metaui -> celltoolbar
r9064 * CellToolbar.register_callback('newSlide', newSlide);
Matthias BUSSONNIER
add utils and docs for metadata UI...
r9056 *
*/
Matthias BUSSONNIER
slightly generalize utils generator
r9072 CellToolbar.utils.checkbox_ui_generator = function(name, setter, getter){
Matthias BUSSONNIER
add utils and docs for metadata UI...
r9056 return function(div, cell) {
var button_container = $(div)
Matthias BUSSONNIER
slightly generalize utils generator
r9072 var chkb = $('<input/>').attr('type', 'checkbox');
Brian E. Granger
Fixing styling issues with CellToolbar....
r9142 var lbl = $('<label/>').append($('<span/>').text(name));
Matthias BUSSONNIER
add utils and docs for metadata UI...
r9056 lbl.append(chkb);
Matthias BUSSONNIER
slightly generalize utils generator
r9072 chkb.attr("checked", getter(cell));
Matthias BUSSONNIER
add utils and docs for metadata UI...
r9056
chkb.click(function(){
Matthias BUSSONNIER
slightly generalize utils generator
r9072 var v = getter(cell);
setter(cell, !v);
chkb.attr("checked", !v);
Matthias BUSSONNIER
add utils and docs for metadata UI...
r9056 })
button_container.append($('<div/>').append(lbl));
}
}
Matthias BUSSONNIER
Add a per cell toolbar....
r9055
Brian Granger
Decoupling the celltoolbar select UI from CellToolbar....
r9146
Matthias BUSSONNIER
create metadata-dropdowm-menu generator
r9058 /**
Matthias BUSSONNIER
slightly generalize utils generator
r9072 * A utility function to generate bindings between a dropdown list cell
Matthias BUSSONNIER
create metadata-dropdowm-menu generator
r9058 * @method utils.select_ui_generator
* @static
*
* @param list_list {list of sublist} List of sublist of metadata value and name in the dropdown list.
* subslit shoud contain 2 element each, first a string that woul be displayed in the dropdown list,
Matthias BUSSONNIER
fixes #4039....
r12649 * and second the corresponding value to be passed to setter/return by getter. the corresponding value
* should not be "undefined" or behavior can be unexpected.
Matthias BUSSONNIER
slightly generalize utils generator
r9072 * @param setter {function( cell, newValue )}
* A setter method to set the newValue
* @param getter {function( cell )}
Matthias BUSSONNIER
create metadata-dropdowm-menu generator
r9058 * A getter methods which return the current value of the metadata.
* @param [label=""] {String} optionnal label for the dropdown menu
*
* @return callback {function( div, cell )} Callback to be passed to `register_callback`
*
* @example
*
Matthias BUSSONNIER
rename metaui -> celltoolbar
r9064 * var select_type = CellToolbar.utils.select_ui_generator([
Matthias BUSSONNIER
fixes #4039....
r12649 * ["<None>" , "None" ],
Matthias BUSSONNIER
slightly generalize utils generator
r9072 * ["Header Slide" , "header_slide" ],
* ["Slide" , "slide" ],
* ["Fragment" , "fragment" ],
* ["Skip" , "skip" ],
Matthias BUSSONNIER
create metadata-dropdowm-menu generator
r9058 * ],
* // setter
Matthias BUSSONNIER
slightly generalize utils generator
r9072 * function(cell, value){
Matthias BUSSONNIER
create metadata-dropdowm-menu generator
r9058 * // we check that the slideshow namespace exist and create it if needed
Matthias BUSSONNIER
slightly generalize utils generator
r9072 * if (cell.metadata.slideshow == undefined){cell.metadata.slideshow = {}}
Matthias BUSSONNIER
create metadata-dropdowm-menu generator
r9058 * // set the value
Matthias BUSSONNIER
slightly generalize utils generator
r9072 * cell.metadata.slideshow.slide_type = value
Matthias BUSSONNIER
create metadata-dropdowm-menu generator
r9058 * },
* //geter
Matthias BUSSONNIER
slightly generalize utils generator
r9072 * function(cell){ var ns = cell.metadata.slideshow;
Matthias BUSSONNIER
create metadata-dropdowm-menu generator
r9058 * // if the slideshow namespace does not exist return `undefined`
* // (will be interpreted as `false` by checkbox) otherwise
* // return the value
* return (ns == undefined)? undefined: ns.slide_type
* }
Matthias BUSSONNIER
slightly generalize utils generator
r9072 * CellToolbar.register_callback('slideshow.select', select_type);
Matthias BUSSONNIER
create metadata-dropdowm-menu generator
r9058 *
*/
Matthias BUSSONNIER
slightly generalize utils generator
r9072 CellToolbar.utils.select_ui_generator = function(list_list, setter, getter, label){
Matthias BUSSONNIER
create metadata-dropdowm-menu generator
r9058 label= label? label: "";
return function(div, cell) {
var button_container = $(div)
Brian E. Granger
Fixing styling issues with CellToolbar....
r9142 var lbl = $("<label/>").append($('<span/>').text(label));
var select = $('<select/>').addClass('ui-widget ui-widget-content');
Matthias BUSSONNIER
create metadata-dropdowm-menu generator
r9058 for(var itemn in list_list){
var opt = $('<option/>');
Matthias BUSSONNIER
slightly generalize utils generator
r9072 opt.attr('value', list_list[itemn][1])
Matthias BUSSONNIER
create metadata-dropdowm-menu generator
r9058 opt.text(list_list[itemn][0])
select.append(opt);
}
Matthias BUSSONNIER
slightly generalize utils generator
r9072 select.val(getter(cell));
Matthias BUSSONNIER
create metadata-dropdowm-menu generator
r9058 select.change(function(){
Matthias BUSSONNIER
slightly generalize utils generator
r9072 setter(cell, select.val());
Matthias BUSSONNIER
create metadata-dropdowm-menu generator
r9058 });
button_container.append($('<div/>').append(lbl).append(select));
}
};
Matthias BUSSONNIER
rename metaui -> celltoolbar
r9064 IPython.CellToolbar = CellToolbar;
Matthias BUSSONNIER
Add a per cell toolbar....
r9055
return IPython;
}(IPython));