Re: [perl-win32-gui-users] Win32::GUI Owner Drawn Controls

2010-09-22 Thread Joshua New
Kevin, Excellent work! Thank you very much for your efforts on this. I'm going to test it out this week. If everyone is interested, I'll let everyone know how it goes. Reini, Also, excellent work. The unfortunate thing is that your patch is for 1.04. Most people are using 1.06 these days.

Re: [perl-win32-gui-users] Win32::GUI Owner Drawn Controls

2010-08-29 Thread Kevin Marshall
Reini, The thing is that Custom Draw is supported by a different set of controls to Owner Draw, so I suppose a combination of both could be used. Kevin. 2010/8/28 Kevin Marshallkejoh...@hotmail.com: After much experimentation, I have finally succeeded in creating an owner-drawn control

Re: [perl-win32-gui-users] Win32::GUI Owner Drawn Controls

2010-08-29 Thread Kevin Marshall
are accessible without doing anything special. Octavian - Original Message - From: Kevin Marshallkejoh...@hotmail.com To: Octavian Rasnitaorasn...@gmail.com Cc:perl-win32-gui-users@lists.sourceforge.net Sent: Saturday, August 28, 2010 1:56 PM Subject: Re: [perl-win32-gui-users] Win32::GUI

Re: [perl-win32-gui-users] Win32::GUI Owner Drawn Controls

2010-08-28 Thread Octavian Rasnita
Hi Kevin, Congratulations for the program! I have tested it with a screen reader and it works. I added the -dialogui = 1 option to the $winMain object to be able to use the keyboard for changing the focus. The only problem, which is an important one, is that if I arrow up or down in the list

Re: [perl-win32-gui-users] Win32::GUI Owner Drawn Controls

2010-08-28 Thread Kevin Marshall
Hi Octavian, Thanks for your comments. It's good to know that you find it useful. I have been looking into Windows Accessibility to see how it works, and it seems that under normal circumstances (i.e. creating GUIs using C++, rather than Perl), the custom controls must provide an interface to

Re: [perl-win32-gui-users] Win32::GUI Owner Drawn Controls

2010-08-28 Thread Octavian Rasnita
@lists.sourceforge.net Sent: Saturday, August 28, 2010 1:56 PM Subject: Re: [perl-win32-gui-users] Win32::GUI Owner Drawn Controls Hi Octavian, Thanks for your comments. It's good to know that you find it useful. I have been looking into Windows Accessibility to see how it works

Re: [perl-win32-gui-users] Win32::GUI Owner Drawn Controls

2010-08-28 Thread Reini Urban
2010/8/28 Kevin Marshall kejoh...@hotmail.com: After much experimentation, I have finally succeeded in creating an owner-drawn control in Win32::GUI. I decided to create this post detailing how to create an owner-drawn control in case someone else has the need to use one. I posted a