e44a7e37b6
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@151 b3834d28-1941-0410-a4f8-b48e95affb8f
54 lines
1.6 KiB
JavaScript
54 lines
1.6 KiB
JavaScript
if(!dojo._hasResource["dijit.Toolbar"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code.
|
|
dojo._hasResource["dijit.Toolbar"] = true;
|
|
dojo.provide("dijit.Toolbar");
|
|
|
|
dojo.require("dijit._Widget");
|
|
dojo.require("dijit._Container");
|
|
dojo.require("dijit._Templated");
|
|
|
|
dojo.declare("dijit.Toolbar",
|
|
[dijit._Widget, dijit._Templated, dijit._KeyNavContainer],
|
|
{
|
|
// summary: A Toolbar widget, used to hold things like dijit.Editor buttons
|
|
|
|
templateString:
|
|
'<div class="dijit dijitToolbar" waiRole="toolbar" tabIndex="${tabIndex}" dojoAttachPoint="containerNode">' +
|
|
// '<table style="table-layout: fixed" class="dijitReset dijitToolbarTable">' + // factor out style
|
|
// '<tr class="dijitReset" dojoAttachPoint="containerNode"></tr>'+
|
|
// '</table>' +
|
|
'</div>',
|
|
|
|
tabIndex: "0",
|
|
|
|
postCreate: function(){
|
|
this.connectKeyNavHandlers(
|
|
this.isLeftToRight() ? [dojo.keys.LEFT_ARROW] : [dojo.keys.RIGHT_ARROW],
|
|
this.isLeftToRight() ? [dojo.keys.RIGHT_ARROW] : [dojo.keys.LEFT_ARROW]
|
|
);
|
|
},
|
|
|
|
startup: function(){
|
|
if(this._started){ return; }
|
|
|
|
this.startupKeyNavChildren();
|
|
|
|
this.inherited(arguments);
|
|
}
|
|
}
|
|
);
|
|
|
|
// Combine with dijit.MenuSeparator??
|
|
dojo.declare("dijit.ToolbarSeparator",
|
|
[ dijit._Widget, dijit._Templated ],
|
|
{
|
|
// summary: A spacer between two Toolbar items
|
|
templateString: '<div class="dijitToolbarSeparator dijitInline"></div>',
|
|
postCreate: function(){ dojo.setSelectable(this.domNode, false); },
|
|
isFocusable: function(){
|
|
// summary: This widget isn't focusable, so pass along that fact.
|
|
return false;
|
|
}
|
|
|
|
});
|
|
|
|
}
|