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