Re: [pygtk] Python 3.0 plans

2007-08-29 Thread Fernando San Martín Woerner
El mié, 29-08-2007 a las 23:36 +0200, Andi Albrecht escribió:
> 2007/8/29, Johan Dahlin <[EMAIL PROTECTED]>:
> 
> Hi Johan and all,
> 
> in general I think it is a very good idea to port PyGTK to Python 3.x
> as soon as possible. The api must not be stable with the fist alpha
> release, but it need to be stable at least with one of the first
> betas. We'll have to port a bunch of things: First of all the
> bindings, but the examples and maybe the documentations too.

On the other hand, please don't forget win32 port, for many developers
are very relevant too!

Cheers
> 
-- 
Fernando San Martín Woerner
Jefe de Informática
Galilea S.A.


-- 
Este mensaje ha sido analizado por nuestros servidores
en busca de virus y otros contenidos peligrosos,
y se considera que est� limpio.


___
pygtk mailing list   pygtk@daa.com.au
http://www.daa.com.au/mailman/listinfo/pygtk
Read the PyGTK FAQ: http://www.async.com.br/faq/pygtk/


Re: [pygtk] Good editable grid widget for PyGTK?

2006-08-03 Thread Fernando San Martín Woerner

Vincent Delporte escribió:

Hello

