a:32:{s:9:"#provides";s:27:"dijit.layout.StackContainer";s:9:"#resource";s:24:"layout/StackContainer.js";s:9:"#requires";a:4:{i:0;a:2:{i:0;s:6:"common";i:1;s:16:"dijit._Templated";}i:1;a:2:{i:0;s:6:"common";i:1;s:26:"dijit.layout._LayoutWidget";}i:2;a:3:{i:0;s:6:"common";i:1;s:11:"dojo.cookie";i:2;s:4:"dojo";}i:3;a:2:{i:0;s:6:"common";i:1;s:28:"dijit.layout.StackController";}}s:27:"dijit.layout.StackContainer";a:5:{s:4:"type";s:8:"Function";s:6:"chains";a:2:{s:9:"prototype";a:1:{i:0;s:26:"dijit.layout._LayoutWidget";}s:4:"call";a:1:{i:0;s:26:"dijit.layout._LayoutWidget";}}s:7:"summary";s:74:"A container that has multiple children, but shows only one child at a time";s:11:"description";s:235:"A container for widgets (ContentPanes, for example) That displays only one Widget at a time. Publishes topics [widgetId]-addChild, [widgetId]-removeChild, and [widgetId]-selectChild Can be base class for container, Wizard, Show, etc.";s:9:"classlike";b:1;}s:36:"dijit.layout.StackContainer.doLayout";a:3:{s:9:"prototype";s:27:"dijit.layout.StackContainer";s:4:"type";s:7:"Boolean";s:7:"summary";s:73:"If true, change the size of my currently displayed child to match my size";}s:35:"dijit.layout.StackContainer.persist";a:3:{s:9:"prototype";s:27:"dijit.layout.StackContainer";s:4:"type";s:7:"Boolean";s:7:"summary";s:44:"Remembers the selected child across sessions";}s:37:"dijit.layout.StackContainer.baseClass";a:2:{s:9:"prototype";s:27:"dijit.layout.StackContainer";s:7:"summary";s:0:"";}s:36:"dijit.layout.StackContainer._started";a:4:{s:9:"prototype";s:27:"dijit.layout.StackContainer";s:4:"type";s:7:"Boolean";s:7:"summary";s:117:"startup() has completed. TODO: comment this section out, it's just needed for documentation. Plus, move it to _Widget";s:7:"private";b:1;}s:47:"dijit.layout.StackContainer.selectedChildWidget";a:4:{s:9:"prototype";s:27:"dijit.layout.StackContainer";s:8:"instance";s:27:"dijit.layout.StackContainer";s:4:"type";s:6:"Widget";s:7:"summary";s:54:"References the currently selected child widget, if any";}s:38:"dijit.layout.StackContainer.postCreate";a:4:{s:9:"prototype";s:27:"dijit.layout.StackContainer";s:4:"type";s:8:"Function";s:6:"source";s:197:" this.inherited(arguments); dojo.addClass(this.domNode, "dijitLayoutContainer"); dijit.setWaiRole(this.containerNode, "tabpanel"); this.connect(this.domNode, "onkeypress", this._onKeyPress);";s:7:"summary";s:0:"";}s:35:"dijit.layout.StackContainer.startup";a:4:{s:9:"prototype";s:27:"dijit.layout.StackContainer";s:4:"type";s:8:"Function";s:6:"source";s:1461:" if(this._started){ return; } var children = this.getChildren(); // Setup each page panel to be initially hidden dojo.forEach(children, this._setupChild, this); // Figure out which child to initially display, defaulting to first one if(this.persist){ this.selectedChildWidget = dijit.byId(dojo.cookie(this.id + "_selectedChild")); }else{ dojo.some(children, function(child){ if(child.selected){ this.selectedChildWidget = child; } return child.selected; }, this); } var selected = this.selectedChildWidget; if(!selected && children[0]){ selected = this.selectedChildWidget = children[0]; selected.selected = true; } // Publish information about myself so any StackControllers can initialize. // This needs to happen before this.inherited(arguments) so that for // TabContainer, this._contentBox doesn't include the space for the tab labels. dojo.publish(this.id+"-startup", [{children: children, selected: selected}]); // Show the initially selected child (do this before this.inherited() call, // because child can't size correctly if it's hidden). // TODO: this will call onShow() on the child widget before startup() which is weird. if(selected){ this._showChild(selected); } // Startup each child widget, and do initial layout like setting this._contentBox, // then calls this.resize() which does the initial sizing on the selected child. this.inherited(arguments);";s:7:"summary";s:0:"";}s:39:"dijit.layout.StackContainer._setupChild";a:7:{s:9:"prototype";s:27:"dijit.layout.StackContainer";s:4:"type";s:8:"Function";s:10:"parameters";a:1:{s:5:"child";a:1:{s:4:"type";s:6:"Widget";}}s:6:"source";s:3367:"dojo.provide("dijit.layout.StackContainer"); dojo.require("dijit._Templated"); dojo.require("dijit.layout._LayoutWidget"); dojo.requireLocalization("dijit", "common"); dojo.require("dojo.cookie"); dojo.declare( "dijit.layout.StackContainer", dijit.layout._LayoutWidget, { // summary: // A container that has multiple children, but shows only // one child at a time // // description: // A container for widgets (ContentPanes, for example) That displays // only one Widget at a time. // // Publishes topics [widgetId]-addChild, [widgetId]-removeChild, and [widgetId]-selectChild // // Can be base class for container, Wizard, Show, etc. // doLayout: Boolean // If true, change the size of my currently displayed child to match my size doLayout: true, // persist: Boolean // Remembers the selected child across sessions persist: false, // Boolean baseClass: "dijitStackContainer", // _started: Boolean // startup() has completed. // TODO: comment this section out, it's just needed for documentation. // Plus, move it to _Widget _started: false, // selectedChildWidget: Widget // References the currently selected child widget, if any // selectedChildWidget: null, postCreate: function(){ this.inherited(arguments); dojo.addClass(this.domNode, "dijitLayoutContainer"); dijit.setWaiRole(this.containerNode, "tabpanel"); this.connect(this.domNode, "onkeypress", this._onKeyPress); }, startup: function(){ if(this._started){ return; } var children = this.getChildren(); // Setup each page panel to be initially hidden dojo.forEach(children, this._setupChild, this); // Figure out which child to initially display, defaulting to first one if(this.persist){ this.selectedChildWidget = dijit.byId(dojo.cookie(this.id + "_selectedChild")); }else{ dojo.some(children, function(child){ if(child.selected){ this.selectedChildWidget = child; } return child.selected; }, this); } var selected = this.selectedChildWidget; if(!selected && children[0]){ selected = this.selectedChildWidget = children[0]; selected.selected = true; } // Publish information about myself so any StackControllers can initialize. // This needs to happen before this.inherited(arguments) so that for // TabContainer, this._contentBox doesn't include the space for the tab labels. dojo.publish(this.id+"-startup", [{children: children, selected: selected}]); // Show the initially selected child (do this before this.inherited() call, // because child can't size correctly if it's hidden). // TODO: this will call onShow() on the child widget before startup() which is weird. if(selected){ this._showChild(selected); } // Startup each child widget, and do initial layout like setting this._contentBox, // then calls this.resize() which does the initial sizing on the selected child. this.inherited(arguments); }, _setupChild: function(/*Widget*/ child){ // Overrides _LayoutWidget._setupChild() this.inherited(arguments); dojo.removeClass(child.domNode, "dijitVisible"); dojo.addClass(child.domNode, "dijitHidden"); // remove the title attribute so it doesn't show up when i hover // over a node child.domNode.title = ""; return child; // dijit._Widget (TODO: remove this, return code is unused)";s:7:"returns";s:57:"dijit._Widget (TODO: remove this, return code is unused)";s:7:"private";b:1;s:7:"summary";s:0:"";}s:36:"dijit.layout.StackContainer.addChild";a:6:{s:9:"prototype";s:27:"dijit.layout.StackContainer";s:4:"type";s:8:"Function";s:10:"parameters";a:2:{s:5:"child";a:1:{s:4:"type";s:6:"Widget";}s:11:"insertIndex";a:2:{s:8:"optional";b:1;s:4:"type";s:7:"Integer";}}s:6:"source";s:3903:"dojo.provide("dijit.layout.StackContainer"); dojo.require("dijit._Templated"); dojo.require("dijit.layout._LayoutWidget"); dojo.requireLocalization("dijit", "common"); dojo.require("dojo.cookie"); dojo.declare( "dijit.layout.StackContainer", dijit.layout._LayoutWidget, { // summary: // A container that has multiple children, but shows only // one child at a time // // description: // A container for widgets (ContentPanes, for example) That displays // only one Widget at a time. // // Publishes topics [widgetId]-addChild, [widgetId]-removeChild, and [widgetId]-selectChild // // Can be base class for container, Wizard, Show, etc. // doLayout: Boolean // If true, change the size of my currently displayed child to match my size doLayout: true, // persist: Boolean // Remembers the selected child across sessions persist: false, // Boolean baseClass: "dijitStackContainer", // _started: Boolean // startup() has completed. // TODO: comment this section out, it's just needed for documentation. // Plus, move it to _Widget _started: false, // selectedChildWidget: Widget // References the currently selected child widget, if any // selectedChildWidget: null, postCreate: function(){ this.inherited(arguments); dojo.addClass(this.domNode, "dijitLayoutContainer"); dijit.setWaiRole(this.containerNode, "tabpanel"); this.connect(this.domNode, "onkeypress", this._onKeyPress); }, startup: function(){ if(this._started){ return; } var children = this.getChildren(); // Setup each page panel to be initially hidden dojo.forEach(children, this._setupChild, this); // Figure out which child to initially display, defaulting to first one if(this.persist){ this.selectedChildWidget = dijit.byId(dojo.cookie(this.id + "_selectedChild")); }else{ dojo.some(children, function(child){ if(child.selected){ this.selectedChildWidget = child; } return child.selected; }, this); } var selected = this.selectedChildWidget; if(!selected && children[0]){ selected = this.selectedChildWidget = children[0]; selected.selected = true; } // Publish information about myself so any StackControllers can initialize. // This needs to happen before this.inherited(arguments) so that for // TabContainer, this._contentBox doesn't include the space for the tab labels. dojo.publish(this.id+"-startup", [{children: children, selected: selected}]); // Show the initially selected child (do this before this.inherited() call, // because child can't size correctly if it's hidden). // TODO: this will call onShow() on the child widget before startup() which is weird. if(selected){ this._showChild(selected); } // Startup each child widget, and do initial layout like setting this._contentBox, // then calls this.resize() which does the initial sizing on the selected child. this.inherited(arguments); }, _setupChild: function(/*Widget*/ child){ // Overrides _LayoutWidget._setupChild() this.inherited(arguments); dojo.removeClass(child.domNode, "dijitVisible"); dojo.addClass(child.domNode, "dijitHidden"); // remove the title attribute so it doesn't show up when i hover // over a node child.domNode.title = ""; return child; // dijit._Widget (TODO: remove this, return code is unused) }, addChild: function(/*Widget*/ child, /*Integer?*/ insertIndex){ // Overrides _Container.addChild() to do layout and publish events this.inherited(arguments); if(this._started){ dojo.publish(this.id+"-addChild", [child, insertIndex]); // in case the tab titles have overflowed from one line to two lines // (or, if this if first child, from zero lines to one line) this.layout(); // if this is the first child, then select it if(!this.selectedChildWidget){ this.selectChild(child); } }";s:7:"returns";s:57:"dijit._Widget (TODO: remove this, return code is unused)";s:7:"summary";s:0:"";}s:39:"dijit.layout.StackContainer.removeChild";a:6:{s:9:"prototype";s:27:"dijit.layout.StackContainer";s:4:"type";s:8:"Function";s:10:"parameters";a:1:{s:4:"page";a:1:{s:4:"type";s:6:"Widget";}}s:6:"source";s:4718:"dojo.provide("dijit.layout.StackContainer"); dojo.require("dijit._Templated"); dojo.require("dijit.layout._LayoutWidget"); dojo.requireLocalization("dijit", "common"); dojo.require("dojo.cookie"); dojo.declare( "dijit.layout.StackContainer", dijit.layout._LayoutWidget, { // summary: // A container that has multiple children, but shows only // one child at a time // // description: // A container for widgets (ContentPanes, for example) That displays // only one Widget at a time. // // Publishes topics [widgetId]-addChild, [widgetId]-removeChild, and [widgetId]-selectChild // // Can be base class for container, Wizard, Show, etc. // doLayout: Boolean // If true, change the size of my currently displayed child to match my size doLayout: true, // persist: Boolean // Remembers the selected child across sessions persist: false, // Boolean baseClass: "dijitStackContainer", // _started: Boolean // startup() has completed. // TODO: comment this section out, it's just needed for documentation. // Plus, move it to _Widget _started: false, // selectedChildWidget: Widget // References the currently selected child widget, if any // selectedChildWidget: null, postCreate: function(){ this.inherited(arguments); dojo.addClass(this.domNode, "dijitLayoutContainer"); dijit.setWaiRole(this.containerNode, "tabpanel"); this.connect(this.domNode, "onkeypress", this._onKeyPress); }, startup: function(){ if(this._started){ return; } var children = this.getChildren(); // Setup each page panel to be initially hidden dojo.forEach(children, this._setupChild, this); // Figure out which child to initially display, defaulting to first one if(this.persist){ this.selectedChildWidget = dijit.byId(dojo.cookie(this.id + "_selectedChild")); }else{ dojo.some(children, function(child){ if(child.selected){ this.selectedChildWidget = child; } return child.selected; }, this); } var selected = this.selectedChildWidget; if(!selected && children[0]){ selected = this.selectedChildWidget = children[0]; selected.selected = true; } // Publish information about myself so any StackControllers can initialize. // This needs to happen before this.inherited(arguments) so that for // TabContainer, this._contentBox doesn't include the space for the tab labels. dojo.publish(this.id+"-startup", [{children: children, selected: selected}]); // Show the initially selected child (do this before this.inherited() call, // because child can't size correctly if it's hidden). // TODO: this will call onShow() on the child widget before startup() which is weird. if(selected){ this._showChild(selected); } // Startup each child widget, and do initial layout like setting this._contentBox, // then calls this.resize() which does the initial sizing on the selected child. this.inherited(arguments); }, _setupChild: function(/*Widget*/ child){ // Overrides _LayoutWidget._setupChild() this.inherited(arguments); dojo.removeClass(child.domNode, "dijitVisible"); dojo.addClass(child.domNode, "dijitHidden"); // remove the title attribute so it doesn't show up when i hover // over a node child.domNode.title = ""; return child; // dijit._Widget (TODO: remove this, return code is unused) }, addChild: function(/*Widget*/ child, /*Integer?*/ insertIndex){ // Overrides _Container.addChild() to do layout and publish events this.inherited(arguments); if(this._started){ dojo.publish(this.id+"-addChild", [child, insertIndex]); // in case the tab titles have overflowed from one line to two lines // (or, if this if first child, from zero lines to one line) this.layout(); // if this is the first child, then select it if(!this.selectedChildWidget){ this.selectChild(child); } } }, removeChild: function(/*Widget*/ page){ // Overrides _Container.removeChild() to do layout and publish events this.inherited(arguments); // If we are being destroyed than don't run the code below (to select another page), because we are deleting // every page one by one if(this._beingDestroyed){ return; } if(this._started){ // this will notify any tablists to remove a button; do this first because it may affect sizing dojo.publish(this.id+"-removeChild", [page]); // in case the tab titles now take up one line instead of two lines this.layout(); } if(this.selectedChildWidget === page){ this.selectedChildWidget = undefined; if(this._started){ var children = this.getChildren(); if(children.length){ this.selectChild(children[0]); } } }";s:7:"returns";s:57:"dijit._Widget (TODO: remove this, return code is unused)";s:7:"summary";s:0:"";}s:39:"dijit.layout.StackContainer.selectChild";a:5:{s:9:"prototype";s:27:"dijit.layout.StackContainer";s:4:"type";s:8:"Function";s:10:"parameters";a:1:{s:4:"page";a:1:{s:4:"type";s:6:"Widget";}}s:6:"source";s:355:" page = dijit.byId(page); if(this.selectedChildWidget != page){ // Deselect old page and select new one this._transition(page, this.selectedChildWidget); this.selectedChildWidget = page; dojo.publish(this.id+"-selectChild", [page]); if(this.persist){ dojo.cookie(this.id + "_selectedChild", this.selectedChildWidget.id); } }";s:7:"summary";s:56:"Show the given widget (which must be one of my children)";}s:39:"dijit.layout.StackContainer._transition";a:7:{s:9:"prototype";s:27:"dijit.layout.StackContainer";s:4:"type";s:8:"Function";s:10:"parameters";a:2:{s:9:"newWidget";a:1:{s:4:"type";s:6:"Widget";}s:9:"oldWidget";a:1:{s:4:"type";s:6:"Widget";}}s:6:"source";s:392:" if(oldWidget){ this._hideChild(oldWidget); } this._showChild(newWidget); // Size the new widget, in case this is the first time it's being shown, // or I have been resized since the last time it was shown. // Note that page must be visible for resizing to work. if(this.doLayout && newWidget.resize){ newWidget.resize(this._containerContentBox || this._contentBox); }";s:7:"summary";s:80:"Hide the old widget and display the new widget. Subclasses should override this.";s:4:"tags";s:19:"protected extension";s:7:"private";b:1;}s:37:"dijit.layout.StackContainer._adjacent";a:7:{s:9:"prototype";s:27:"dijit.layout.StackContainer";s:4:"type";s:8:"Function";s:10:"parameters";a:1:{s:7:"forward";a:1:{s:4:"type";s:7:"Boolean";}}s:6:"source";s:209:" var children = this.getChildren(); var index = dojo.indexOf(children, this.selectedChildWidget); index += forward ? 1 : children.length - 1; return children[ index % children.length ]; // dijit._Widget";s:7:"summary";s:81:"Gets the next/previous child widget in this container from the current selection.";s:7:"returns";s:13:"dijit._Widget";s:7:"private";b:1;}s:35:"dijit.layout.StackContainer.forward";a:4:{s:9:"prototype";s:27:"dijit.layout.StackContainer";s:4:"type";s:8:"Function";s:6:"source";s:41:" this.selectChild(this._adjacent(true));";s:7:"summary";s:21:"Advance to next page.";}s:32:"dijit.layout.StackContainer.back";a:4:{s:9:"prototype";s:27:"dijit.layout.StackContainer";s:4:"type";s:8:"Function";s:6:"source";s:42:" this.selectChild(this._adjacent(false));";s:7:"summary";s:25:"Go back to previous page.";}s:39:"dijit.layout.StackContainer._onKeyPress";a:6:{s:9:"prototype";s:27:"dijit.layout.StackContainer";s:4:"type";s:8:"Function";s:10:"parameters";a:1:{s:1:"e";a:1:{s:4:"type";s:0:"";}}s:6:"source";s:68:" dojo.publish(this.id+"-containerKeyPress", [{ e: e, page: this}]);";s:7:"private";b:1;s:7:"summary";s:0:"";}s:34:"dijit.layout.StackContainer.layout";a:5:{s:9:"prototype";s:27:"dijit.layout.StackContainer";s:4:"type";s:8:"Function";s:6:"source";s:6721:"dojo.provide("dijit.layout.StackContainer"); dojo.require("dijit._Templated"); dojo.require("dijit.layout._LayoutWidget"); dojo.requireLocalization("dijit", "common"); dojo.require("dojo.cookie"); dojo.declare( "dijit.layout.StackContainer", dijit.layout._LayoutWidget, { // summary: // A container that has multiple children, but shows only // one child at a time // // description: // A container for widgets (ContentPanes, for example) That displays // only one Widget at a time. // // Publishes topics [widgetId]-addChild, [widgetId]-removeChild, and [widgetId]-selectChild // // Can be base class for container, Wizard, Show, etc. // doLayout: Boolean // If true, change the size of my currently displayed child to match my size doLayout: true, // persist: Boolean // Remembers the selected child across sessions persist: false, // Boolean baseClass: "dijitStackContainer", // _started: Boolean // startup() has completed. // TODO: comment this section out, it's just needed for documentation. // Plus, move it to _Widget _started: false, // selectedChildWidget: Widget // References the currently selected child widget, if any // selectedChildWidget: null, postCreate: function(){ this.inherited(arguments); dojo.addClass(this.domNode, "dijitLayoutContainer"); dijit.setWaiRole(this.containerNode, "tabpanel"); this.connect(this.domNode, "onkeypress", this._onKeyPress); }, startup: function(){ if(this._started){ return; } var children = this.getChildren(); // Setup each page panel to be initially hidden dojo.forEach(children, this._setupChild, this); // Figure out which child to initially display, defaulting to first one if(this.persist){ this.selectedChildWidget = dijit.byId(dojo.cookie(this.id + "_selectedChild")); }else{ dojo.some(children, function(child){ if(child.selected){ this.selectedChildWidget = child; } return child.selected; }, this); } var selected = this.selectedChildWidget; if(!selected && children[0]){ selected = this.selectedChildWidget = children[0]; selected.selected = true; } // Publish information about myself so any StackControllers can initialize. // This needs to happen before this.inherited(arguments) so that for // TabContainer, this._contentBox doesn't include the space for the tab labels. dojo.publish(this.id+"-startup", [{children: children, selected: selected}]); // Show the initially selected child (do this before this.inherited() call, // because child can't size correctly if it's hidden). // TODO: this will call onShow() on the child widget before startup() which is weird. if(selected){ this._showChild(selected); } // Startup each child widget, and do initial layout like setting this._contentBox, // then calls this.resize() which does the initial sizing on the selected child. this.inherited(arguments); }, _setupChild: function(/*Widget*/ child){ // Overrides _LayoutWidget._setupChild() this.inherited(arguments); dojo.removeClass(child.domNode, "dijitVisible"); dojo.addClass(child.domNode, "dijitHidden"); // remove the title attribute so it doesn't show up when i hover // over a node child.domNode.title = ""; return child; // dijit._Widget (TODO: remove this, return code is unused) }, addChild: function(/*Widget*/ child, /*Integer?*/ insertIndex){ // Overrides _Container.addChild() to do layout and publish events this.inherited(arguments); if(this._started){ dojo.publish(this.id+"-addChild", [child, insertIndex]); // in case the tab titles have overflowed from one line to two lines // (or, if this if first child, from zero lines to one line) this.layout(); // if this is the first child, then select it if(!this.selectedChildWidget){ this.selectChild(child); } } }, removeChild: function(/*Widget*/ page){ // Overrides _Container.removeChild() to do layout and publish events this.inherited(arguments); // If we are being destroyed than don't run the code below (to select another page), because we are deleting // every page one by one if(this._beingDestroyed){ return; } if(this._started){ // this will notify any tablists to remove a button; do this first because it may affect sizing dojo.publish(this.id+"-removeChild", [page]); // in case the tab titles now take up one line instead of two lines this.layout(); } if(this.selectedChildWidget === page){ this.selectedChildWidget = undefined; if(this._started){ var children = this.getChildren(); if(children.length){ this.selectChild(children[0]); } } } }, selectChild: function(/*Widget*/ page){ // summary: // Show the given widget (which must be one of my children) page = dijit.byId(page); if(this.selectedChildWidget != page){ // Deselect old page and select new one this._transition(page, this.selectedChildWidget); this.selectedChildWidget = page; dojo.publish(this.id+"-selectChild", [page]); if(this.persist){ dojo.cookie(this.id + "_selectedChild", this.selectedChildWidget.id); } } }, _transition: function(/*Widget*/newWidget, /*Widget*/oldWidget){ // summary: // Hide the old widget and display the new widget. // Subclasses should override this. // tags: // protected extension if(oldWidget){ this._hideChild(oldWidget); } this._showChild(newWidget); // Size the new widget, in case this is the first time it's being shown, // or I have been resized since the last time it was shown. // Note that page must be visible for resizing to work. if(this.doLayout && newWidget.resize){ newWidget.resize(this._containerContentBox || this._contentBox); } }, _adjacent: function(/*Boolean*/ forward){ // summary: // Gets the next/previous child widget in this container from the current selection. var children = this.getChildren(); var index = dojo.indexOf(children, this.selectedChildWidget); index += forward ? 1 : children.length - 1; return children[ index % children.length ]; // dijit._Widget }, forward: function(){ // summary: // Advance to next page. this.selectChild(this._adjacent(true)); }, back: function(){ // summary: // Go back to previous page. this.selectChild(this._adjacent(false)); }, _onKeyPress: function(e){ dojo.publish(this.id+"-containerKeyPress", [{ e: e, page: this}]); }, layout: function(){ // Implement _LayoutWidget.layout() virtual method. if(this.doLayout && this.selectedChildWidget && this.selectedChildWidget.resize){ this.selectedChildWidget.resize(this._contentBox); }";s:7:"returns";s:71:"dijit._Widget (TODO: remove this, return code is unused)|dijit._Widget";s:7:"summary";s:0:"";}s:38:"dijit.layout.StackContainer._showChild";a:6:{s:9:"prototype";s:27:"dijit.layout.StackContainer";s:4:"type";s:8:"Function";s:10:"parameters";a:1:{s:4:"page";a:1:{s:4:"type";s:6:"Widget";}}s:6:"source";s:382:" var children = this.getChildren(); page.isFirstChild = (page == children[0]); page.isLastChild = (page == children[children.length-1]); page.selected = true; dojo.removeClass(page.domNode, "dijitHidden"); dojo.addClass(page.domNode, "dijitVisible"); if(page._onShow){ page._onShow(); // trigger load in ContentPane }else if(page.onShow){ page.onShow(); }";s:7:"summary";s:138:"Show the specified child by changing it's CSS, and call _onShow()/onShow() so it can do any updates it needs regarding loading href's etc.";s:7:"private";b:1;}s:38:"dijit.layout.StackContainer._hideChild";a:6:{s:9:"prototype";s:27:"dijit.layout.StackContainer";s:4:"type";s:8:"Function";s:10:"parameters";a:1:{s:4:"page";a:1:{s:4:"type";s:6:"Widget";}}s:6:"source";s:161:" page.selected=false; dojo.removeClass(page.domNode, "dijitVisible"); dojo.addClass(page.domNode, "dijitHidden"); if(page.onHide){ page.onHide(); }";s:7:"summary";s:83:"Hide the specified child by changing it's CSS, and call _onHide() so it's notified.";s:7:"private";b:1;}s:38:"dijit.layout.StackContainer.closeChild";a:6:{s:9:"prototype";s:27:"dijit.layout.StackContainer";s:4:"type";s:8:"Function";s:10:"parameters";a:1:{s:4:"page";a:1:{s:4:"type";s:6:"Widget";}}s:6:"source";s:185:" var remove = page.onClose(this, page); if(remove){ this.removeChild(page); // makes sure we can clean up executeScripts in ContentPane onUnLoad page.destroyRecursive(); }";s:7:"summary";s:112:"Callback when user clicks the [X] to remove a page. If onClose() returns true then remove and destroy the child.";s:4:"tags";s:7:"private";}s:35:"dijit.layout.StackContainer.destroy";a:4:{s:9:"prototype";s:27:"dijit.layout.StackContainer";s:4:"type";s:8:"Function";s:6:"source";s:59:" this._beingDestroyed = true; this.inherited(arguments);";s:7:"summary";s:0:"";}s:43:"dijit.layout.StackContainer._beingDestroyed";a:3:{s:8:"instance";s:27:"dijit.layout.StackContainer";s:7:"private";b:1;s:7:"summary";s:0:"";}s:19:"dijit._Widget.title";a:2:{s:9:"prototype";s:13:"dijit._Widget";s:7:"summary";s:0:"";}s:22:"dijit._Widget.selected";a:2:{s:9:"prototype";s:13:"dijit._Widget";s:7:"summary";s:0:"";}s:22:"dijit._Widget.closable";a:2:{s:9:"prototype";s:13:"dijit._Widget";s:7:"summary";s:0:"";}s:21:"dijit._Widget.onClose";a:6:{s:9:"prototype";s:13:"dijit._Widget";s:4:"type";s:8:"Function";s:6:"source";s:26:" return true; // Boolean";s:7:"summary";s:87:"Callback if someone tries to close the child, child will be closed if func returns true";s:4:"tags";s:9:"extension";s:7:"returns";s:7:"Boolean";}s:12:"dijit.layout";a:2:{s:4:"type";s:6:"Object";s:7:"summary";s:0:"";}s:5:"dijit";a:2:{s:4:"type";s:6:"Object";s:7:"summary";s:0:"";}}