/// <summary> /// Queues a layout for the next calculation cycle. This should not be called if the /// layout is done, blocked or already in the queue. The only classes that should call /// this method are this class and Ext.layout.ContextItem. /// </summary> /// <param name="layout"><p>The layout to add to the queue.</p> /// </param> private void queueLayout(Layout layout){}
/// <summary> /// Queues a layout to have its Ext.layout.Layout.finalizeLayout method called. /// </summary> /// <param name="layout"> /// </param> private void queueFinalize(Layout layout){}
/// <summary> /// Registers a layout in the DOM block list for the given property. Once the property /// flushed to the DOM by the Ext.layout.Context, the layout is unblocked. /// </summary> /// <param name="layout"> /// </param> /// <param name="propName"><p>The property name that blocked the layout (e.g., 'width').</p> /// </param> public void domBlock(Layout layout, JsString propName){}
/// <summary> /// Queues a layout to have its Ext.layout.Layout.completeLayout method called. /// </summary> /// <param name="layout"> /// </param> private void queueCompletion(Layout layout){}
/// <summary> /// Adds a block. /// </summary> /// <param name="name"><p>The name of the block list ('blocks' or 'domBlocks').</p> /// </param> /// <param name="layout"><p>The layout that is blocked.</p> /// </param> /// <param name="propName"><p>The property name that blocked the layout (e.g., 'width').</p> /// </param> private void addBlock(JsString name, Layout layout, JsString propName){}