I'm evaluating PyGTK to write a business application for either Linux or 
Windows. I'll need a good grid/spreadsheet editable widget, maybe not on 
par with eg. ComponentOne's excellent VSFlexGrid 
(http://www.componentone.com/newimages/flexgrid_02_lg.gif), but somewhat 
professional-grade.


Any recommendation?



gtk.TreeView(), is a powerfull widget in pygtk, but also is very hard to 
figure out how to use it, including columns, stores and renders, for 
begginers is one of the most difficult stuff to get working, after you 
get the trick is quite easy and you can do a lot with it.


If you're a looking for a framework to develop in a multiplatform 
enviroment, may be you're looking for Kiwi,


http://www.async.com.br/projects/kiwi/

is based on pygtk but is oriented to handle data, like other customized 
widgets on win32 or linux enviroments. Kiwi is a real option for 
enterprise developer and there are real apps using it.


cheers

--
Fernando San Martín Woerner
Jefe de Informática
Galilea S.A. http://www.galilea.cl/

--
Este mensaje ha sido analizado por nuestros servidores
en busca de virus y otros contenidos peligrosos,
y se considera que está limpio.


begin:vcard
fn;quoted-printable:Fernando San Mart=C3=ADn Woerner
n;quoted-printable:San Mart=C3=ADn Woerner;Fernando
email;internet:[EMAIL PROTECTED]
tel;work:56-71-514400
tel;fax:56-71-514450
x-mozilla-html:FALSE
version:2.1
end:vcard

___
pygtk mailing list   pygtk@daa.com.au
http://www.daa.com.au/mailman/listinfo/pygtk
Read the PyGTK FAQ: http://www.async.com.br/faq/pygtk/


Re: [pygtk] Tutorial not available: Writing PyGTK applications in a visual way

2005-11-30 Thread Fernando San Martín Woerner
On mié, 2005-11-30 at 10:56 +0100, Loic wrote:
> Hello,
> 
> I have used this tutorial some time ago:
> 
> "Writing PyGTK applications in a visual way" by Sandino "tigrux" Flores
> URL: http://primates.ximian.com/~sandino/python-glade/
> 
> Today the website returns a 404 error.
> 
> A friend starts to work with pyGTK and I recommended him to start with
> this tutorial. Has anybody a cached version on a harddrive somewhere
> or the new location?

Sandino was fired from ximian, so i'll ask him if that page is available
and if is possible to move it to other server.

-- 
Fernando San Martín Woerner <[EMAIL PROTECTED]>

___
pygtk mailing list   pygtk@daa.com.au
http://www.daa.com.au/mailman/listinfo/pygtk
Read the PyGTK FAQ: http://www.async.com.br/faq/pygtk/


[pygtk] [ANN] PIDA 0.2.2 released

2005-08-03 Thread Fernando San Martín Woerner
PIDA is the Python Integrated Development Application. It is an IDE
(integrated development environment) written in
Python (http://www.python.org/) and the GTK (http://www.pygtk.org/)
graphical toolkit.

you can find PIDA at:

http://pida.berlios.de/index.php/Main_Page

downloads at:

http://pida.berlios.de/index.php/PIDA:Downloads

Release Notes for Pida 0.2.2

== What's New ==

;Pastebin plugin : Allows pasting of entered, and yanked text to the
rafb.net
and #Pida pastebins.

;Culebra plugin : Editor using GTSourceView, including syntax
highlighting,
block indent, block comment, and intelligent Python code completion, can
be used in
place of Vim.

;Per-filetype Plugins : Plugins can be optionally displayed and hidden
for
different file-types.

;Mercurial support : Basic support has been added to the project plugin
to
support the Mercurial version control system.

;Filetype handling : Plugins can be configured to be displayed per
filetype.

;Terminal support : Xterm can be used in place of the internal VTE
widget.

;Layout : Added options for alternate layouts.

;Buffer list : Display parent directory of buffer filename in buffer
list.

;First time-run wizard to select required components.

== Notes ==

Please read README in the same directory as this file for
installation/upgrade
information and known issues.

Enjoy,


-- 
Fernando San Martín Woerner
Jefe de Informática 
Galilea S.A.

___
pygtk mailing list   pygtk@daa.com.au
http://www.daa.com.au/mailman/listinfo/pygtk
Read the PyGTK FAQ: http://www.async.com.br/faq/pygtk/


Re: [pygtk] Textview flush

2005-06-23 Thread Fernando San Martín Woerner
that's a FAQ

http://www.async.com.br/faq/pygtk/index.py?req=show&file=faq03.007.htp

cheers

El jue, 23-06-2005 a las 23:11 +0100, Prash escribió:
> Hi Peeps,
> 
>  Forgive me for asking so many questions but I'm writing a rather
> large application. I wanted to ask if there is some sort of a textview
> flush method? Observe the code below:-
> 
> import time
> writetview("line 1")
> time.sleep(10)
> writetview("line 2")
> 
> Nothing appears on the textview until the sleep has passed. Why did it
> not write "line 1" and then wait for 10 sec and then write "line 2".
> How do I make my function writetview show the written stuff
> immediately on the textview?
> 
> TIA
> ___
> pygtk mailing list   pygtk@daa.com.au
> http://www.daa.com.au/mailman/listinfo/pygtk
> Read the PyGTK FAQ: http://www.async.com.br/faq/pygtk/
-- 
Fernando San Martín Woerner
Jefe de Informática
Galilea S.A.

___
pygtk mailing list   pygtk@daa.com.au
http://www.daa.com.au/mailman/listinfo/pygtk
Read the PyGTK FAQ: http://www.async.com.br/faq/pygtk/


Re: [pygtk] how to print from pygtk?

2004-06-18 Thread Fernando San Martín Woerner
Christian Robottom Reis escribió:
On Fri, Jun 18, 2004 at 03:11:28PM +0200, Ivan Brkanac wrote:
 

I would like to do some printing from pygtk (on windows)
how can it be done I haw data in text buffer and it needs to go to 
printer, as I searched
   

If you want to use GNOME's printing facilities, one alternative is using
the gnome-print bindings that Gustavo started a while ago. I'm not sure
in what state they are in, but I suspect they do work.
Another alternative (mentioned here already) is generating PS/PDF via
reportlab (www.reportlab.org) and printing using invocation of the lpr
binary itself.
 

i understand Ivan is working on win32 platform, so the gnome-print
bindings are unavaible, reportlab is the only one choice, on the other
hand if he is using linux the bindings should be a solution, there was
post in this mailing list from Pier Carteri with some code using
gnome-print and class PrinAssistant very useful, Ivan should check the
mail archive in october or november i guess
regards
--
Fernando San Martín Woernercounter.li.org Linux User #216550
Jefe Depto. InformáticaGalilea S.A.
Talca, VII Región Chile(56)71-224876
GNOME Foundation Membershiphttp://pygestor.gnome.cl
___
pygtk mailing list   [EMAIL PROTECTED]
http://www.daa.com.au/mailman/listinfo/pygtk
Read the PyGTK FAQ: http://www.async.com.br/faq/pygtk/


Re: [pygtk] how to print from pygtk?

2004-06-18 Thread Fernando San Martín Woerner
Ivan Brkanac escribió:
Hello
I would like to do some printing from pygtk (on windows)
how can it be done I haw data in text buffer and it needs to go to 
printer, as I searched
documentation I couldn't find anything

here in the pyGestor project we are using reportlab 
http://www.reportlab.org/, and acrobat reader as preview manager.

regards
--
Fernando San Martín Woernercounter.li.org Linux User #216550
Jefe Depto. InformáticaGalilea S.A.
Talca, VII Región Chile(56)71-224876
GNOME Foundation Membershiphttp://pygestor.gnome.cl
___
pygtk mailing list   [EMAIL PROTECTED]
http://www.daa.com.au/mailman/listinfo/pygtk
Read the PyGTK FAQ: http://www.async.com.br/faq/pygtk/


Re: [pygtk] Pygtk + glade + windows

2004-05-06 Thread Fernando San Martín Woerner
Laughlin, Joseph V wrote:
 

From: Fernando San Martín Woerner [mailto:[EMAIL PROTECTED] 
Sent: Thursday, May 06, 2004 9:27 AM
To: Laughlin, Joseph V
Cc: [EMAIL PROTECTED]
Subject: Re: [pygtk] Pygtk + glade + windows

Laughlin, Joseph V wrote:
   

Has anyone got an application that uses pygtk + glade on Windows? 
Should I use cygwin to do this, or something else?

Thanks,
Joe Laughlin
Phantom Works - Integrated Technology Development Labs
The Boeing Company

___
pygtk mailing list   [EMAIL PROTECTED]
http://www.daa.com.au/mailman/listinfo/pygtk
Read the PyGTK FAQ: http://www.async.com.br/faq/pygtk/

 

the pyGestor project is an example of that!, http://pygestor.gnome.cl
there are examples by cvs!, other questions by private e-mail
regards!
   

Thanks for the link, but I can't read that language unfortunately.
 

it's a disadventage for english spokers..., spanish people is obligated 
to read both
___
pygtk mailing list   [EMAIL PROTECTED]
http://www.daa.com.au/mailman/listinfo/pygtk
Read the PyGTK FAQ: http://www.async.com.br/faq/pygtk/


Re: [pygtk] Pygtk + glade + windows

2004-05-06 Thread Fernando San Martín Woerner
Laughlin, Joseph V wrote:
Has anyone got an application that uses pygtk + glade on Windows?
Should I use cygwin to do this, or something else?
Thanks,
Joe Laughlin
Phantom Works - Integrated Technology Development Labs 
The Boeing Company


___
pygtk mailing list   [EMAIL PROTECTED]
http://www.daa.com.au/mailman/listinfo/pygtk
Read the PyGTK FAQ: http://www.async.com.br/faq/pygtk/
 

the pyGestor project is an example of that!, http://pygestor.gnome.cl
there are examples by cvs!, other questions by private e-mail
regards!
___
pygtk mailing list   [EMAIL PROTECTED]
http://www.daa.com.au/mailman/listinfo/pygtk
Read the PyGTK FAQ: http://www.async.com.br/faq/pygtk/


[pygtk] Fatal Python error: can't initialise module gnome.print

2003-10-12 Thread Fernando San Martín Woerner

i'm trying to use gnomeprint, but a got this error when i do this:

>>> import pygtk
>>> pygtk.require('2.0')
>>> import gnomeprint
Fatal Python error: can't initialise module gnome.print
core...

i'm using mandrake 9.1 with this packages
gnome-python-bonobo-1.99.16-9mdk
gnome-python-gconf-1.99.16-9mdk
gnome-python-gtkhtml2-2.0.0-2mdk
gnome-python-canvas-1.99.16-9mdk
gnome-python-1.99.16-9mdk
gnome-python-gnomeprint-1.99.16-9mdk
pygtk2.0-wrapper-2.0.0-1mdk
pygtk2.0-libglade-2.0.0-1mdk
pygtk2.0-devel-2.0.0-1mdk
pygtk2.0-2.0.0-1mdk
pygtk2.0-glarea-2.0.0-1mdk

any about this?

thanks in advance
-- 
Fernando San Martín Woernercounter.li.org
Jefe Departamento Informática  #216550
Galilea S.A.   Talca
2 Norte 965 - Fono/Fax: 56-71-224876   Chile

"Soy dueño de las palabras que guardo, y prisionero de las que digo."

___
pygtk mailing list   [EMAIL PROTECTED]
http://www.daa.com.au/mailman/listinfo/pygtk
Read the PyGTK FAQ: http://www.async.com.br/faq/pygtk/