Friday 11 of April 2008 11:16:14 [EMAIL PROTECTED] napisał(a):
> Hi Waldemar,
> If you know also C/C++ you can check book "Cross-Platform GUI Programming
> with wxWidgets". PDF version of this book can be downloaded for free from
> http://www.informit.com/promotions/promotion.aspx?promo=135563&redir=1

Thanks! However I do not know c/c++ :(. But I will see it now. 
But I am really really thankful for a pointing my attantion to this site!

Waldemar
> 
> There is an example of non-rectangular frame code in section "Top-Level 
> Windows" within Chapter 4. I do not know if it is possible to create these
> non-rectangular windows using wxperl.

> 
> 
> Regards,
> Roman
> 
> > ------------ Původní zpráva ------------
> > Od: Waldemar Biernacki <[EMAIL PROTECTED]>
> > Předmět: How to start with wxperl and wxwidgets?
> > Datum: 08.4.2008 11:16:36
> > ----------------------------------------
> > Hello everybody.
> > 
> > I am using Win32::GUI, but it is only for Windows. I would like to try 
> > wxperl
> > because it works on Windows and Linux.
> > 
> > Additionally question to those of you who used Win32::GUI and Wxperl: 
> > which of the systems is faster in creation (and displaying) objects on 
> > screens?
> > 
> > For Win32::GUI there are quite good documentation and many useful examples 
> > to
> > start (all working!).
> > It seems that wxperl documentation is poor and they say I should use 
> > wxwidgets
> > documentation instead. 
> > I cannot find examples of working wxperl scripts.
> > There is nothing better than good example! 
> > 
> > Maybe someone could be so nice and give me a simple (I hope!) show of using
> > wxwidgets on the following example:
> > 
> > At the end there is the known wxperl example. I would be very happy I 
> > someone
> > could give me show how to add two features to the window:
> > 1. background image which give its size as a windows size
> > 2. How to remove title bar.
> > and in what way I should use wxwidgets library to perform all that staff.
> > 
> > Maybe there is more complete documantation? 
> > Anyway any help in the direction how to effectively use wxperl would be
> > appriciate!
> > 
> > Waldemar
> > 
> > ########################################
> > #!/usr/bin/perl -w
> > use strict;
> > use Wx;
> > package MyApp;
> > use base 'Wx::App';
> > sub OnInit {
> >   my $frame = Wx::Frame->new( undef,
> >     -1,
> >     'wxPerl rules',
> >     [-1, -1],
> >     [250, 150],
> >   );
> >   $frame->Show( 1 );
> > }
> > package main;
> > my $app = MyApp->new;
> > $app->MainLoop;
> > ########################################
> > 
> > 
> > 
> > 
> > 
> 


Reply via email to