[perl-win32-gui-hackers] RE: Constants and hashing

2005-12-21 Thread Arthur Schwarz
>>our original discussions until now, I think it may be more worthwhile to >> figure out how to make _all_ 18000 constants available to Win32::GUI >>programs, without paying a huge price in memory. Those constants that >>actually get used get cached in the stash anyway... >> I forgot to mention

[perl-win32-gui-hackers] GUI_Options.cpp: Bug?

2005-12-21 Thread Arthur Schwarz
I've just looked at GUI_Options.cpp again and wonder if the following code is correct: perlcs->cs.style &= perlcs->cs.style ^ (DWORD) SvIV(ST(next_i)); Shouldn't this be something like: perlcs->cs.style &= (perlcs->cs.style | (DWORD) SvIV(ST(next_i)))

RE: [perl-win32-gui-hackers] -style deprecated

2005-12-21 Thread Arthur Schwarz
> >On another note, while looking for -style I looked at GUI.xs. > > > >Being loath to comment: > >1. GUI.xs uses a conditional ladder to perform a search. > >2. On success, GUI.xs executes code in the conditional block. > > > >It occurs to me that there are two operations that need to be perform

RE: [perl-win32-gui-hackers] -style deprecated

2005-12-21 Thread Jeremy White
I get the message. What should be used? Looked at all the documentation that I have (including my new jeb-doc) and can't find what the alternative is. Sigh. see: http://perl-win32-gui.sourceforge.net/cgi-bin/docs.cgi?doc=reference-options popstyle, pushstyle is what you want. On another no