http://www.perlmonks.org?node_id=342244


in reply to Ideas for implementing pShell

You will be doing it via Win32 API. Although it may seem rather unrelated at first have a look at Win32-Screenshot which provides a whole lot of window handling methods like: WindowFromPoint GetForegroundWindow GetDesktopWindow GetActiveWindow GetWindow FindWindow ShowWindow GetCursorPos SetCursorPos GetClientRect GetWindowRect BringWindowToTop GetWindowText IsVisible GetTopWindow Minimize Restore ScrollWindow. The XS part just calls the native Win32 API calls. As you can see the Perl wrapper code is very simple.

cheers

tachyon

Replies are listed 'Best First'.
Re: Re: Ideas for implementing pShell
by McMahon (Chaplain) on Apr 03, 2004 at 17:01 UTC
    Win32::GUITest might give you some ideas, too. I've only just started using it, but it has a lot of potential.