[Fwd: Re: OFF-TOPIC: Perl...]

2008-01-29 Thread Juan José 'Peco' San Martín
On Mon, 2008-01-28 at 23:59 -0800, Sergei Steshenko wrote: --- Juan José 'Peco' San Martín [EMAIL PROTECTED] wrote: Many thanks for your thoughts (Sergei and Chris). I'm not looking for a lang for all, but I'm afraid about Perl... IMHO, it needs a good push to jump into the 'new

OFF-TOPIC: Perl...

2008-01-27 Thread Juan José 'Peco' San Martín
I know this is not the right place to write this but... I'm afraid of Perl. I love it, I think it's a wonderful language and what to say about CPAN... is uncomparable!. But today, if you want to develop for the the Nokia Smartphones (Symbian), or for the Nintendo DS, or for large systems or for

Re: ANNOUCE: Zim

2005-09-28 Thread Juan José 'Peco' San Martín
Uohhh!!!. I didn't see the application yet, but I think the idea is wonderfull!! Congratulations! Peco On Wed, 2005-09-28 at 09:22 +0200, Jaap Karssenberg wrote: Greetings, I want to announce a new gtk2-perl application I have been working on last month. Zim is a WYSIWYG text editor

Re: Password entry

2005-08-09 Thread Juan José 'Peco' San Martín
On Tue, 2005-08-09 at 15:15 +0700, Beast wrote: How do I create password entry? (ie. same like Gtk2::Entry but every chars displayed as *) Use $text-set_visibility(0) For example using Glade: $text=$gladexml-get_widget('entry1'); $text-set_visibility(0); Hope this help. Peco Thanks.

Dialog hide/destroy

2005-07-04 Thread Juan José 'Peco' San Martín
Hello all. In order to understand how the window widgets works, I created a minor application. One windows with two buttons in order to hide or show another window. All is correct! :-) Now, I'm trying to do the same but using a main window with Menu widget that calls a new dialog window. All

Re: Dialog hide/destroy

2005-07-04 Thread Juan José 'Peco' San Martín
This typically means that you're trying to call -show on a dead widget. In your delete-event handler, what are you doing? If your handler returns FALSE, the default handler will destroy the window; to hide from delete event, you must set up your handler like this:

Timers

2005-06-30 Thread Juan José 'Peco' San Martín
Hello all. I'm using the timers: my $pointer-{timer}=Glib::Timeout-add(1000,\progress_timeout,$label); All seems to be ok. Each time the progress_timeout function is called, I'm able to change the value of $label with $pointer-set_text(123); My issue is that I would like to attach the same