(svn r17915) -Codechange: Allow windows to compute their own initial position.

This commit is contained in:
alberth
2009-10-31 11:34:43 +00:00
parent 256adf9c8a
commit 2a7d0de0b0
2 changed files with 18 additions and 1 deletions

View File

@@ -638,6 +638,18 @@ public:
/*** Event handling ***/
/**
* Compute the initial position of the window.
* @param *desc The pointer to the WindowDesc of the window to create.
* @param sm_width Smallest width of the window.
* @param sm_height Smallest height of the window.
* @param window_number The window number of the new window.
* @return Initial position of the top-left corner of the window.
*
* @note Due to the way C++ works, only windows with nested widgets can usefully override this function.
*/
virtual Point OnInitialPosition(const WindowDesc *desc, int16 sm_width, int16 sm_height, int window_number);
/**
* The window must be repainted.
* @note This method should not change any state, it should only use drawing functions.