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-06-30 09:30:25
|
> Hi, > I tried to follow the instructions for building wxperl on win32. However > the file "ftp://ftp.remstar.com/pub/wxwin/ports/mingw32/extra.zip" > can not be retrieved because it does not exist on that machine. Is this > file mandatory ? and if yes can some one sent it to me Th location has changed ( and I didn't notice ) ftp://oracle.fastpicsystems.com/pub/wxwin/ports/mingw32/extra.zip HTH Mattia P.S.: To Graciliano, you should update yoyr build instruction. |
From: Mohammed D. <md...@gw...> - 2002-06-28 09:46:35
|
Hi, I tried to follow the instructions for building wxperl on win32. However the file "ftp://ftp.remstar.com/pub/wxwin/ports/mingw32/extra.zip" can not be retrieved because it does not exist on that machine. Is this file mandatory ? and if yes can some one sent it to me regards MD I |
From: Mattia B. <mb...@ds...> - 2002-06-19 22:13:08
|
> I'm trying to use a tree control and I'm not able to : > > X) Have a 'drag image' during dragging => Minor issue, but maybe someone can comment ? I don't know how to do this > X) Implement a mechanism to scroll the tree during dragging => blocking me for the moment . > (For reference : in Tk I once implemented this by starting a timer when going out of the window containing the tree. > On that timer I then scrolled the window smoothly). For this you can use an EVT_MOTION and/or EVT_LEAVE_WINDOW and a Wx::Timer; to scroll the window, Wx::TreeCtrl API does not allow you to scroll the window pixel-by-pixel; you may use $tree->ScrollTo( $item ) HTH Mattia |
From: Dave R. <dav...@ma...> - 2002-06-19 19:35:25
|
> EVT_BUTTON( $frame, $button, \&test ); > EVT_BUTTON( $login_panel, $button, \&test ); the first argument passed to EVT_BUTTON appears as the first argument in the event handler test(). do you need access to $login_panel in this handler? passing in the frame instead would work. it is up to you how you do it, but it appears important in your situation to retain hold of $frame, or to be able to access it from anywhere. if you know the hierarchy, you should be able to GetParent() or GetGrandParent() from one window back to the frame. otherwise, find the right place to remember $frame and use it at your convenience. /dave |
From: Dave R. <dav...@ma...> - 2002-06-19 17:56:05
|
> However, when I call > > Wx::Frame->SetStatusText("Success", 1); > > from the subroutine, the app dies. No errors, warnings, or anything. > What > am I doing wrong? you should probably get a reference to the statusbar and work with that. assuming $frame is your reference to the application frame: my $sb = $frame->GetStatusBar(); > Also, is there a way to format the font color for the text in the status > bar? For example, I want success messages to be in blue, and errors in > red. never tried, but $sb->SetForegroundColour(new Wx::Colour('Red')) might work. /dave |
From: Erich C. B. <eri...@be...> - 2002-06-19 17:39:17
|
Hi everyone, I have an application that I am building with wxPerl 0.10. I have created a notebook on the frame (with a status bar) with one Panel - this is a login panel. When the user enters their username and password, they press the login button which calls a subroutine to connect to another host. When the connection is successful, I want to print a message in the status bar. However, when I call Wx::Frame->SetStatusText("Success", 1); from the subroutine, the app dies. No errors, warnings, or anything. What am I doing wrong? Also, is there a way to format the font color for the text in the status bar? For example, I want success messages to be in blue, and errors in red. Thanks in advance for your help! Erich Beyrent CKP Newspaper Systems, Inc. |
From: Marcus <li...@wo...> - 2002-06-18 08:36:47
|
>Of course, I 'm probalby caught between a rock and a hard place slightly - >if I want the extra functionality/fixes in wxWindows 2.3.3, I'll have to >take the potential hit on new bugs! I've been using 0.11b6 for some weeks and it's stable on my machine. I'm going to send my next preview version to a few people for testing in the day or two as well. Mattia, let me know before you release 0.11-stable, so I send you the latest STC stuff. I'm updating the sample/demo script at the moment. Marcus |
From: James L. <jl...@bi...> - 2002-06-18 08:03:59
|
Hi Mattia, Thanks for the info. I was wanting to use wxPerl and wxWindows 2.2.9, as these are regarded as stable. Any knowledge as to how stable wxPerl 0.11b and wxWindows 2.3.3 are? (I should probably post this to wxWindows discussion group, as well). I will be needing to ship copies of my applic to several people, so don't want to have to keep shipping patches to wxWindows, if possible. Of course, I 'm probalby caught between a rock and a hard place slightly - if I want the extra functionality/fixes in wxWindows 2.3.3, I'll have to take the potential hit on new bugs! James ----- Original Message ----- From: "Mattia Barbon" <mb...@ds...> To: "James Lavery" <jl...@bi...> Cc: <wxp...@li...> Sent: Tuesday, June 18, 2002 8:16 AM Subject: Re: [wxperl-users] wxPerl binary for wxWindows 2.3.x? > On Mon, 17 Jun 2002, James Lavery wrote: > > >Hi Guys > > > >I'm currently using wxPerl 0.10 with wxWindows 2.2.9. > > > >However, I've got a problem with bitmap alignment in toolbar buttons, which > >I believe is fixed in wx 2.3.x. (According to Robert Roebling) > > > >I suppose I'll have to build a wxWindows 2.3.2 binary myself, and rebuild > >wxPerl on top of it, won't I? Unless someone can tell me different...! > For Win32: http://wwwstud.dsi.unive.it/~mbarbon/wx/ > Compiled against wxWindows 2.3.3-to-be > > For other OSs, yes; > > Regards > Mattia > > > -------------------------------------------------------------------------- -- > Bringing you mounds of caffeinated joy > >>> http://thinkgeek.com/sf <<< > > _______________________________________________ > wxperl-users mailing list > wxp...@li... > https://lists.sourceforge.net/lists/listinfo/wxperl-users |
From: Mattia B. <mb...@ds...> - 2002-06-18 07:16:50
|
On Mon, 17 Jun 2002, James Lavery wrote: >Hi Guys > >I'm currently using wxPerl 0.10 with wxWindows 2.2.9. > >However, I've got a problem with bitmap alignment in toolbar buttons, which >I believe is fixed in wx 2.3.x. (According to Robert Roebling) > >I suppose I'll have to build a wxWindows 2.3.2 binary myself, and rebuild >wxPerl on top of it, won't I? Unless someone can tell me different...! For Win32: http://wwwstud.dsi.unive.it/~mbarbon/wx/ Compiled against wxWindows 2.3.3-to-be For other OSs, yes; Regards Mattia |
From: James L. <jl...@bi...> - 2002-06-17 21:50:47
|
Hi Guys I'm currently using wxPerl 0.10 with wxWindows 2.2.9. However, I've got a problem with bitmap alignment in toolbar buttons, which I believe is fixed in wx 2.3.x. (According to Robert Roebling) I suppose I'll have to build a wxWindows 2.3.2 binary myself, and rebuild wxPerl on top of it, won't I? Unless someone can tell me different...! Thanks, James |
From: <jos...@pa...> - 2002-06-17 10:29:48
|
I'm trying to use a tree control and I'm not able to : X) Have a 'drag image' during dragging => Minor issue, but maybe someone can comment ? X) Implement a mechanism to scroll the tree during dragging => blocking me for the moment . (For reference : in Tk I once implemented this by starting a timer when going out of the window containing the tree. On that timer I then scrolled the window smoothly). Thanks for all help, Jos |
From: Mattia B. <mb...@ds...> - 2002-06-15 14:55:16
|
> Hi Mattia, > I want to use a toolbar with buttons in my wxWindows application. Using > wxPerl, do the bitmaps for the buttons have to be stored separately on disk, > and loaded at runtime? I know that with Tk, one can serialise the image > into application data, so avoiding the need to distribute the bitmaps > separately. There are various ways: 1) use something like the attached code 2) my $data = <<EOT; data EOT and use IO::Scalar, or some tied glob like the one in demo/wxHtmlDynamic.pm and Wx::Image->new( *FH, $type ) and Wx::Bitmap->CopyFromImage() HTH Mattia |
From: Mattia B. <mb...@ds...> - 2002-06-14 19:52:38
|
> >> make (e=2): The system cannot find the file specified. > >> make: *** [libs] Error 2 > > >To be honest, I have absolutely no idea about what is failing; it > looks like > >your make can't execute an echo command ( which should not happen ) > > Try using dmake. That worked for me on NT 4, with Mingw 2.95-3.6. TO clarify: the OP has got its problem during perl -MConfig_m Makefile.PL make is run here internally by Makefile.PL, and showed the problem the OP reported. Using dmake would not help here ( of course he'll need dmake later ). Regards Mattia |
From: Marcus <li...@wo...> - 2002-06-14 12:43:35
|
>> make (e=2): The system cannot find the file specified. >> make: *** [libs] Error 2 >To be honest, I have absolutely no idea about what is failing; it looks like >your make can't execute an echo command ( which should not happen ) Try using dmake. That worked for me on NT 4, with Mingw 2.95-3.6. Marcus |
From: Mattia B. <mb...@ds...> - 2002-06-14 08:28:17
|
On Thu, 13 Jun 2002, James Lavery wrote: >Hi Mattia, >I want to use a toolbar with buttons in my wxWindows application. Using >wxPerl, do the bitmaps for the buttons have to be stored separately on disk, >and loaded at runtime? I know that with Tk, one can serialise the image >into application data, so avoiding the need to distribute the bitmaps >separately. You should be able to put XPMs inside the source ( XPMs are just text files ); I'll post some code when I get home. >On a similar topic, does wxPerl have the ability to use wxWindows resource >files for bitmaps (not sure which resource format is currently in vogue with >wxWindows)? There are WXR resources, but they are not supported with wxPerl ( and I have no plan to support them, unless someone else implements them ). If you are using wxWindows 2.3.x, you can use XRC, that are newer, better, supported, and support sizers & internationalization. >Continuing the topic (should probably post this to the wxWindows disc. >group), is there an appropriate resource builder I can/should use to build >resource files? For WXR there is dialoged, for XRC there is wxDesigner ( commercial ), and a Python base one that should be included in recent wxPython distributions. HTH Mattia |
From: James L. <jl...@bi...> - 2002-06-13 22:48:58
|
Hi Mattia, I want to use a toolbar with buttons in my wxWindows application. Using wxPerl, do the bitmaps for the buttons have to be stored separately on disk, and loaded at runtime? I know that with Tk, one can serialise the image into application data, so avoiding the need to distribute the bitmaps separately. On a similar topic, does wxPerl have the ability to use wxWindows resource files for bitmaps (not sure which resource format is currently in vogue with wxWindows)? Continuing the topic (should probably post this to the wxWindows disc. group), is there an appropriate resource builder I can/should use to build resource files? Thanks, James |
From: Mattia B. <mb...@ds...> - 2002-06-13 20:08:50
|
> Hello guyz, > > subject descibe well what I am trying to do :) > only forgot to mention that I am using w2k... > (oh and also that ExtUtils::FakeConfig and Config_m > should normally be correctly installed) > > but while running the makefile: > perl -MConfig_m Makefile.PL > > I am getting lot of errors (and of course compilation failed): > ----- > process_begin: CreateProcess((null), echo -D_X86_=1 -DWIN32 -D_WIN32 -DWINVER=0x > 0400 -D__WIN95__ -D__GNUWIN32__ -D__WIN32__ -ID:/UnixDos/mingw/wx232/lib/mswdll > -ID:/UnixDos/mingw/wx232/include -ID:/UnixDos/mingw/wx232/contrib/include -ID:/U > nixDos/mingw/wx232/src/regex -ID:/UnixDos/mingw/wx232/src/png -ID:/UnixDos/mingw > /wx232/src/jpeg -ID:/UnixDos/mingw/wx232/src/zlib -ID:/UnixDos/mingw/wx232/src/t > iff -ID:/UnixDos/mingw/wx232/include/wx/msw/gnuwin32 -DSTRICT -D__WXMSW__ -D__WI > NDOWS__ -D__WXDEBUG__ -Wall -fno-pcc-struct-return -O2 -fno-rtti -fno-exceptions > -DWXUSINGDLL=1, ...) failed. > make (e=2): The system cannot find the file specified. > make: *** [cccflags] Error 2 > process_begin: CreateProcess((null), echo D:/UnixDos/mingw/wx232/lib/libwxmsw232 > .a -lstdc++ -lgcc -lwinspool -lwinmm -lshell32 -lcomctl32 -lctl3d32 -lodbc32 -la > dvapi32 -lodbc32 -lwsock32 -lopengl32 -lglu32 -lole32 -loleaut32 -luuid, ...) fa > iled. > make (e=2): The system cannot find the file specified. > make: *** [libs] Error 2 To be honest, I have absolutely no idea about what is failing; it looks like your make can't execute an echo command ( which should not happen ) > ----- > > and I have those errors of course for each module of Wx... > At first glance it seems pretty easy to pin point the prob but am I right ? > and above all to what is it due ? and how to solve it ? > > 1. ID:/UnixDos/mingw/wx232/lib/mswdll ## NO DRIVE DEFINED this is -ID...., and is OK > 2. process_begin: CreateProcess((null), echo D:/UnixDos/mingw/wx232/lib/libwxmsw232 > .a AND THEN make (e=2): The system cannot find the file specified. > ## I SUSPECT THAT COMPILER OR WIN2K DOES NOT HANDLE WELL THE > "/" (AND THEREFORE WOULD NEED "\" INSTEAD) BUT ONCE AGAIN DUNNO... No, this is not a compiler problem > 3. Note (probably harmless): No library found for 'kernel32.lib' > ## HMM TO WHICH PACKAGE BELONG THOSE LIBS ? They are in MinGW, and in this case the warning is truly harmless I know this does not help at all, sorry Mattia |
From: Graciliano M. P. \(V. Sites\) <gm...@vi...> - 2002-06-13 18:18:07
|
Have you set the enverioment variables? set PATH=c:\mingw\bin;c:\mingw\lib;c:\mingw\dmake;%PATH% set WXWIN=c:/mingw/wx232 set WXDIR=c:/mingw/ Have you compiled the wxWindows library? Take a look at http://wxperl.virtuasites.com.br for more informations. Graciliano M. P. |
From: Ash D. <as...@ji...> - 2002-06-13 16:14:55
|
SGVsbG8gZ3V5eiwNCg0Kc3ViamVjdCBkZXNjaWJlIHdlbGwgd2hhdCBJIGFtIHRyeWluZyB0byBk byA6KQ0Kb25seSBmb3Jnb3QgdG8gbWVudGlvbiB0aGF0IEkgYW0gdXNpbmcgdzJrLi4uDQoob2gg YW5kIGFsc28gdGhhdCBFeHRVdGlsczo6RmFrZUNvbmZpZyBhbmQgQ29uZmlnX20NCnNob3VsZCBu b3JtYWxseSBiZSBjb3JyZWN0bHkgaW5zdGFsbGVkKQ0KDQpidXQgd2hpbGUgcnVubmluZyB0aGUg bWFrZWZpbGU6DQpwZXJsIC1NQ29uZmlnX20gTWFrZWZpbGUuUEwNCg0KSSBhbSBnZXR0aW5nIGxv dCBvZiBlcnJvcnMgKGFuZCBvZiBjb3Vyc2UgY29tcGlsYXRpb24gZmFpbGVkKToNCi0tLS0tDQpw cm9jZXNzX2JlZ2luOiBDcmVhdGVQcm9jZXNzKChudWxsKSwgZWNobyAtRF9YODZfPTEgLURXSU4z MiAtRF9XSU4zMiAtRFdJTlZFUj0weA0KMDQwMCAtRF9fV0lOOTVfXyAtRF9fR05VV0lOMzJfXyAt RF9fV0lOMzJfXyAtSUQ6L1VuaXhEb3MvbWluZ3cvd3gyMzIvbGliL21zd2RsbA0KLUlEOi9Vbml4 RG9zL21pbmd3L3d4MjMyL2luY2x1ZGUgLUlEOi9Vbml4RG9zL21pbmd3L3d4MjMyL2NvbnRyaWIv aW5jbHVkZSAtSUQ6L1UNCm5peERvcy9taW5ndy93eDIzMi9zcmMvcmVnZXggLUlEOi9Vbml4RG9z L21pbmd3L3d4MjMyL3NyYy9wbmcgLUlEOi9Vbml4RG9zL21pbmd3DQovd3gyMzIvc3JjL2pwZWcg LUlEOi9Vbml4RG9zL21pbmd3L3d4MjMyL3NyYy96bGliIC1JRDovVW5peERvcy9taW5ndy93eDIz Mi9zcmMvdA0KaWZmIC1JRDovVW5peERvcy9taW5ndy93eDIzMi9pbmNsdWRlL3d4L21zdy9nbnV3 aW4zMiAtRFNUUklDVCAtRF9fV1hNU1dfXyAtRF9fV0kNCk5ET1dTX18gLURfX1dYREVCVUdfXyAt V2FsbCAtZm5vLXBjYy1zdHJ1Y3QtcmV0dXJuIC1PMiAtZm5vLXJ0dGkgLWZuby1leGNlcHRpb25z DQogLURXWFVTSU5HRExMPTEsIC4uLikgZmFpbGVkLg0KbWFrZSAoZT0yKTogVGhlIHN5c3RlbSBj YW5ub3QgZmluZCB0aGUgZmlsZSBzcGVjaWZpZWQuDQptYWtlOiAqKiogW2NjY2ZsYWdzXSBFcnJv ciAyDQpwcm9jZXNzX2JlZ2luOiBDcmVhdGVQcm9jZXNzKChudWxsKSwgZWNobyBEOi9Vbml4RG9z L21pbmd3L3d4MjMyL2xpYi9saWJ3eG1zdzIzMg0KLmEgLWxzdGRjKysgLWxnY2MgLWx3aW5zcG9v bCAtbHdpbm1tIC1sc2hlbGwzMiAtbGNvbWN0bDMyIC1sY3RsM2QzMiAtbG9kYmMzMiAtbGENCmR2 YXBpMzIgLWxvZGJjMzIgLWx3c29jazMyIC1sb3BlbmdsMzIgLWxnbHUzMiAtbG9sZTMyIC1sb2xl YXV0MzIgLWx1dWlkLCAuLi4pIGZhDQppbGVkLg0KbWFrZSAoZT0yKTogVGhlIHN5c3RlbSBjYW5u b3QgZmluZCB0aGUgZmlsZSBzcGVjaWZpZWQuDQptYWtlOiAqKiogW2xpYnNdIEVycm9yIDINCk5v dGUgKHByb2JhYmx5IGhhcm1sZXNzKTogTm8gbGlicmFyeSBmb3VuZCBmb3IgJycNCk5vdGUgKHBy b2JhYmx5IGhhcm1sZXNzKTogTm8gbGlicmFyeSBmb3VuZCBmb3IgJ29sZG5hbWVzLmxpYicNCk5v dGUgKHByb2JhYmx5IGhhcm1sZXNzKTogTm8gbGlicmFyeSBmb3VuZCBmb3IgJ2tlcm5lbDMyLmxp YicNCk5vdGUgKHByb2JhYmx5IGhhcm1sZXNzKTogTm8gbGlicmFyeSBmb3VuZCBmb3IgJ3VzZXIz Mi5saWInDQpOb3RlIChwcm9iYWJseSBoYXJtbGVzcyk6IE5vIGxpYnJhcnkgZm91bmQgZm9yICdn ZGkzMi5saWInDQpOb3RlIChwcm9iYWJseSBoYXJtbGVzcyk6IE5vIGxpYnJhcnkgZm91bmQgZm9y ICd3aW5zcG9vbC5saWInDQpOb3RlIChwcm9iYWJseSBoYXJtbGVzcyk6IE5vIGxpYnJhcnkgZm91 bmQgZm9yICdjb21kbGczMi5saWInDQpOb3RlIChwcm9iYWJseSBoYXJtbGVzcyk6IE5vIGxpYnJh cnkgZm91bmQgZm9yICdhZHZhcGkzMi5saWInDQpOb3RlIChwcm9iYWJseSBoYXJtbGVzcyk6IE5v IGxpYnJhcnkgZm91bmQgZm9yICdzaGVsbDMyLmxpYicNCk5vdGUgKHByb2JhYmx5IGhhcm1sZXNz KTogTm8gbGlicmFyeSBmb3VuZCBmb3IgJ29sZTMyLmxpYicNCk5vdGUgKHByb2JhYmx5IGhhcm1s ZXNzKTogTm8gbGlicmFyeSBmb3VuZCBmb3IgJ29sZWF1dDMyLmxpYicNCk5vdGUgKHByb2JhYmx5 IGhhcm1sZXNzKTogTm8gbGlicmFyeSBmb3VuZCBmb3IgJ25ldGFwaTMyLmxpYicNCk5vdGUgKHBy b2JhYmx5IGhhcm1sZXNzKTogTm8gbGlicmFyeSBmb3VuZCBmb3IgJ3V1aWQubGliJw0KTm90ZSAo cHJvYmFibHkgaGFybWxlc3MpOiBObyBsaWJyYXJ5IGZvdW5kIGZvciAnd3NvY2szMi5saWInDQpO b3RlIChwcm9iYWJseSBoYXJtbGVzcyk6IE5vIGxpYnJhcnkgZm91bmQgZm9yICdtcHIubGliJw0K Tm90ZSAocHJvYmFibHkgaGFybWxlc3MpOiBObyBsaWJyYXJ5IGZvdW5kIGZvciAnd2lubW0ubGli Jw0KTm90ZSAocHJvYmFibHkgaGFybWxlc3MpOiBObyBsaWJyYXJ5IGZvdW5kIGZvciAndmVyc2lv bi5saWInDQpOb3RlIChwcm9iYWJseSBoYXJtbGVzcyk6IE5vIGxpYnJhcnkgZm91bmQgZm9yICdv ZGJjMzIubGliJw0KTm90ZSAocHJvYmFibHkgaGFybWxlc3MpOiBObyBsaWJyYXJ5IGZvdW5kIGZv ciAnb2RiY2NwMzIubGliJw0KTm90ZSAocHJvYmFibHkgaGFybWxlc3MpOiBObyBsaWJyYXJ5IGZv dW5kIGZvciAnbXN2Y3J0LmxpYicNCnByb2Nlc3NfYmVnaW46IENyZWF0ZVByb2Nlc3MoKG51bGwp LCBlY2hvIEQ6L1VuaXhEb3MvbWluZ3cvd3gyMzIsIC4uLikgZmFpbGVkLg0KbWFrZSAoZT0yKTog VGhlIHN5c3RlbSBjYW5ub3QgZmluZCB0aGUgZmlsZSBzcGVjaWZpZWQuDQptYWtlOiAqKiogW3d4 ZGlyXSBFcnJvciAyDQpwcm9jZXNzX2JlZ2luOiBDcmVhdGVQcm9jZXNzKChudWxsKSwgZWNobyBE Oi9Vbml4RG9zL21pbmd3L3d4MjMyL2xpYi9saWJ3eG1zdzIzMg0KLmEsIC4uLikgZmFpbGVkLg0K bWFrZSAoZT0yKTogVGhlIHN5c3RlbSBjYW5ub3QgZmluZCB0aGUgZmlsZSBzcGVjaWZpZWQuDQpt YWtlOiAqKiogW2ltcGxpYl0gRXJyb3IgMg0KV3JpdGluZyBNYWtlZmlsZSBmb3IgV3g6Okh0bWwN Ci0tLS0tDQoNCmFuZCBJIGhhdmUgdGhvc2UgZXJyb3JzIG9mIGNvdXJzZSBmb3IgZWFjaCBtb2R1 bGUgb2YgV3guLi4NCkF0IGZpcnN0IGdsYW5jZSBpdCBzZWVtcyBwcmV0dHkgZWFzeSB0byBwaW4g cG9pbnQgdGhlIHByb2IgYnV0IGFtIEkgcmlnaHQgPw0KYW5kIGFib3ZlIGFsbCB0byB3aGF0IGlz IGl0IGR1ZSA/IGFuZCBob3cgdG8gc29sdmUgaXQgPw0KDQoxLiBJRDovVW5peERvcy9taW5ndy93 eDIzMi9saWIvbXN3ZGxsICMjIE5PIERSSVZFIERFRklORUQNCg0KMi4gIHByb2Nlc3NfYmVnaW46 IENyZWF0ZVByb2Nlc3MoKG51bGwpLCBlY2hvIEQ6L1VuaXhEb3MvbWluZ3cvd3gyMzIvbGliL2xp Ynd4bXN3MjMyDQouYSBBTkQgVEhFTiBtYWtlIChlPTIpOiBUaGUgc3lzdGVtIGNhbm5vdCBmaW5k IHRoZSBmaWxlIHNwZWNpZmllZC4NCiMjIEkgU1VTUEVDVCBUSEFUIENPTVBJTEVSIE9SIFdJTjJL IERPRVMgTk9UIEhBTkRMRSBXRUxMIFRIRQ0KIi8iIChBTkQgVEhFUkVGT1JFIFdPVUxEIE5FRUQg IlwiIElOU1RFQUQpIEJVVCBPTkNFIEFHQUlOIERVTk5PLi4uDQoNCjMuIE5vdGUgKHByb2JhYmx5 IGhhcm1sZXNzKTogTm8gbGlicmFyeSBmb3VuZCBmb3IgJ2tlcm5lbDMyLmxpYicNCiMjIEhNTSBU TyBXSElDSCBQQUNLQUdFIEJFTE9ORyBUSE9TRSBMSUJTID8NCg0KDQpJZiBhbnlvbmUgY291bGQg dGlwIG1lIGEgYml0LCBpdCB3b3VsZCBiZSBtb3N0IGFwcHJlY2lhdGVkIDopDQoNCk1hbnkgdGhh bmtzIHRvIGFsbCAhDQo= |
From: Mattia B. <mb...@ds...> - 2002-06-12 19:13:11
|
> Hi Mattia, > I'm using Wx::MessageDialog as follows: > > my $dlg = Wx::MessageDialog->new($this,'Clear log?','Confirm',wxYES_NO > |wxNO_DEFAULT | wxICON_QUESTION ); > > However, it seems that wxYES_DEFAULT and wxNO_DEFAULT are not exported by > wxPerl. > > Could you please include these in the next build, or is there a workaround I > can use? Will include; for now: wxYES_DEFAULT => 0x00000000 // has no effect (default) wxNO_DEFAULT => 0x00000080 HTH Mattia |
From: Graciliano M. P. \(V. Sites\) <gm...@vi...> - 2002-06-12 05:21:47
|
Mattia, I'm trying to send e-mails to you at mb...@ds... but the are = coming back! This are happening since day 8. Graciliano M. P. |
From: James L. <jl...@bi...> - 2002-06-11 22:39:42
|
Hi Mattia, I'm using Wx::MessageDialog as follows: my $dlg = Wx::MessageDialog->new($this,'Clear log?','Confirm',wxYES_NO |wxNO_DEFAULT | wxICON_QUESTION ); However, it seems that wxYES_DEFAULT and wxNO_DEFAULT are not exported by wxPerl. Could you please include these in the next build, or is there a workaround I can use? Thanks, James |
From: Mattia B. <mb...@ds...> - 2002-06-11 19:24:07
|
> Mattia, > > I understand the idea to make wxPerl just with things of wxWindows, and > I'm making a lot of other foo things, that I don't want to introduce in > wxPerl to not break the wxWindows style. But with wxWindows we don't have > the problem of the dalay time to show a Splash, and if the Splash is slow to Ok, you convinced me. > start, it's not very useful. :-/ > I can't obligate you to introduce the SplashFast.pm, but just think about > the use of the Splash without it! I will incorporate it when you think it is finished. Regards Mattia |
From: Graciliano M. P. \(V. Sites\) <gm...@vi...> - 2002-06-11 18:17:00
|
Mattia, I understand the idea to make wxPerl just with things of wxWindows, and I'm making a lot of other foo things, that I don't want to introduce in wxPerl to not break the wxWindows style. But with wxWindows we don't have the problem of the dalay time to show a Splash, and if the Splash is slow to start, it's not very useful. :-/ I can't obligate you to introduce the SplashFast.pm, but just think about the use of the Splash without it! Graciliano M. P. > First, I appreciate the efforts you are putting on this, so read > what follows with this appreciation in mind! > > >Mattia wrote: > >> I'm not that excited about incorporating it ( I'd like to keep the core > >> as small as possible ), but I can be convinced otherwise, of course. > > > >Mattia, > > > > My first example was just a big test, but was a mess in the code. > > Too much changes in your modules just for one thing, the Splash. > > > > But I finished the SplashFast.pm module. It's simple and independent, > > don't need changes in the other modules. Please thake a look in the > > new .pm because 11 different peoples was looking about this > > in the last 3 days, and asking me how to use. > I know this; the problem is not in your code, is more: where do we > draw the line of what is in wxPerl and what are modules based > on wxPerl? I, personally, would like to include your SplashFast > in wxPerl, but, if wxPerl becomes very popular, and, say, > 100 people made their little module to do "Foo" using wxPerl, > I would like these modukles to be external to wxPerl; I am not > saying your last SplashFast.pm is not worth inclusion in wxPerl. > is that it can work as well as an external module, so it does not > need to be in the wxPerl distribution. > > I hope you can understand why I am exitant, I'd like wxPerl to > contain just what is in wxWindows + contrib. > > On the other hand, it is handy for SplashFast.pm to be inside the > distribution ( you just need wxPerl, no external modules ). > > Regards > Mattia > |
From: Mattia B. <mb...@ds...> - 2002-06-11 11:22:06
|
On Mon, 10 Jun 2002, Graciliano M. P. (Virtua Sites) wrote: First, I appreciate the efforts you are putting on this, so read what follows with this appreciation in mind! >Mattia wrote: >> I'm not that excited about incorporating it ( I'd like to keep the core >> as small as possible ), but I can be convinced otherwise, of course. > >Mattia, > > My first example was just a big test, but was a mess in the code. > Too much changes in your modules just for one thing, the Splash. > > But I finished the SplashFast.pm module. It's simple and independent, > don't need changes in the other modules. Please thake a look in the > new .pm because 11 different peoples was looking about this > in the last 3 days, and asking me how to use. I know this; the problem is not in your code, is more: where do we draw the line of what is in wxPerl and what are modules based on wxPerl? I, personally, would like to include your SplashFast in wxPerl, but, if wxPerl becomes very popular, and, say, 100 people made their little module to do "Foo" using wxPerl, I would like these modukles to be external to wxPerl; I am not saying your last SplashFast.pm is not worth inclusion in wxPerl. is that it can work as well as an external module, so it does not need to be in the wxPerl distribution. I hope you can understand why I am exitant, I'd like wxPerl to contain just what is in wxWindows + contrib. On the other hand, it is handy for SplashFast.pm to be inside the distribution ( you just need wxPerl, no external modules ). Regards Mattia |