Aldo, here are a few more things:

GetSaveFileName
  The default behavior for the Windows GetSaveFileName dialog is to not prompt 
for overwrite.  In order to turn it on, a particular flag needs to be set.  (I 
don't have the Windows API reference in front of me, but I believe the constant 
is '2').  To make this work for me, I enabled a -flags options like this:

            if(strcmp(option, "-flags") == 0) {
                next_i = i + 1;
                ofn.Flags = SvIV(ST(next_i));
            }

A better solution would probably be to allow a -prompt option (or something 
like that) to turn that flag on.  It would also be nice to be able to change 
GetOpenFileName such that it does not display the "Read Only" checkbox, like 
with a -noreadonly or something like that.


Splitter Auto-Size
  I made some changes to the Splitter code to make it to auto-resize as it is 
being dragged.  If you are interested in it, I can send it.  This was the first 
bit of code I edited, and at that point I had no idea how XS worked.  Now that 
I am more familiar with it, I want to re-code it and make it a switch-enabled 
option.


Trevor S Garside
[EMAIL PROTECTED]


> -----Original Message-----
> From: Aldo Calpini [mailto:[EMAIL PROTECTED]
> Sent: Monday, April 07, 2003 12:36 PM
> To: Garside, Trevor
> Cc: perl-win32-gui-users@lists.sourceforge.net
> Subject: CALL FOR BUGS (was: The status of win32::gui)
> 
> 
> Garside, Trevor wrote:
> > Aldo, that's great news!
> >
> > Along those lines, yes, I would love to be able to see the 
> changes you've
> > been working on for the next release.
> 
> I will release it on CVS so you can download it before the release.
> there aren't really big changes, just a huge cleanup and some 
> subtle changes
> in the event model. and bugfixes, of course (see also below).
> 
> > And, for fun, here's a list of problems I've found, just in 
> case you don't
> > know about them:
> 
> this is a great idea indeed. I would really appreciate if 
> someone could
> summarize all the problems that popped up recently (or not so 
> recently,
> but still need a fixation) so that I can build a bugs list 
> and try to correct
> everything. so, if you found any bug, please submit them *now*!
> 
> 
> cheers,
> Aldo
> 
> __END__
> $_=q,just perl,,s, , another ,,s,$, hacker,,print;
> 
> 

Reply via email to