About Store Forum Documentation Contact



Post Reply 
Gui ....region..Guiimage..
Author Message
khces Offline
Member

Post: #1
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
Find all posts by this user Quote this message in a reply
siwykon Offline
Member

Post: #2
RE: Gui ....region..Guiimage..
What you want?
04-20-2011 04:04 PM
Find all posts by this user Quote this message in a reply
Esenthel Offline
Administrator

Post: #3
RE: Gui ....region..Guiimage..
Hi,

GuiObj::moveUp,moveDown,moveToTop,moveToBottom
04-21-2011 11:49 AM
Find all posts by this user Quote this message in a reply
khces Offline
Member

Post: #4
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
Find all posts by this user Quote this message in a reply
Esenthel Offline
Administrator

Post: #5
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
Find all posts by this user Quote this message in a reply
Post Reply