Dual monitor support
Brought to you by:
ddiego
Should be a way to assign a monitor handle to each
form/window to choose which display it goes to. Dual
monitor display would be real nice addition. If this is
already capable please forgive me and maybe someone can
correct me in how to do this. Email: phreaks@gmail.com
Chris
Logged In: YES
user_id=848685
I will try to look at this. This is a feature I need for a
project of mine, so I can test it very well.
It is probably something like:
class Monitor
{
static Rect getBounds(int screen);
static int getScreenCount();
};
so in your formyou can say:
setBounds(Monitor::getBounds(2));
I this is not ideal, I know, but, perhaps I only give back
the "top left" position of that screen.
Give me some time, and I will add a patch ;)
btw. In wich Kit does this belong?