Page 1 of 1

How to make IGUIWindow stay one place?

Posted: Sun Feb 11, 2007 3:25 pm
by sunnygraphy
Hi everybody..


I try to create "fixed window" using the following code.

IGUIWindow* wnd = env->addWindow(core::rect<s32>(0,0,640,480),
false, L"Tet", 0, 5000);

And I want the window not moved by dragging using left mouse button.

Is there any way for this?


thanks

Posted: Sun Feb 11, 2007 5:28 pm
by bitplane

Posted: Sun Feb 11, 2007 9:38 pm
by vitek
A primitive 'fix' would be to put the window back at the same position before rendering. It would never move.

Travis