//---------------------------------------------------------------------------- // Copyright (C) 2008 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. //---------------------------------------------------------------------------- //============================================================================ // ToolBar //============================================================================ var IPython = (function (IPython) { var ToolBar = function (selector) { this.selector = selector; if (this.selector !== undefined) { this.element = $(selector); this.style(); } }; // add a group of button into the current toolbar. // // First argument : Mandatory // list of dict as argument, each dict should contain // 3 mandatory keys and values : // label : string -- the text to show on hover // icon : string -- the jQuery-ui icon to add on this button // callback : function -- the callback to execute on a click // // and optionnaly an 'id' key that is assigned to the button element // // Second Argument, optionnal, // string reprensenting the id to give to the button group. // // Example // // IPython.toolbar.add_button_group([ // {label:'my button', // icon:'ui-icon-disk', // callback:function(){alert('hoho'), // id : 'my_button_id', // this is optionnal // } // }, // {label:'my second button', // icon:'ui-icon-scissors', // callback:function(){alert('be carefull I cut')} // } // ], // "my_button_group_id" // ) // ToolBar.prototype.add_button_group = function(list, group_id){ var span_group = $(''); if( group_id != undefined ) span_group.attr('id',group_id) for(var el in list) { var button = $('