You can subscribe to this list here.
2000 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(1) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2001 |
Jan
|
Feb
(7) |
Mar
(5) |
Apr
(4) |
May
(15) |
Jun
(10) |
Jul
(4) |
Aug
(12) |
Sep
(39) |
Oct
(22) |
Nov
(46) |
Dec
(65) |
2002 |
Jan
(19) |
Feb
(27) |
Mar
(50) |
Apr
(73) |
May
(85) |
Jun
(52) |
Jul
(49) |
Aug
(95) |
Sep
(152) |
Oct
(81) |
Nov
(42) |
Dec
(62) |
2003 |
Jan
(45) |
Feb
(47) |
Mar
(101) |
Apr
(110) |
May
(53) |
Jun
(72) |
Jul
(125) |
Aug
(77) |
Sep
(87) |
Oct
(69) |
Nov
(55) |
Dec
(71) |
2004 |
Jan
(127) |
Feb
(68) |
Mar
(93) |
Apr
(102) |
May
(64) |
Jun
(92) |
Jul
(40) |
Aug
(113) |
Sep
(44) |
Oct
(61) |
Nov
(44) |
Dec
(100) |
2005 |
Jan
(57) |
Feb
(51) |
Mar
(101) |
Apr
(73) |
May
(45) |
Jun
(97) |
Jul
(92) |
Aug
(94) |
Sep
(46) |
Oct
(83) |
Nov
(82) |
Dec
(68) |
2006 |
Jan
(92) |
Feb
(116) |
Mar
(84) |
Apr
(66) |
May
(40) |
Jun
(57) |
Jul
(89) |
Aug
(82) |
Sep
(58) |
Oct
(94) |
Nov
(104) |
Dec
(70) |
2007 |
Jan
(86) |
Feb
(108) |
Mar
(193) |
Apr
(84) |
May
(71) |
Jun
(54) |
Jul
(17) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Mattia B. <mat...@li...> - 2006-07-24 20:45:29
|
On Mon, 24 Jul 2006 12:59:00 +0200 "Mark Wardell" <ma...@ne...> wrote: Hello, > I am unable to submit this using CVS due to network/firewall problems. > > I have compiled wxPerl 0.54 against wxWidgets 2.7.0-rc1 but I see that > ConvertToGreyscale is not wrapped so I have added this to Image.xs at line > 203. > > I have tested and it works fine on WinXP. Added to CVS. Thanks! Mattia |
From: Mattia B. <mat...@li...> - 2006-07-24 19:37:06
|
On Mon, 24 Jul 2006 19:30:41 +0200 "Mark Wardell" <ma...@ne...> wrote: Hello, > I have some code as below: > > if (my $grid = $dialog->FindWindow(MyGrid')) { > bless $grid, 'Grid::MyGrid'; > print "Grid::MyGrid => $grid\n"; > } > > Using wxPerl 0.54 on wxWidgets 2.6.3 I get: > Grid::MyGrid => Grid::MyGrid=HASH(0x7015a00) > > Using wxPerl 0.54 on wxWidgets 2.7.0 I get: > Grid::MyGrid => Grid::MyGrid=SCALAR(........) Honestly I have no idea why this should be so; the different wxWidgets version should not influence this. Regards Mattia P.S.: reblessing like this is _BAD_ |
From: Mark W. <ma...@ne...> - 2006-07-24 17:31:22
|
Hi, I have some code as below: if (my $grid = $dialog->FindWindow(MyGrid')) { bless $grid, 'Grid::MyGrid'; print "Grid::MyGrid => $grid\n"; } Using wxPerl 0.54 on wxWidgets 2.6.3 I get: Grid::MyGrid => Grid::MyGrid=HASH(0x7015a00) Using wxPerl 0.54 on wxWidgets 2.7.0 I get: Grid::MyGrid => Grid::MyGrid=SCALAR(........) Any idea what could be causing this? Regards Mark |
From: Andrew <sob...@gm...> - 2006-07-24 16:58:42
|
On 7/15/06, Mattia Barbon <mat...@li...> wrote: > On Fri, 14 Jul 2006 13:56:23 +0100 > Andrew <sob...@gm...> wrote: > > we have an app using wxPerl that uses a Wx::DocMDIParentFrame and > > Wx::DocMDIChildFrames. Since upgrading from wxPerl 0.24 to 0.26, the > > window menu no longer displays a list of open files. > > I think this is due to the last doc/view patch by Simon Flack. > You should contact him because I know next to nothing about DocView. I will ask him about this. > > It used to do this under wxPerl 0.24. I notice that the demo > > application (Miscellanous->MDI) for wxPerl 0.26 also does not display > > currently open child frames in the Window menu. > > I doubt it ever did. Please note the demo is about Wx::MDIParent/ChildFrame, > not Wx::DocMDIParent/ChildFrame Attached is a small test case, that demonstrates the window menu using either Wx::DocMDIParent or Wx::MDIParent (by varying a constant). The list of currently open windows works when it's run with wxPerl 0.24, but doesn't work with wxPerl 0.26 in both cases. > > Is this a bug in wxPerl 0.26 or is there something special that needs > > to be done to display currently open files in the Window menu? > > I think the latter, but please ask Simon Flack (and please report his > answer on list). Based on this there appears to be a bug (or at least changed behaviour) in wxPerl 0.26 concerning the Window menu. I will ask Simon and see if he has any ideas. cheers, Andrew |
From: Mark W. <ma...@ne...> - 2006-07-24 10:59:23
|
Hi Mattia, I am unable to submit this using CVS due to network/firewall problems. I have compiled wxPerl 0.54 against wxWidgets 2.7.0-rc1 but I see that ConvertToGreyscale is not wrapped so I have added this to Image.xs at line 203. I have tested and it works fine on WinXP. Regards Mark <snip> #if WXPERL_W_VERSION_GE( 2, 7, 0 ) wxImage* wxImage::ConvertToGreyscale() CODE: RETVAL = new wxImage( THIS->ConvertToGreyscale() ); OUTPUT: RETVAL #endif <snip> |
From: Eric W. <scr...@gm...> - 2006-07-23 23:26:21
|
I'm not able to get a window to focus (without using the mouse) when the program is started from the console like this: wxPerl app.pl Further, Raise() appears to lower the window. Is this something in my 10.4.6, wx2.6.3, wxperl0.27, and xcode 2.3_8... setup? The binary installer off of sourceforge had the same problem (but is a bit old now.) I've found the following reference to building Wx apps, but haven't figured out what if anything needs to be translated into the WxPerl build files. --- http://lists.wxwidgets.org/archive/wx-users/msg34006.html http://coding.mu/archives/2003/11/08/wxwindows-makefile-template-for-mac-os-x/ http://coding.mu/wp-content/wxmacmakefile.zip --- Thanks, Eric -- OSX... because programming on Linux was too convenient. --------------------------------------------------- http://scratchcomputing.com --------------------------------------------------- |
From: Mattia B. <mat...@li...> - 2006-07-23 10:04:38
|
On Fri, 21 Jul 2006 12:00:57 +0200 Andre Muench <And...@t-...> wrote: Hello, > But the constructor for Wx::Icon seems to miss the overloading function > and the function GetFileName isnt implemented either. Is there another > way to use the icons from the MimeTypeManger ? No. Added the overloaded wxIcon constructor in CVS. Regards Mattia |
From: Sean A. <phi...@gm...> - 2006-07-21 19:59:04
|
Nevermind. Aparently stuffit expands it all the way out so it expands out the tar.gz file as well. My bad. Thanks:) SA On 7/21/06, Sean Armstrong <phi...@gm...> wrote: > I downloaded "http://prdownloads.sourceforge.net/wxperl/Wx-0.26-wxmsw2.6.2-win32-5.8.6.zip" > from wxperl.sourceforge.net. There is no > wxPerl-0.26-wx-2.62-win32-5.8.6.tar.gz. I get a readme file, > Wx-026.ppd and a blib directory. > > Thanks:) > > SA > > On 7/21/06, Mark Dootson <mar...@zn...> wrote: > > Hi > > > > It should all work OK. > > Assuming you have downloaded the zip file from wxperl.sourceforge.net? > > > > When unzipped into, say c:\wxinstall, you should have the files: > > > > c:\wxinstall\Wx-0.26.ppd > > and > > c:\wxinstall\wxPerl-0.26-wx-2.62-win32-5.8.6.tar.gz > > > > If you open up a command prompt and cd c:\wxinstall > > then if you type > > > > ppm install Wx-0.26.ppd > > > > It will work. > > > > Your error looks like some combination of not changing directory before > > you run ppm or not unzipping all the files or attempting to run against > > a path that is really a desktop zip folder? (if that's possible) > > > > Regards > > > > Mark > > > > > > > > > > Sean Armstrong wrote: > > > I am trying to install wxPerl on a Windows XP box. I have two perl choices: > > > 1. cygwin > > > 2. ActivePerl > > > > > > I downloaded and installed wxWidgets on my box. I downloaded the > > > Activeperl download for wxPerl. The readme file in the archive saya > > > to do the following: > > > > > > * Unzip this ZIP file somewhere (let's say in c:\temp) > > > > > > * Become Administrator, if necessary > > > > > > * From the command prompt > > > cd c:\temp > > > ppm install Wx-0.26.ppd > > > > > > Have fun! > > > Mattia > > > > > > > > > Did all of that, but when I run "ppm install Wx-0.26.ppd", I get the > > > following error: > > > > > > ==================== > > > Install 'Wx-0.26' version 0.26 in ActivePerl 5.8.8.817. > > > ==================== > > > Error: error downloading'file://localhost/C%7C/Documents%20and%20Settings/sarmst > > > rong/Desktop/Wx- > > > 0.26-wxmsw2.6.2-win32-u-5.8.6/wxPerl-0.26-wx-2.6.2-win32-u- > > > 5.8.6.tar.gz': 404 File `C:\Documents and Settings\sarmstrong\Desktop\Wx-0.26-wx > > > msw2.6.2-win32-u-5.8.6\wxPerl- > > > 0.26-wx-2.6.2-win32-u-5.8.6.tar.gz' does not exist > > > > > > Is there something else I need to download? I can't find this package > > > anywhere on the net? It would seem to me that the install package > > > would have everything in it or the directions should include > > > directions to download the extra tar.gz file? Am I missing something? > > > WxPerl was much easier to instal and get running on my MacOSX box. > > > Can someone please help me get this installed on my Windows box as > > > well? > > > > > > > > > Thanks:) > > > SA > > > > > > > > > > > > > > > -- > "I can do everything on my Mac that I could do on a PC." > -- Me > -- "I can do everything on my Mac that I could do on a PC." -- Me |
From: Sean A. <phi...@gm...> - 2006-07-21 19:51:27
|
I downloaded "http://prdownloads.sourceforge.net/wxperl/Wx-0.26-wxmsw2.6.2-win32-5.8.6.zip" from wxperl.sourceforge.net. There is no wxPerl-0.26-wx-2.62-win32-5.8.6.tar.gz. I get a readme file, Wx-026.ppd and a blib directory. Thanks:) SA On 7/21/06, Mark Dootson <mar...@zn...> wrote: > Hi > > It should all work OK. > Assuming you have downloaded the zip file from wxperl.sourceforge.net? > > When unzipped into, say c:\wxinstall, you should have the files: > > c:\wxinstall\Wx-0.26.ppd > and > c:\wxinstall\wxPerl-0.26-wx-2.62-win32-5.8.6.tar.gz > > If you open up a command prompt and cd c:\wxinstall > then if you type > > ppm install Wx-0.26.ppd > > It will work. > > Your error looks like some combination of not changing directory before > you run ppm or not unzipping all the files or attempting to run against > a path that is really a desktop zip folder? (if that's possible) > > Regards > > Mark > > > > > Sean Armstrong wrote: > > I am trying to install wxPerl on a Windows XP box. I have two perl choices: > > 1. cygwin > > 2. ActivePerl > > > > I downloaded and installed wxWidgets on my box. I downloaded the > > Activeperl download for wxPerl. The readme file in the archive saya > > to do the following: > > > > * Unzip this ZIP file somewhere (let's say in c:\temp) > > > > * Become Administrator, if necessary > > > > * From the command prompt > > cd c:\temp > > ppm install Wx-0.26.ppd > > > > Have fun! > > Mattia > > > > > > Did all of that, but when I run "ppm install Wx-0.26.ppd", I get the > > following error: > > > > ==================== > > Install 'Wx-0.26' version 0.26 in ActivePerl 5.8.8.817. > > ==================== > > Error: error downloading'file://localhost/C%7C/Documents%20and%20Settings/sarmst > > rong/Desktop/Wx- > > 0.26-wxmsw2.6.2-win32-u-5.8.6/wxPerl-0.26-wx-2.6.2-win32-u- > > 5.8.6.tar.gz': 404 File `C:\Documents and Settings\sarmstrong\Desktop\Wx-0.26-wx > > msw2.6.2-win32-u-5.8.6\wxPerl- > > 0.26-wx-2.6.2-win32-u-5.8.6.tar.gz' does not exist > > > > Is there something else I need to download? I can't find this package > > anywhere on the net? It would seem to me that the install package > > would have everything in it or the directions should include > > directions to download the extra tar.gz file? Am I missing something? > > WxPerl was much easier to instal and get running on my MacOSX box. > > Can someone please help me get this installed on my Windows box as > > well? > > > > > > Thanks:) > > SA > > > > > > > -- "I can do everything on my Mac that I could do on a PC." -- Me |
From: Mark D. <mar...@zn...> - 2006-07-21 19:23:38
|
Hi It should all work OK. Assuming you have downloaded the zip file from wxperl.sourceforge.net? When unzipped into, say c:\wxinstall, you should have the files: c:\wxinstall\Wx-0.26.ppd and c:\wxinstall\wxPerl-0.26-wx-2.62-win32-5.8.6.tar.gz If you open up a command prompt and cd c:\wxinstall then if you type ppm install Wx-0.26.ppd It will work. Your error looks like some combination of not changing directory before you run ppm or not unzipping all the files or attempting to run against a path that is really a desktop zip folder? (if that's possible) Regards Mark Sean Armstrong wrote: > I am trying to install wxPerl on a Windows XP box. I have two perl choices: > 1. cygwin > 2. ActivePerl > > I downloaded and installed wxWidgets on my box. I downloaded the > Activeperl download for wxPerl. The readme file in the archive saya > to do the following: > > * Unzip this ZIP file somewhere (let's say in c:\temp) > > * Become Administrator, if necessary > > * From the command prompt > cd c:\temp > ppm install Wx-0.26.ppd > > Have fun! > Mattia > > > Did all of that, but when I run "ppm install Wx-0.26.ppd", I get the > following error: > > ==================== > Install 'Wx-0.26' version 0.26 in ActivePerl 5.8.8.817. > ==================== > Error: error downloading'file://localhost/C%7C/Documents%20and%20Settings/sarmst > rong/Desktop/Wx- > 0.26-wxmsw2.6.2-win32-u-5.8.6/wxPerl-0.26-wx-2.6.2-win32-u- > 5.8.6.tar.gz': 404 File `C:\Documents and Settings\sarmstrong\Desktop\Wx-0.26-wx > msw2.6.2-win32-u-5.8.6\wxPerl- > 0.26-wx-2.6.2-win32-u-5.8.6.tar.gz' does not exist > > Is there something else I need to download? I can't find this package > anywhere on the net? It would seem to me that the install package > would have everything in it or the directions should include > directions to download the extra tar.gz file? Am I missing something? > WxPerl was much easier to instal and get running on my MacOSX box. > Can someone please help me get this installed on my Windows box as > well? > > > Thanks:) > SA > > |
From: Sean A. <phi...@gm...> - 2006-07-21 13:04:14
|
I am trying to install wxPerl on a Windows XP box. I have two perl choices: 1. cygwin 2. ActivePerl I downloaded and installed wxWidgets on my box. I downloaded the Activeperl download for wxPerl. The readme file in the archive saya to do the following: * Unzip this ZIP file somewhere (let's say in c:\temp) * Become Administrator, if necessary * From the command prompt cd c:\temp ppm install Wx-0.26.ppd Have fun! Mattia Did all of that, but when I run "ppm install Wx-0.26.ppd", I get the following error: ==================== Install 'Wx-0.26' version 0.26 in ActivePerl 5.8.8.817. ==================== Error: error downloading'file://localhost/C%7C/Documents%20and%20Settings/sarmst rong/Desktop/Wx- 0.26-wxmsw2.6.2-win32-u-5.8.6/wxPerl-0.26-wx-2.6.2-win32-u- 5.8.6.tar.gz': 404 File `C:\Documents and Settings\sarmstrong\Desktop\Wx-0.26-wx msw2.6.2-win32-u-5.8.6\wxPerl- 0.26-wx-2.6.2-win32-u-5.8.6.tar.gz' does not exist Is there something else I need to download? I can't find this package anywhere on the net? It would seem to me that the install package would have everything in it or the directions should include directions to download the extra tar.gz file? Am I missing something? WxPerl was much easier to instal and get running on my MacOSX box. Can someone please help me get this installed on my Windows box as well? Thanks:) SA -- "I can do everything on my Mac that I could do on a PC." -- Me |
From: Andre M. <And...@t-...> - 2006-07-21 10:01:03
|
Hi, how can I use the icons supplied by wxMimeTypeManager ? I tried : my $hFileType = Wx::MimeTypesManager->new()->GetFileTypeFromExtension($suffix); my $hIconLocation = $hFileType->GetIcon(); my $hIcon = Wx::Icon->new($hIconLocation->GetFileName()); or my $hIcon = Wx::Icon->new($hIconLocation); But the constructor for Wx::Icon seems to miss the overloading function and the function GetFileName isnt implemented either. Is there another way to use the icons from the MimeTypeManger ? Greetings, Andre |
From: Mattia B. <mat...@li...> - 2006-07-20 18:31:41
|
On Sun, 16 Jul 2006 17:50:45 -0700 Eric Wilhelm <scr...@gm...> wrote: > (sorry, that earlier message was actually on 0.27, but it appears to > have the same problem.) > > I'm seeing the same problem on 10.4.6, wx2.6.3, wxperl0.27, and xcode > 2.3_8mumble. But on 0.53 I'm getting: > > Wx.c: In function 'void XS_Wx__Sound_newDefault(... > Wx.c:10133: error: 'wxSound' was not declared in this scope > > (because my wxwidgets build started complaining about movies so I > disabled wxsound -- hey, I've got enough problems as it is :-) Apparently you created another one :-) wxPerl 0.54 works for me with wxWidgets 2.6.3. > Anyway, this patch gets me past the build issues on 0.27 and all tests > successful. > > http://scratchcomputing.com/tmp/MacOSX_GCC.pm.patch > > It applies cleanly on 0.53. Maybe someone without my sound problem can > verify that it works? I'm guessing it needs to be conditional on > `xcodebuild -version` ? Alternate tentative patch below. Regards Mattia Index: build/Wx/build/MakeMaker/MacOSX_GCC.pm =================================================================== RCS file: /cvsroot/wxperl/wxPerl/build/Wx/build/MakeMaker/MacOSX_GCC.pm,v retrieving revision 1.11 diff -u -2 -r1.11 MacOSX_GCC.pm --- build/Wx/build/MakeMaker/MacOSX_GCC.pm 29 May 2006 19:05:40 -0000 1.11 +++ build/Wx/build/MakeMaker/MacOSX_GCC.pm 20 Jul 2006 18:29:36 -0000 @@ -70,7 +70,7 @@ wxPerl : Makefile %s cd cpp/wxPerl.osx && xcodebuild -project wxPerl.xcode - cp -p $(PERL) cpp/wxPerl.osx/build/wxPerl.app/Contents/MacOS/wxPerl + cp -p $(PERL) `find cpp -name wxPerl.app`/Contents/MacOS/wxPerl mkdir -p $(INST_ARCHLIB)/auto/Wx - cp -rp cpp/wxPerl.osx/build/wxPerl.app $(INST_ARCHLIB)/auto/Wx + cp -rp `find cpp -name wxPerl.app` $(INST_ARCHLIB)/auto/Wx $(CC) cpp/wxPerl.osx/wxPerl.c -o wxPerl |
From: Grumm, C. <car...@ch...> - 2006-07-18 16:41:44
|
Hi, I'm trying to get rid of that "select printer dialog" that's popping up every time I call Wx::HtmlEasyPrinting->PrintText. Someone told me to use Wx::HtmlPrintout on=20 my own, but I don't know what Wx-module it is in, or is it still jet not wrapped? Is there an easier way to stop that dialog from popping up? Any help will be appreciated. Carsten Grumm |
From: Mark D. <mar...@zn...> - 2006-07-17 20:40:46
|
Hi, I'm using wxPerl 0.52 / wxWidgets 2.6.3. It does not appear to be wrapped. If you're compiling your own wxPerl, then adding void wxWindow::InvalidateBestSize() to Window.xs should compile OK. (apologies if this is obvious to you). If you decide / have time to test this, I'd be interested to know if it works as one would imagine. e.g. Change the content call InvalidateBestSize call 'Layout' on appropriate sizer. Regards Mark Ed Heil wrote: > I ran across this here -- > > http://www.wxwidgets.org/manuals/2.6.3/wx_wxwindow.html#wxwindowinvalidatebestsize > > it looks like a very handy method for a control which changes its > contents to use. I called it on a subclassed Wx::StaticText and it > gave me "can't locate object method InvalidateBestSize via package > 'DWx::DataLabel'".... > > Is it possible this hasn't been wrapped? Or has been wrapped but in > newer versions than I'm using? > > I'm using WxPerl 0.26, wxWidgets 2.6.2. > > Thanks, > > Ed > > > > ------------------------------------------------------------------------- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share your > opinions on IT & business topics through brief surveys -- and earn cash > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > _______________________________________________ > wxperl-users mailing list > wxp...@li... > https://lists.sourceforge.net/lists/listinfo/wxperl-users |
From: Ed H. <ed...@do...> - 2006-07-17 19:28:01
|
I ran across this here -- http://www.wxwidgets.org/manuals/2.6.3/wx_wxwindow.html#wxwindowinvalidatebestsize it looks like a very handy method for a control which changes its contents to use. I called it on a subclassed Wx::StaticText and it gave me "can't locate object method InvalidateBestSize via package 'DWx::DataLabel'".... Is it possible this hasn't been wrapped? Or has been wrapped but in newer versions than I'm using? I'm using WxPerl 0.26, wxWidgets 2.6.2. Thanks, Ed |
From: Eric W. <scr...@gm...> - 2006-07-17 00:50:51
|
# from Eric Wilhelm # on Sunday 16 July 2006 05:09 pm: >>=A0 ? These directories should be created by xcodebuild. >>Which directories are created instead? > >=A0 $ xcodebuild -project wxPerl.xcode > /tmp/xcode.log >=A0 (NOTE: project wxPerl was written by an older version of Xcode (39) > -- temporarily upgrading it to version 42 (without modifying project > file)) (sorry, that earlier message was actually on 0.27, but it appears to=20 have the same problem.) I'm seeing the same problem on 10.4.6, wx2.6.3, wxperl0.27, and xcode=20 2.3_8mumble. But on 0.53 I'm getting: Wx.c: In function 'void XS_Wx__Sound_newDefault(... Wx.c:10133: error: 'wxSound' was not declared in this scope (because my wxwidgets build started complaining about movies so I disabled wxsound -- hey, I've got enough problems as it is :-) Anyway, this patch gets me past the build issues on 0.27 and all tests=20 successful. http://scratchcomputing.com/tmp/MacOSX_GCC.pm.patch It applies cleanly on 0.53. Maybe someone without my sound problem can=20 verify that it works? I'm guessing it needs to be conditional on=20 `xcodebuild -version` ? Thanks, Eric =2D-=20 "Insert random misquote here" =2D-------------------------------------------------- http://scratchcomputing.com =2D-------------------------------------------------- |
From: Eric W. <scr...@gm...> - 2006-07-17 00:09:22
|
# from Mattia Barbon # on Saturday 15 July 2006 02:31 am: >> =A0> =A0 =A0 =A0 mkdir -p cpp/wxPerl.osx/build/wxPerl.app/Contents/MacOS > >=A0 ? These directories should be created by xcodebuild. >Which directories are created instead? $ xcodebuild -project wxPerl.xcode > /tmp/xcode.log (NOTE: project wxPerl was written by an older version of Xcode (39) --=20 temporarily upgrading it to version 42 (without modifying project file)) $ svn st ? build ? wxPerl.r $ tree build/ build/ |-- Default | `-- wxPerl.app | `-- Contents | |-- Info.plist | |-- MacOS | | `-- wxPerl | |-- PkgInfo | `-- Resources | `-- wxPerl.rsrc `-- wxPerl.build `-- Default `-- wxPerl.app.build |-- Objects-normal | `-- ppc | |-- main.o | `-- wxPerl.LinkFileList |-- ResourceManagerResources | |-- Objects | | `-- wxPerl.rsrc | `-- wxPerl.rsrc |-- wxPerl.app.dep `-- wxPerl.hmap $ xcodebuild -version Component versions: DevToolsCore-747.0; DevToolsSupport-733.0 =2D-Eric =2D-=20 So malloc calls a timeout and starts rummaging around the free chain, sorting things out, and merging adjacent small free blocks into larger blocks. This takes 3 1/2 days. =2D-Joel Spolsky =2D-------------------------------------------------- http://scratchcomputing.com =2D-------------------------------------------------- |
From: Mike S. <Mik...@Do...> - 2006-07-16 17:24:12
|
Mattia Barbon wrote: > On Sun, 09 Jul 2006 16:47:12 -0600 > Mike Schroeder <Mik...@Do...> wrote >> Thanks Mattia -- one other thing I found in the generated Makefile -- it >> fails to create some needed directories at the end for the wxPerl >> generation for OSX. >> >> macbook:~/src/Wx-0.53 mike$ diff Makefile.org Makefile >> 1077a1078,1080 >> > mkdir -p cpp/wxPerl.osx/build/wxPerl.app >> > mkdir -p cpp/wxPerl.osx/build/wxPerl.app/Contents >> > mkdir -p cpp/wxPerl.osx/build/wxPerl.app/Contents/MacOS >> > > ? These directories should be created by xcodebuild. > Which directories are created instead? It creates the "cpp/wxPerl.osx/build" directory, but not the "wxPerl.app/Contents/MacOS" subdirectory, so wihtout manually tweaking the generated Makefile to create that, make will fail... |
From: Mattia B. <mat...@li...> - 2006-07-16 12:33:38
|
On Sun, 16 Jul 2006 14:11:51 +0200 herbert breunung <dei...@we...> wrote: > i recognized that there are some thing the other way than in the docs. > please tell me what the undef parameter stands for? Not really. If you use the documented form it will work, you are just using the pre-wxWidgets 2.4. > $tb->AddTool( 10001, $bmp, wxNullBitmap, wxITEM_NORMAL, undef, > 'tooltip', 'statustext' ); Client data. An arbitrary piece of data you can attach to the toolbar item. Regards Mattia |
From: herbert b. <dei...@we...> - 2006-07-16 12:12:00
|
i recognized that there are some thing the other way than in the docs. please tell me what the undef parameter stands for? $tb->AddTool( 10001, $bmp, wxNullBitmap, wxITEM_NORMAL, undef, 'tooltip', 'statustext' ); mille grazie herbert proton-ce.sf.net |
From: Patrick M. <pma...@fr...> - 2006-07-15 10:36:07
|
I kown that 0.22 is a very old release but this is the latest given by URPMI. I have tried to install the latest release (0.53) from CPAN. I have installed Alien::wxWidgets . Ok And during compilation of Wx I have got the error messages : ../../cpp/helpers.h:187: error: 'wxArrayString' has not been declared ../../cpp/helpers.h:192: error: expected ',' or '...' before '&' token ../../cpp/helpers.h:192: error: ISO C++ forbids declaration of 'wxArrayString' with no type ../../cpp/helpers.h:194: error: expected ',' or '...' before '&' token ../../cpp/helpers.h:194: error: ISO C++ forbids declaration of 'wxArrayString' with no type {standard input}: Assembler messages: {standard input}:2700: Error: Local symbol `.LTHUNK0' can't be equated to undefined symbol `_ZN13wxPlGridTableD1Ev' {standard input}:2700: Error: Local symbol `.LTHUNK1' can't be equated to undefined symbol `_ZN13wxPlGridTableD0Ev' make[2]: *** [Grid.o] Erreur 1 make[2]: Leaving directory `/root/.cpan/build/Wx-0.53/ext/grid' |
From: Mattia B. <mat...@li...> - 2006-07-15 10:09:42
|
On Sat, 15 Jul 2006 09:28:03 +0000 (UTC) Patrick MARION <pma...@fr...> wrote: > Patrick MARION <pmarion20 <at> free.fr> writes: > > > > > I have just downloaded perl-wx on a Mandriva 2006. > > perl-Wx-0.22-1mdk and libwxgtk2.4-2.4.2-8mdk > > > > perl -e 'use Wx' gives 'Segmentation Fault' > > > > Is there anybody who can help me > > > > ------------------------------------------------------------------------- > > Using Tomcat but need to do more? Need to support web services, security? > > Get stuff done quickly with pre-integrated technology to make your job easier > > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo > > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > > > > echo $DISPLAY gives ':0.0' > > > I'have tried to compile the latest version from cpan. > I have first install 'Alien' and after > I have error messages during compile Wx. If you mind sharing the error messages, we might be able to help you. Regards Mattia |
From: Mattia B. <mat...@li...> - 2006-07-15 10:03:31
|
On Fri, 14 Apr 2006 19:24:02 +0200 "Manuel Renz" <m....@te...> wrote: Hello, sorry if this slipped through the cracks, > Currently I'm trying to get Wx::Wizard working and I'm having some problems. > > First: > I get an "EVT_WIZARD_FINISHED is not exported" error Added to CVS. > and EVT_WIZARD_CANCEL clames that it has not enough paramters, but the doc says > EVT_WIZARD_CANCEL(id, func) As all EVT_XXX, in wxPerl this function takes the event handler as an additional first argument . > Second: > I need to click twice on the [X] to get the EVT_CLOSE working and succesfully running my OnClose sub... > Why that? Beacuse you call ->RunWizard before setting the event handlers. Regards Mattia |
From: Mattia B. <mat...@li...> - 2006-07-15 10:03:19
|
On Mon, 08 May 2006 19:15:25 +0200 herbert breunung <dei...@we...> wrote: > sorry that i cant fix it but with newest perl and wxperl 0.26 you get from > controls.pl > > You must supply either a number or a 1-character string at controls.pl > line 1140 I do not see it with 0.53. Do I need to do something special to cause this error? Regards Mattia |