1#ifndef __com_sun_star_awt_XLayoutUnit_idl__
2#define __com_sun_star_awt_XLayoutUnit_idl__
3
4#include <com/sun/star/awt/XLayoutContainer.idl>
5
6//=============================================================================
7
8module com {  module sun {  module star {  module awt {
9
10//=============================================================================
11
12/** Responsible to evaluate size damages and force a re-calculation. Containers
13    should let it know of state changes that may affects their size.
14    All children of a top-level window should share the same object.
15
16    @since OOo 3.0
17 */
18interface XLayoutContainer
19{
20	void queueResize( [in] com::sun::star::awt::XLayoutContainer Container );
21};
22
23//=============================================================================
24
25}; }; }; };
26
27#endif
28