khces
Member
|
Gui ....region..Guiimage..
hi ^^
window-> level () and be similar function in other Gui Object(Guiimage Region etc....)?
...
and window fouce avoid func need...
my english sorry.
(This post was last modified: 04-20-2011 01:52 PM by khces.)
|
|
04-20-2011 01:50 PM |
|
siwykon
Member
|
RE: Gui ....region..Guiimage..
What you want?
|
|
04-20-2011 04:04 PM |
|
Esenthel
Administrator
|
RE: Gui ....region..Guiimage..
Hi,
GuiObj::moveUp,moveDown,moveToTop,moveToBottom
|
|
04-21-2011 11:49 AM |
|
khces
Member
|
RE: Gui ....region..Guiimage..
thanks ^^
1.
but. Region doesn't has a parent. only Region
GuiObj::moveUp,moveDown,moveToTop,moveToBottom <-- does this function work when it has a parent?
2.
struct ToolTIpWindow : ::Window
{
virtual ToolTIpWindow& hide()
{
if(visible())
{
__super::hide();
}
return T;
}
virtual void draw(GuiPC& gpc)
{
show();
super::draw(gpc);
hide();
}
};
example windows focus avoid.....
(This post was last modified: 04-21-2011 12:20 PM by khces.)
|
|
04-21-2011 12:20 PM |
|
Esenthel
Administrator
|
RE: Gui ....region..Guiimage..
1. Desktop can be a parent
2. what are you trying to achieve? why no focus?
you can always draw graphics manually, outside of Gui:
Gui.draw();
D.text
Image::draw
(or even: ) Window window; GuiPC gpc; gpc.xxx=yyy; .. window.draw(gpc);
|
|
04-21-2011 12:27 PM |
|