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. <mb...@ds...> - 2002-03-21 20:20:37
|
Sorry for the delay > > FROM: Mattia Barbon > > DATE: 03/08/2002 13:34:01 > > SUBJECT: [wxperl-users] New binary package for Win32 > > > > http://prdownloads.sourceforge.net/wxperl/Wx-0.10-wxmsw2.2.9-win32-1.zip > > > > It is 0.10; the only change is that I recompiled wxWindows > > with support for the comctl32.dll shipped with IE 3.0; this should > > enable some features of wxListCtrl ( and probably wxTreeCtrl ) > > that were disabled. > > thank you very much for that!!! > > but i've problems with it... > don't know if it's a bug or a mistake from my side > > my listctrl is in report mode... > the headerlabels appear in the same style as the the top item... > > shouldn't be, right? No, it shouldn't > my code (just inserting a bold item): > > ### start > my $item = Wx::ListItem->new; > $item->SetId(0); > $item->SetFont(Wx::Font->new(8, wxDEFAULT, wxNORMAL, wxBOLD)); > > my $id = $list->InsertItem($item); > > $list->SetItem($id, 0, 'a'); > $list->SetItem($id, 1, 'b'); > $list->SetItem($id, 2, 'c'); > ### end I can reproduce that with wxPerl compiled aginst wxWindows 2.2, however the bug disappears with wxWindows 2.3, so it appears to be a bug in wxWindows itself. > another question concerning my code: > is it possible to just set an item bold > (withhout creating a whole Wx::Font) No. Regards Mattia |
From: Marco T. <wx...@so...> - 2002-03-21 15:36:50
|
check the maillist archive... this already came twice... you can use "Yield" as workaround... greeting Marco ----- Original Message ----- From: "Czo [Olivier Sirol]" <Oli...@li...> To: <wxp...@li...> Sent: Thursday, March 21, 2002 4:27 PM Subject: [wxperl-users] wxperl win32 and fork > Hi, > > Thank you, Mattia, for your work! > > Here is the problem: > Using wxperl (up to 0.10) > and active perl (up to build 626) > under windows (NT4 or 2000) > > using fork() will crash perl if I use Wx... > this pb might come from the fact that active perl > uses threads to emulates forks under windows and > that Wx isn't thread safe...??? > > any clues? > > Just uncomment "use Wx" and this will make > active perl crash... |
From: Czo [O. Sirol] <Oli...@li...> - 2002-03-21 15:28:06
|
Hi, Thank you, Mattia, for your work! Here is the problem: Using wxperl (up to 0.10) and active perl (up to build 626) under windows (NT4 or 2000) using fork() will crash perl if I use Wx... this pb might come from the fact that active perl uses threads to emulates forks under windows and that Wx isn't thread safe...??? any clues? Just uncomment "use Wx" and this will make active perl crash... =<=================================== #!/usr/bin/perl use strict; #use Wx; my $pid=0; $pid=fork(); print("Bonjour\n"); if ($pid==0) { print("Bonjour papa\n"); } print("Salut\n"); =<=================================== bye. Olivier. -- http://asim.lip6.fr/home/czo/vcard/ |
From: Marcus <li...@wo...> - 2002-03-21 08:57:36
|
Can anybody make a suggestion on distributing wxPerl applications on Linux? Is there a nice installer somewhere? The problem with rpms are the dependencies. Especially since we need to package wxPerl, wxWindows, the app, and any other perl modules. Are there user-friendly alternatives to Perl2Exe? I would help write one, if I knew more about Linux :-) Anybody? Thanks, Marcus |
From: Mattia B. <mb...@ds...> - 2002-03-21 08:15:49
|
On Thu, 21 Mar 2002, Konstantinos Kontos wrote: >I'm trying to do some printing on a Windows 2000 machine, but so far >without success. >Are the printing functions (PrintDlg etc.) implemented yet? Yes, look at the demo ( in the 'examples' zip form the download page ) Printing worked last time I tried it. There isa also a simplified interface for HTML printing ( again the demo, HtmlWindow ). >Right now native printing is the only thing missing from Win32 PERL, to >make PERL a general application programming language on Windows machines. >If Mattia can nail this then it will be an important development for PERL >on Windows. >Great work Mattia. Thanks! Mattia |
From: Konstantinos K. <ck...@eu...> - 2002-03-21 06:51:47
|
Hi all, I'm trying to do some printing on a Windows 2000 machine, but so far without success. Are the printing functions (PrintDlg etc.) implemented yet? Right now native printing is the only thing missing from Win32 PERL, to make PERL a general application programming language on Windows machines. If Mattia can nail this then it will be an important development for PERL on Windows. Great work Mattia. __________________________________________________ Konstantinos Kontos Software Engineer European Dynamics S.A. E-Mail: ck...@eu... Tel.: +30 10 8094526 Fax: +30 10 8094508 __________________________________________________ |
From: Mattia B. <mb...@ds...> - 2002-03-20 20:51:38
|
> hi all... > > i've a problem for over one month now. > i just can't reproduce it. > > situation: > i've a main window. > from this main window i'm able to open window2. > window2 has a toolbar with icons. > > everytime i open window2 the icons are visible... > but after i chose a file from a filedialog and create another window, i always get the error: > "Can't load image from file 'icons/reattach.png': file does not exist. > or: > Failed to load icon from the file 'icons/sm.ico' (error 2: System can't find File.) It is always a good idea to use FindBin; load "$FindBin::RealBin/icons/my.ico" ( ok, you should use File::Spec, but you get the idea ) > but the file exist! > and the current working directory hasn't changed. Are you sure? Doesn't explicitly chdir()ing to the program directory solve the problem? > it doesn't mather if i set a defaultDir or not. > the problem doesn't occur if i just create the filedialog but don't select a file. I am almost sure that filedialog does a chdir() in some versions of wxWindows ( because the native Win32 dialog does that ). HTH Mattia |
From: Marco T. <wx...@so...> - 2002-03-20 10:40:53
|
hi all... i've a problem for over one month now. i just can't reproduce it. situation: i've a main window. from this main window i'm able to open window2. window2 has a toolbar with icons. everytime i open window2 the icons are visible... but after i chose a file from a filedialog and create another window, i always get the error: "Can't load image from file 'icons/reattach.png': file does not exist. or: Failed to load icon from the file 'icons/sm.ico' (error 2: System can't find File.) but the file exist! and the current working directory hasn't changed. it doesn't mather if i set a defaultDir or not. the problem doesn't occur if i just create the filedialog but don't select a file. has someone an ide what could be wrong? i'm really helpless greeting Marco |
From: Marco T. <wx...@so...> - 2002-03-20 09:26:23
|
> FROM: Mattia Barbon > DATE: 03/08/2002 13:34:01 > SUBJECT: [wxperl-users] New binary package for Win32 > > http://prdownloads.sourceforge.net/wxperl/Wx-0.10-wxmsw2.2.9-win32-1.zip > > It is 0.10; the only change is that I recompiled wxWindows > with support for the comctl32.dll shipped with IE 3.0; this should > enable some features of wxListCtrl ( and probably wxTreeCtrl ) > that were disabled. thank you very much for that!!! but i've problems with it... don't know if it's a bug or a mistake from my side my listctrl is in report mode... the headerlabels appear in the same style as the the top item... shouldn't be, right? my code (just inserting a bold item): ### start my $item = Wx::ListItem->new; $item->SetId(0); $item->SetFont(Wx::Font->new(8, wxDEFAULT, wxNORMAL, wxBOLD)); my $id = $list->InsertItem($item); $list->SetItem($id, 0, 'a'); $list->SetItem($id, 1, 'b'); $list->SetItem($id, 2, 'c'); ### end another question concerning my code: is it possible to just set an item bold (withhout creating a whole Wx::Font) greeting Marco |
From: Marco T. <wx...@so...> - 2002-03-18 17:28:38
|
> my $splitter1 = Wx::SplitterWindow->new($this, -1); > my $splitter2 = Wx::SplitterWindow->new($this, -1); > my $tree = Wx::TreeCtrl->new($splitter1, -1); > my $something1 = Wx:Something->new($splitter2, -1); > my $something2 = Wx:Something->new($splitter2, -1); sorry, my mistake... my $splitter2 = Wx::SplitterWindow->new($splitter1, -1); -> splitter1 ist the parent, not $this... greeting Marco |
From: Marco T. <wx...@so...> - 2002-03-18 17:21:41
|
> In the code below, when I've created a tree, I've specified $lcanvas, a > reference to the left hand canvas, as the parent. If I change this to > $self (the window or frame?), the window isn't split properly and only a > small rectangular region is displayed. So, my main questions are: > - How can I add a tree to the left-hand part/canvas of the window? my $splitter = Wx::SplitterWindow->new($this, -1); my $tree = Wx::TreeCtrl->new($splitter, -1); my $something = Wx:Something->new($splitter, -1); $splitter->SplitVertically($tree, $something); > - How can I generally add controls to frames? i was at the same point like you are now two or three months ago... i suggest to read and rewrite the examples depending on your wishes... they have everythin you need... as soon as you understand them, you'll be able to use the wxwindows docs to programm your stuff > - How can I create multiple frames for my application? How can I load and unload them? check the samples (splitter.pl)... my way to create multiple frames: my $splitter1 = Wx::SplitterWindow->new($this, -1); my $splitter2 = Wx::SplitterWindow->new($this, -1); my $tree = Wx::TreeCtrl->new($splitter1, -1); my $something1 = Wx:Something->new($splitter2, -1); my $something2 = Wx:Something->new($splitter2, -1); $splitter1->SplitVertically($tree, $splitter2); $splitter2->SplitVertically($somethin1, $something2); > I'm also having problems with toolbars Wx::Image::AddHandler(new Wx::PNGHandler); my $toolbar = $this->CreateToolBar(wxTB_HORIZONTAL|wxNO_BORDER|wxTB_FLAT, -1); $toolbar->SetToolBitmapSize(wxSIZE(22,22)); $toolbar->AddTool(0, Wx::Bitmap->new('icons/download.png', wxBITMAP_TYPE_PNG), 'download emails'); $toolbar->AddSeparator; $toolbar->AddTool(1, Wx::Bitmap->new('icons/new.png', wxBITMAP_TYPE_PNG), 'new email'); $toolbar->Realize(); a little part of my email program written with wxPerl... you could run in problems if you haven't all of "wxTB_HORIZONTAL|wxNO_BORDER|wxTB_FLAT" hope it helps greeting Marco |
From: Nick J. <sk...@er...> - 2002-03-18 13:35:36
|
I'm using wxPerl on Win32, and I'm struggling. I've looked at all the introductory tutorials I can find--and while I can now easily create a frame and add menus to it, I'm having trouble doing anything else. Anyway, I am creating a music organiser application. The general design is that there will be variable-width "split" at the left hand side of the window which will display the user's music collection as a tree structure. At the minute, my program creates a window, menus and is split into two using Wx::SplitterWindow. Each of the split canvases is a Wx::ScrolledWindow. Generally, I don't really understand how wxPerl operates. What I understand is that you must, at the very least, extend Wx::Frame and Wx::App and provide an OnInit method for Wx::App. That's fine, I can understand that, and I can understand wx's event model. I can understand creating menus, and that seems relatively straightforward. What I don't understand is how to create other controls inside the different canvases. When I look at the documentation for the C++ version of wx, I see that when I create a control, I need to specify a parent. As far as I know, this can be any class derived from Wx::Window. However, some of the example wxPerl programs (from which I've learnt most of what I know about wx!) seem to suggest that objects derived from Wx::Window have a method called "add" or similar that can be used to add controls to windows or canvases. However, Wx::ScrolledWindow doesn't seem to support this. In the code below, when I've created a tree, I've specified $lcanvas, a reference to the left hand canvas, as the parent. If I change this to $self (the window or frame?), the window isn't split properly and only a small rectangular region is displayed. So, my main questions are: - How can I add a tree to the left-hand part/canvas of the window? - How can I generally add controls to frames? - How can I create multiple frames for my application? How can I load and unload them? I'm also having problems with toolbars (not included in code below). I can create a toolbar but no buttons appear in it (I have added one button and I have called the realise method on the toolbar). Here's the problematic code: #!/usr/bin/perl use strict; use Wx; package MyCanvas; use strict; use vars qw(@ISA); @ISA = qw(Wx::ScrolledWindow); sub new { my( $class ) = shift; my( $this ) = $class->SUPER::new( @_[0,1,2,3], 0, $_[4] ); return $this; } package MusicOrganiserSplitterWindow; use strict; use vars qw(@ISA); @ISA = qw(Wx::SplitterWindow); use Wx qw(:splitterwindow wxDefaultPosition wxDefaultSize); use Wx::Event qw(EVT_SPLITTER_SASH_POS_CHANGED); sub new { my( $class ) = shift; my( $this ) = $class->SUPER::new( @_, wxDefaultPosition, wxDefaultSize, wxSP_3D|wxSP_LIVE_UPDATE ); $this->{FRAME} = $_[0]; return $this; } # Extend Wx's "Frame" class to create the main window. package MusicOrganiserFrame; use base qw(Wx::Frame); use Wx qw(wxOK wxICON_INFORMATION wxDefaultPosition wxDefaultSize); use Wx::Event qw(EVT_MENU); sub new { my $class = shift; my $self = $class->SUPER::new(@_); # Call superclass' constructor # Assign ID values my ($ID_MENU_FILE_REPORT, $ID_MENU_FILE_STATISTICS, $ID_MENU_EDIT_ADD, $ID_MENU_EDIT_DELETE, $ID_MENU_TOOLS_SETUP, $ID_MENU_HELP_CONTENTS, $ID_MENU_HELP_ABOUT, $ID_MENU_FILE_EXIT) = (1 .. 100); # Create menu objects my $file_menu = Wx::Menu->new(); my $tools_menu = Wx::Menu->new(); my $edit_menu = Wx::Menu->new(); my $help_menu = Wx::Menu->new(); # Create File menu $file_menu->Append($ID_MENU_FILE_REPORT, "\&Report\tCtrl+R", "Produce reports about your collection."); $file_menu->Append($ID_MENU_FILE_STATISTICS, "\&Statistics\tCtrl+S", "Display statistics for part or all of your collection."); $file_menu->AppendSeparator(); $file_menu->Append($ID_MENU_FILE_EXIT, "E\&xit\tCtrl+Q"); # Create Edit menu $edit_menu->Append($ID_MENU_EDIT_ADD, "\&Add volume", "Add a volume to your collection."); $edit_menu->Append($ID_MENU_EDIT_DELETE, "\&Delete volume", "Delete a volume from your collection."); # Create Tools menu $tools_menu->Append($ID_MENU_TOOLS_SETUP, "\&Setup", "Configure Music Organiser."); # Create Help menu $help_menu->Append($ID_MENU_HELP_CONTENTS, "\&Contents"); $help_menu->AppendSeparator(); $help_menu->Append($ID_MENU_HELP_ABOUT, "\&About"); # Create the menu bar that stores all the above menus my $menubar = Wx::MenuBar->new(); $menubar->Append($file_menu, '&File'); $menubar->Append($edit_menu, '&Edit'); $menubar->Append($tools_menu, '&Tools'); $menubar->Append($help_menu, '&Help'); $self->SetMenuBar($menubar); # Set up event handling for menu items. EVT_MENU($self, $ID_MENU_FILE_REPORT, \&OnMenu); # Set window icon $self->SetIcon(Wx::GetWxPerlIcon()); # Create status bar and assign values to the various segments $self->CreateStatusBar(3); $self->SetStatusText("Welcome to Music Organiser!", 1); $self->SetStatusText(scalar(gmtime), 2); my ($splitter) = $self->{SPLITTER} = MusicOrganiserSplitterWindow->new($self, -1); my ($lcanvas) = $self->{LEFTCANVAS} = MyCanvas->new($splitter, -1, [0,0], [400,400], 'Test1'); my ($rcanvas) = $self->{RIGHTCANVAS} = MyCanvas->new($splitter, -1, [0,0], [400,400], 'Test2'); $self->{TREE} = MusicOrganiserTree->new($lcanvas, -1, wxDefaultPosition, wxDefaultSize, wxTR_HAS_BUTTONS); $self->{SPLITTER}->SetMinimumPaneSize(250); $splitter->Initialize($lcanvas); $self->{LEFTCANVAS}->Show( 1 ); $self->{RIGHTCANVAS}->Show( 1 ); $self->{SPLITTER}->SplitVertically( @{$self}{'LEFTCANVAS','RIGHTCANVAS'} ); $self->{SPLITTER}->SetSashPosition(250,1); return $self; } sub OnMenu { Wx::MessageBox("Menu item selected", "Menu selected", wxOK | wxICON_INFORMATION, $_[0]); } package MusicOrganiserTree; use strict; use base qw(Wx::TreeCtrl); sub new { my $class = shift; my $this = $class->SUPER::new(@_); my $root = $this->AddRoot('Root', -1, -1, Wx::TreeItemData->new('Data')); my $tree_item; $tree_item = $this->AppendItem($root, "Please work", -1, -1, Wx::TreeItemData->new("I really hope this works!")); } package MusicOrganiserApp; use base qw(Wx::App); sub OnInit { my $self = shift; my $frame = MusicOrganiserFrame->new( undef, # Parent window -1, # Window ID 'Music Organiser', # Window title [1, 1], # X, Y position [600, 300] # X, Y size ); $self->SetTopWindow($frame); # Set the top-level window. $frame->Show(1); # Show the frame. } package main; my $app = MusicOrganiserApp->new(); $app->MainLoop; I would really appreciate any help on this. Thanks in advance, Nick |
From: Mattia B. <mb...@ds...> - 2002-03-14 20:41:30
|
> Is it possible to get TextAttr in WxPerl to work? I tried to use it on ^^^^^^ wxPerl, BTW > my textctrl to make some parts of the text I got in different colours, > but there doesn't seem to be a TextAttr sub. No, it is not wrapped yet; it is present only in wxWindows 2.3.x, and binary distributions are compiled against 2.2.x, so it would not have been available anyway ( in the binary distributions ). > That's what I tried (and various other ways that didn't work): > $textctrl->SetDefaultStyle(Wx::TextAttr(wxRED, wxLIGHT_GREY)); Regards Mattia |
From: Mo <mo...@mo...> - 2002-03-14 05:09:31
|
Is it possible to get TextAttr in WxPerl to work? I tried to use it on my textctrl to make some parts of the text I got in different colours, but there doesn't seem to be a TextAttr sub. That's what I tried (and various other ways that didn't work): $textctrl->SetDefaultStyle(Wx::TextAttr(wxRED, wxLIGHT_GREY)); Thanks for help, Mo |
From: Matt F. <ma...@iw...> - 2002-03-14 02:56:45
|
I just downloaded the latest CVS snapshot, and it compiles. However, it doesn't work. I sent Mattia a log of output from `make test`, so maybe some workaround can be done... Matt --- Jouke Visser <jo...@pv...> wrote: >On Tue, Mar 12, 2002 at 08:56:18PM +0100, Mattia Barbon wrote: >> > Hello all. As I said before, I compiled and installed wxMac 2.3.2 without problems. The samples look nice :). However, I had problems compiling wxPerl 0.08. Mattia sent me a workout, and that didn't work. 0.10 came around, and I tried that. Still doesn't work, but the wxTimer error from before >> doesn't occur. >> > >> > Please tell me what i can do (maybe send compile logs?) to help. >> Grab the CVS snapshot; it should compile now. >> >Please correct me if I'm wrong, but are you saying Mattia that wxPerl >should compile on the Mac now? > > >-- >*-----------------------------------------------* >|Jouke Visser |jo...@pv... | >|Perl GUI Geek |http://www.pvoice.org | >*-----------------------------------------------* >PS: Notice new mailaddress!! > >_______________________________________________ >wxperl-users mailing list >wxp...@li... >https://lists.sourceforge.net/lists/listinfo/wxperl-users _____________________________________________________________ Run a small business? Then you need professional email like yo...@yo... from Everyone.net http://www.everyone.net?tag |
From: Mattia B. <mb...@ds...> - 2002-03-13 20:21:34
|
> On Tue, Mar 12, 2002 at 08:56:18PM +0100, Mattia Barbon wrote: > > > Hello all. As I said before, I compiled and installed wxMac 2.3.2 without problems. The samples look nice :). However, I had problems compiling wxPerl 0.08. Mattia sent me a workout, and that didn't work. 0.10 came around, and I tried that. Still doesn't work, but the wxTimer error from before > > doesn't occur. > > > > > > Please tell me what i can do (maybe send compile logs?) to help. > > Grab the CVS snapshot; it should compile now. > > > Please correct me if I'm wrong, but are you saying Mattia that wxPerl > should compile on the Mac now? I am almost sure I announced it some time ago, but yes, it should compile; this of course does not mean it works ( it might or might not )... Regards Mattia |
From: Jouke V. <jo...@pv...> - 2002-03-13 10:10:38
|
On Tue, Mar 12, 2002 at 08:56:18PM +0100, Mattia Barbon wrote: > > Hello all. As I said before, I compiled and installed wxMac 2.3.2 without problems. The samples look nice :). However, I had problems compiling wxPerl 0.08. Mattia sent me a workout, and that didn't work. 0.10 came around, and I tried that. Still doesn't work, but the wxTimer error from before > doesn't occur. > > > > Please tell me what i can do (maybe send compile logs?) to help. > Grab the CVS snapshot; it should compile now. > Please correct me if I'm wrong, but are you saying Mattia that wxPerl should compile on the Mac now? -- *-----------------------------------------------* |Jouke Visser |jo...@pv... | |Perl GUI Geek |http://www.pvoice.org | *-----------------------------------------------* PS: Notice new mailaddress!! |
From: Mattia B. <mb...@ds...> - 2002-03-12 19:55:14
|
> Hello all. As I said before, I compiled and installed wxMac 2.3.2 without problems. The samples look nice :). However, I had problems compiling wxPerl 0.08. Mattia sent me a workout, and that didn't work. 0.10 came around, and I tried that. Still doesn't work, but the wxTimer error from before doesn't occur. > > Please tell me what i can do (maybe send compile logs?) to help. Grab the CVS snapshot; it should compile now. Regards Mattia |
From: Mattia B. <mb...@ds...> - 2002-03-10 14:32:22
|
> Hello all. As I said before, I compiled and installed wxMac 2.3.2 without > problems. The samples look nice :). However, I had problems > compiling wxPerl 0.08. Mattia sent me a workout, and that didn't > work. 0.10 came around, and I tried that. Still doesn't work, but > the wxTimer error from before doesn't occur. > > Please tell me what i can do (maybe send compile logs?) to help. If wxPerl does not compile the logs would help ( send them to me privately ); if it compiles and the minimal sample runs ( i.e. it does not crash ), but has display problems ( i.e. no window appear, menus do not work, .... ) I can't do anything about it. Regards Mattia |
From: Mattia B. <mb...@ds...> - 2002-03-10 14:27:03
|
> On 09.03.02 at 15:17 Mattia Barbon wrote: > >I will put out a new Perl 5.7.3-compatible wxPerl soon, > >I'll correct this too. > > wxPerl will remain compatible with 5.6.x though won't it? Sure! The changes involved are just some tweaks to the build system; > Some distributions are very slow in catching up. I had that problem > with Debian. Dependencies wouldn't allow a manual upgrade either. The plan is to support Debian "woody" and "recent" ( for some value of "recent" ) rpm-based distros. Regards Mattia |
From: Matt F. <ma...@iw...> - 2002-03-09 21:37:21
|
Hello all. As I said before, I compiled and installed wxMac 2.3.2 without problems. The samples look nice :). However, I had problems compiling wxPerl 0.08. Mattia sent me a workout, and that didn't work. 0.10 came around, and I tried that. Still doesn't work, but the wxTimer error from before doesn't occur. Please tell me what i can do (maybe send compile logs?) to help. Matt _____________________________________________________________ Run a small business? Then you need professional email like yo...@yo... from Everyone.net http://www.everyone.net?tag |
From: Marcus <li...@wo...> - 2002-03-09 19:11:07
|
On 09.03.02 at 15:04 Mattia Barbon wrote: >Which distribution are you using? The RPMs were compiled with >rh71. ( those damned linux distributors... why did they feel the need >to change the default site_perl to site-perl? ) I'm using Lycoris Desktop/LX (based on Caldera), I'll have to look who made the RPM. Marcus |
From: Marcus <li...@wo...> - 2002-03-09 19:11:07
|
On 09.03.02 at 15:17 Mattia Barbon wrote: >I will put out a new Perl 5.7.3-compatible wxPerl soon, >I'll correct this too. wxPerl will remain compatible with 5.6.x though won't it? Some distributions are very slow in catching up. I had that problem with Debian. Dependencies wouldn't allow a manual upgrade either. Marcus |
From: Mattia B. <mb...@ds...> - 2002-03-09 14:16:19
|
> I just installed v. 0.10 on Linux/perl 5.6.0. > Running the dialogs.pl sample I get the following error (and a crash) > after selecting the font dialog: > cannot locate ...method "New" via wx::FontData at line 220 > > Any ideas what is wrong? Yes, read below. > Is FontData simply not implemented yet? It is implemented. The problem is that I accidentally compiled it out in the binary release, due to a difference between wx 2.2 and 2.3 . I will put out a new Perl 5.7.3-compatible wxPerl soon, I'll correct this too. Regards Mattia |
From: Mattia B. <mb...@ds...> - 2002-03-09 14:04:15
|
> I forgot to mention, that the 0.10 rpm creates the subdirectory > "site_perl". My perl at least is looking for "site-perl". I had to copy > the files over so that perl could find wx.pm. Which distribution are you using? The RPMs were compiled with rh71. ( those damned linux distributors... why did they feel the need to change the default site_perl to site-perl? ) Thanks for the report! Regards Mattia |