[issue436103] Compiling pygtk

2022-04-10 Thread admin
Change by admin : -- github: None -> 34665 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

Re: Replacement for pygtk?

2020-09-07 Thread Pete Forman
Akkana Peck writes: > Grant Edwards writes: >> * PyQt -- I run Gtk-centric Linux systems, and the second you try to >>use one Qt widget, it always seems to pull in hundreds of packages >>that take a week to build. > > I haven't generally found that about PyQt. Most KDE apps do pull in >

Re: Replacement for pygtk?

2020-09-06 Thread Grant Edwards
On 2020-09-06, Michael Torrie wrote: > On 9/4/20 3:24 PM, Grant Edwards wrote: >> I assume that difference is because pygtk was hand-written and gi is >> built auto-magically using SWIG or something like that? > > Essentially, yes. Although pygobject does not use a tool li

Re: Replacement for pygtk?

2020-09-06 Thread Liste guru
Il 06/09/2020 06:20, Michael Torrie ha scritto: On 9/4/20 3:24 PM, Grant Edwards wrote: I assume that difference is because pygtk was hand-written and gi is built auto-magically using SWIG or something like that? Essentially, yes. Although pygobject does not use a tool like swig to generate

Re: Replacement for pygtk?

2020-09-05 Thread Michael Torrie
On 9/4/20 3:24 PM, Grant Edwards wrote: > I assume that difference is because pygtk was hand-written and gi is > built auto-magically using SWIG or something like that? Essentially, yes. Although pygobject does not use a tool like swig to generate static wrappers. Rather it uses t

Re: Replacement for pygtk?

2020-09-05 Thread Akkana Peck
Grant Edwards writes: > Is pygobject the replacement for pygtk? The easiest way to use it, if you want a quick port with the fewest code changes, is: from gi import pygtkcompat pygtkcompat.enable() pygtkcompat.enable_gtk(version='3.0') I don't know if pygtkcompat is going to be suppor

Re: Replacement for pygtk?

2020-09-05 Thread Chris Green
the resulting Python API is not > > always as pythonic as pygtk code was. > > I noticed that right away. In pygtk, most methods (e.g. .pack_start) > had named arguments with well chosen defaults. The vast majority of > the time, I only supplied one argument for the pack_start() call

Re: Replacement for pygtk?

2020-09-04 Thread Grant Edwards
On 2020-09-03, Michael Torrie wrote: > On 9/3/20 1:17 PM, Grant Edwards wrote: >> On 2020-09-03, Grant Edwards wrote: >>> [...] >>> >>> Is pygobject the replacement for pygtk? >> >> It seems to be. I've started porting my pygtk app, and it's go

Re: Replacement for pygtk?

2020-09-04 Thread Grant Edwards
On 2020-09-04, Chris Green wrote: > Grant Edwards wrote: >> On 2020-09-03, Grant Edwards wrote: >> > [...] >> > >> > Is pygobject the replacement for pygtk? >> >> It seems to be. I've started porting my pygtk app, and it's going >> pr

Re: Replacement for pygtk?

2020-09-04 Thread Chris Green
Grant Edwards wrote: > On 2020-09-03, Grant Edwards wrote: > > [...] > > > > Is pygobject the replacement for pygtk? > > It seems to be. I've started porting my pygtk app, and it's going > pretty smoothly. I've already got my two custom widgets working. >

Re: Replacement for pygtk?

2020-09-03 Thread Michael Torrie
On 9/3/20 1:17 PM, Grant Edwards wrote: > On 2020-09-03, Grant Edwards wrote: >> [...] >> >> Is pygobject the replacement for pygtk? > > It seems to be. I've started porting my pygtk app, and it's going > pretty smoothly. I've already got my two custom widgets wor

Re: Replacement for pygtk?

2020-09-03 Thread Grant Edwards
On 2020-09-03, Grant Edwards wrote: > [...] > > Is pygobject the replacement for pygtk? It seems to be. I've started porting my pygtk app, and it's going pretty smoothly. I've already got my two custom widgets working. Oddly, the main module provided by the gobject package is c

Replacement for pygtk?

2020-09-03 Thread Grant Edwards
Many years ago I wrote an app that uses pygtk for it's GUI. I still use the app occasionally, and would like to keep it alive. Emerge informs me that dev-python/pygtk is scheduled for removal. Is pygobject the replacement for pygtk? -- Grant -- https://mail.python.org/mailman/listinfo

[issue5978] cProfile and profile don't work with pygtk/pyqt and sys.exit(0)

2018-07-28 Thread Steve Dower
Change by Steve Dower : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue5978] cProfile and profile don't work with pygtk/pyqt and sys.exit(0)

2018-07-28 Thread Steve Dower
Steve Dower added the comment: New changeset 0041d721a6f6b312ef762838d390fc4d64cf5e3a by Steve Dower (Andrés Delfino) in branch '3.6': [3.6] bpo-5978: Document that profiling needs cmd/function to return (GH-8515)

[issue5978] cProfile and profile don't work with pygtk/pyqt and sys.exit(0)

2018-07-28 Thread miss-islington
miss-islington added the comment: New changeset c6801b48a1964d87a77f1303e0c6ddf31f54259b by Miss Islington (bot) in branch '3.7': bpo-5978: Document that profiling needs cmd/function to return (GH-7938) https://github.com/python/cpython/commit/c6801b48a1964d87a77f1303e0c6ddf31f54259b

[issue5978] cProfile and profile don't work with pygtk/pyqt and sys.exit(0)

2018-07-28 Thread Andrés Delfino
Change by Andrés Delfino : -- pull_requests: +8032 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue5978] cProfile and profile don't work with pygtk/pyqt and sys.exit(0)

2018-07-28 Thread miss-islington
Change by miss-islington : -- pull_requests: +8029 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue5978] cProfile and profile don't work with pygtk/pyqt and sys.exit(0)

2018-07-28 Thread Christian Heimes
Christian Heimes added the comment: New changeset 937fb55d35373fd2701078251840b6be0465a6e1 by Christian Heimes (Andrés Delfino) in branch 'master': bpo-5978: Document that profiling needs cmd/function to return (GH-7938)

[issue5978] cProfile and profile don't work with pygtk/pyqt and sys.exit(0)

2018-06-26 Thread Andrés Delfino
Change by Andrés Delfino : -- nosy: +adelfino versions: +Python 2.7, Python 3.6, Python 3.7 ___ Python tracker ___ ___

[issue5978] cProfile and profile don't work with pygtk/pyqt and sys.exit(0)

2018-06-26 Thread Andrés Delfino
Change by Andrés Delfino : -- keywords: +patch pull_requests: +7548 stage: needs patch -> patch review ___ Python tracker ___ ___

[issue5978] cProfile and profile don't work with pygtk/pyqt and sys.exit(0)

2018-02-11 Thread Cheryl Sabella
Change by Cheryl Sabella : -- keywords: +easy stage: -> needs patch type: behavior -> enhancement versions: +Python 3.8 -Python 2.7, Python 3.1, Python 3.2 ___ Python tracker

Python 3 pyGtk graphical curve and surface fitter

2016-07-23 Thread zunzun . com
I created a Python 3 pyGtk graphical curve and surface fitting application, the URL in GitHub is: https://github.com/zunzun/pyGtkFit James Phillips -- https://mail.python.org/mailman/listinfo/python-announce-list Support the Python Software Foundation: http://www.python.org

Re: pygtk button right/middle click

2016-03-30 Thread Wildman via Python-list
FWIW, I've decided to give up on this. Since it took only a few lines > of code to handle the "left" click, I assumed that like some other > toolkits, it would be similarly easy to handle "right" and "middle". > > I don't have the time to re-invent the whee

Re: pygtk button right/middle click

2016-03-30 Thread Grant Edwards
On 2016-03-30, Grant Edwards wrote: > On 2016-03-30, Wildman wrote: > >>> Is the gtk button widget really incapable of handling left or middle >>> mouse buttons or shift/ctrl/alt modifiers? >> >> This might help... >> >>

Re: pygtk button right/middle click

2016-03-30 Thread Grant Edwards
On 2016-03-30, Wildman wrote: >> Is the gtk button widget really incapable of handling left or middle >> mouse buttons or shift/ctrl/alt modifiers? > > This might help... > > http://faq.pygtk.org/index.py?req=show=faq05.004.htp Yep, I found that. I'm just missing the clues

Re: pygtk button right/middle click

2016-03-30 Thread Wildman via Python-list
On Wed, 30 Mar 2016 15:36:12 +, Grant Edwards wrote: > I'm trying to figure out how to get a pygtk button respond to > somehting other than just a simple "left click". With a standard > 3-button mouse, X11 provides at least 9 different "click" types, but

Re: pygtk button right/middle click

2016-03-30 Thread Grant Edwards
On 2016-03-30, Chris Angelico <ros...@gmail.com> wrote: > On Thu, Mar 31, 2016 at 2:36 AM, Grant Edwards <invalid@invalid.invalid> > wrote: >> I'm trying to figure out how to get a pygtk button respond to >> somehting other than just a simple "left click".

Re: pygtk button right/middle click

2016-03-30 Thread Chris Angelico
On Thu, Mar 31, 2016 at 2:36 AM, Grant Edwards <invalid@invalid.invalid> wrote: > I'm trying to figure out how to get a pygtk button respond to > somehting other than just a simple "left click". With a standard > 3-button mouse, X11 provides at least 9 different "

pygtk button right/middle click

2016-03-30 Thread Grant Edwards
I'm trying to figure out how to get a pygtk button respond to somehting other than just a simple "left click". With a standard 3-button mouse, X11 provides at least 9 different "click" types, but the pygtk button only seems to support one of them. [Yes, I know there ar

Re: pygtk beginner script not working

2015-11-15 Thread kent nyberg
python > > # example base.py > > import pygtk It makes most sense to use gtk3 and not gtk2. The most recenst version of gtk3 is used with gi package. Read this for example: http://python-gtk-3-tutorial.readthedocs.org/en/latest/introduction.html -- https://mail.python.org/mailman/listinfo/python-list

pygtk beginner script not working

2015-11-14 Thread james
Hi guys I'm new to Python so please bare with me :) I'm using python 2.7.10 as advised (more tools apparently over 3.x) Trying to use this script [CODE] #!/usr/bin/env python # example base.py import pygtk pygtk.require('2.0') import gtk class Base: def __init__(self): self.window

[issue5978] cProfile and profile don't work with pygtk/pyqt and sys.exit(0)

2014-02-03 Thread Mark Lawrence
Changes by Mark Lawrence breamore...@yahoo.co.uk: -- nosy: -BreamoreBoy ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5978 ___ ___

pyGTK Help Needed Please

2013-09-20 Thread bingefeller
', '/Library/Python/2.7/site-packages'] Exception: No module named pygtk If I run Python and type import pygtk I get this message: Traceback (most recent call last): File stdin, line 1, in module ImportError: No module named pygtk can anyone help me please? -- https://mail.python.org/mailman/listinfo

Re: pyGTK Help Needed Please

2013-09-20 Thread Michael Torrie
/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/PyObjC', '/Library/Python/2.7/site-packages'] Exception: No module named pygtk If I run Python and type import pygtk I get this message: Traceback (most recent call last): File stdin, line 1, in module ImportError

How to change scrollbar color in pygtk ?

2013-08-21 Thread Norah Jones
Hi, I Tried the below code, the color is not reflected, Am i missing something? #add description box beside test cases testCaseDescWindow = gtk.ScrolledWindow() testCaseDescWindow.set_policy(gtk.POLICY_AUTOMATIC, gtk.POLICY_AUTOMATIC)

Pygtk entry readline

2013-02-02 Thread Matthias Fulz
Hi, does anybody know howto connect / use a gtk entry as frontend for readline in- / output? I couldn't find anything on the net for my problem. Basicly I've a working readline autocomplete, which I can use without problems via input function, but I want to use that in an gtk gui inside an

Re: how to compile pygtk in python2.7?

2012-07-08 Thread contro opinion
it's so strange when i input hisroty 506 cd /home/tiger/pygtk-2.24.0 507 PYTHON=/usr/local/bin/python2.7 ./configure --prefix=/usr 508 echo $? #i get 0 ,it means success?? 509 make 510 echo $? #i get 0 ,it means success?? 511 make install 512 echo

Re: how to compile pygtk in python2.7?

2012-07-08 Thread Chris Angelico
On Sun, Jul 8, 2012 at 6:26 PM, contro opinion contropin...@gmail.com wrote: it's so strange when i input hisroty 506 cd /home/tiger/pygtk-2.24.0 507 PYTHON=/usr/local/bin/python2.7 ./configure --prefix=/usr 508 echo $? #i get 0 ,it means success?? 509 make 510

Re: how to compile pygtk in python2.7?

2012-07-08 Thread contro opinion
/python2.7/site-packages checking for headers required to compile python extensions... found checking for PySignal_SetWakeupFd in Python.h... yes checking for python module thread... yes checking whether to enable threading in pygtk... yes checking for pkg-config... /usr/bin/pkg

Re: how to compile pygtk in python2.7?

2012-07-08 Thread contro opinion
2.make the output is : Could not write method GdkFont.text_width_wc: No ArgType for const-GdkWChar* Could not write method GdkFont.char_width_wc: No ArgType for GdkWChar Could not write method GdkFont.text_extents_wc: No ArgType for const-GdkWChar* Could not write method

how to compile pygtk in python2.7?

2012-07-07 Thread contro opinion
1.download pygtk 2.cd /home/tiger/pygtk-2.24.0 3.PYTHON=/usr/bin/python2.7 ./configure --prefix=/usr 4. make 5. make install *tiger@ocean:~$ python2.7 Python 2.7.3 (default, Jul 1 2012, 14:13:18) [GCC 4.4.5] on linux2 Type help, copyright, credits or license for more information. import gtk

Re: how to compile pygtk in python2.7?

2012-07-07 Thread Benjamin Kaplan
On Sat, Jul 7, 2012 at 9:47 PM, contro opinion contropin...@gmail.com wrote: 1.download pygtk 2.cd /home/tiger/pygtk-2.24.0 3.PYTHON=/usr/bin/python2.7 ./configure --prefix=/usr 4. make 5. make install tiger@ocean:~$ python2.7 Python 2.7.3 (default, Jul 1 2012, 14:13:18) [GCC 4.4.5

Re: how to compile pygtk in python2.7?

2012-07-07 Thread Chris Angelico
On Sun, Jul 8, 2012 at 2:47 PM, contro opinion contropin...@gmail.com wrote: 3.PYTHON=/usr/bin/python2.7 ./configure --prefix=/usr 4. make 5. make install What happened when you typed these commands? Were there failure messages? As Benjamine suggested, do you need to become root to install?

Getting started with PyGTK [Receiving Error]

2012-04-28 Thread Santosh Kumar
System Information Ubuntu 11.10 Python 2.7.2 Problem I think my Ubuntu has PyGTK and GTK both already installed. But however when I am importing gtk in Python interactive mode then I am getting the following warning: (.:4126): Gtk-WARNING **: Unable

Re: Getting started with PyGTK [Receiving Error]

2012-04-28 Thread Vincent Vande Vyvre
Le 29/04/12 00:52, Santosh Kumar a écrit : System Information Ubuntu 11.10 Python 2.7.2 Problem I think my Ubuntu has PyGTK and GTK both already installed. But however when I am importing gtk in Python interactive mode then I am getting

How do I use PyGTK to put text besides clickable buttons?

2012-04-02 Thread Jason Hsu, Mr. Swift Linux
I've decided to use PyGTK instead of gtkdialog for providing configuration menus/dialog boxes in Swift Linux, the Linux distro I started. The problem with gtkdialog is that the i386 version is no longer available in the Debian repository. Since a picture is worth a thousand words, I'll give you

Re: How do I use PyGTK to put text besides clickable buttons?

2012-04-02 Thread Dan Stromberg
You could use an hbox. Or rather, a vbox with a bunch of hbox's in it. On Thu, Mar 29, 2012 at 10:45 PM, Jason Hsu, Mr. Swift Linux jhsu802...@gmail.com wrote: I've decided to use PyGTK instead of gtkdialog for providing configuration menus/dialog boxes in Swift Linux, the Linux distro I

ANNOUNCE: PyGTK All-in-one Installer 2.24.2

2012-02-09 Thread Dieter Verfaillie
We are pleased to announce release 2.24.2 of the PyGTK All-in-one installer for Windows. More information can be found in the README file at: http://download.gnome.org/binaries/win32/pygtk/2.24/pygtk-all-in-one.README * What is it? = The PyGTK All-in-one installer provides

Extending PyGTK widgets with Glade

2012-01-20 Thread Richard Carlson
I'm working on a program using PyGTK and Glade. I create a glade XML file using Glade Designer and then load widgets like this: class MyDialog: def __init__(self): self.dialog = gtk.glade.XML(self.GLADEFILE).get_widget (dialog.xml) I think it would be better if I extended the Dialog

Re: Extending PyGTK widgets with Glade

2012-01-20 Thread Adam Tauno Williams
Quoting Richard Carlson rcarlson...@gmail.com: I'm working on a program using PyGTK and Glade. I create a glade XML file using Glade Designer and then load widgets like this: class MyDialog: def __init__(self): self.dialog = gtk.glade.XML(self.GLADEFILE).get_widget (dialog.xml) I

pygtk

2011-08-02 Thread 守株待兔
please see my attachment ,which widget the region1,region2 is? how to make it?? re2 Description: Binary data -- http://mail.python.org/mailman/listinfo/python-list

Re: pyGTK identify a button

2011-05-26 Thread Alister Ware
could use widget.get_name() to return the id of the widget. this no-longer works since 2.1.7 the pygtk forum suggests this is because widget id's are not necessarily unique caused problems elsewhere, to be honest most of the explanation went above my head. I did find a work around

pyGTK identify a button

2011-05-25 Thread Tracubik
Hi all, i'm trying to write a simple windows with two button in GTK, i need a way to identify wich button is pressed. Consider that: the two button are connected (when clicked) to infoButton(self, widget, data=None) infoButton() is something like this infoButton(self, widget, data=None):

Re: pyGTK identify a button

2011-05-25 Thread Claudiu Nicolaie CISMARU
the two button are connected (when clicked) to infoButton(self, widget, data=None) From documentation: handler_id = object.connect(name, func, func_data) So: button1.connect(when is pressed, your_function, 1) button2.connect(when is pressed, your_function, 2) (This code is conception, I

Re: pyGTK identify a button

2011-05-25 Thread Tracubik
On 25/05/2011 10:44, Claudiu Nicolaie CISMARU wrote: the two button are connected (when clicked) to infoButton(self, widget, data=None) From documentation: handler_id = object.connect(name, func, func_data) So: button1.connect(when is pressed, your_function, 1) button2.connect(when is

Re: pyGTK identify a button

2011-05-25 Thread Chris Angelico
On Wed, May 25, 2011 at 6:18 PM, Tracubik affdfsdfds...@b.com wrote: Hi all, i'm trying to write a simple windows with two button in GTK, i need a way to identify wich button is pressed. Consider that: the two button are connected (when clicked) to infoButton(self, widget, data=None) I'm

Re: pyGTK identify a button

2011-05-25 Thread Claudiu Nicolaie CISMARU
thanks but, as i've sayed before, i can't use func_data 'cause i don't know how to set it on glade3.8, that is the program i use to create the GUI. Anyway, i think this is the only way to identify the button :-/ Hack into the generated source! -- Claudiu Nicolaie CISMARU GNU GPG

Re: pyGTK identify a button

2011-05-25 Thread Cousin Stanley
Tracubik wrote: Hi all, i'm trying to write a simple windows with two button in GTK, i need a way to identify wich button is pressed. #!/usr/bin/env python import gtk def console_display( button , args ) : a0 , a1 , a2 = args print '%s %s %s ' % ( a0 , a1 , a2 )

Re: PyGTK, Glade/libglade. What am I doing wrong?

2011-05-07 Thread Alister Ware
On Sat, 07 May 2011 15:14:07 +1100, Даниил Рыжков wrote: Thanks, Cristian! It works. List of Pygtk: http://www.daa.com.au/mailman/listinfo/pygtk Thanks again. Subscribed :) 2011/5/7 craf pyclut...@gmail.com: Hi. Try this: #!/usr/bin/env python import gtk.glade class TestPyGtk

PyGTK notebook: get current page

2011-05-07 Thread Tracubik
Hi all! I've made a simple PyGTK program. It's a window with a notebook, the notebook have 2 pages When changing page, i'ld like to get the id of current page. I've coded it, but i can get only the previously open page, not the current one. This is not a big deal if i have only 2 pages

Re: PyGTK notebook: get current page

2011-05-07 Thread Alexander Kapps
On 07.05.2011 17:04, Tracubik wrote: Hi all! I've made a simple PyGTK program. It's a window with a notebook, the notebook have 2 pages When changing page, i'ld like to get the id of current page. I've coded it, but i can get only the previously open page, not the current one. This is not a big

PyGTK, Glade/libglade. What am I doing wrong?

2011-05-06 Thread Даниил Рыжков
Sorry for my English (I could not find help in the Russian community) I'm trying to learn PyGTK and Glade. I made test window in Glade and saved it as test.glade (attached). Then I wrote script test.py(attached, http://pastebin.com/waKytam3). I tried to run it. While the script was executed

Re: PyGTK, Glade/libglade. What am I doing wrong?

2011-05-06 Thread Benjamin Kaplan
On May 6, 2011 7:05 PM, Даниил Рыжков daniil...@gmail.com wrote: Sorry for my English (I could not find help in the Russian community) I'm trying to learn PyGTK and Glade. I made test window in Glade and saved it as test.glade (attached). Then I wrote script test.py(attached, http

Re: PyGTK, Glade/libglade. What am I doing wrong?

2011-05-06 Thread Даниил Рыжков
-using-pygtk-and-glade/) wrote script similar to my. P.S. I have glade3 3.8.0, gtk 2.24.4, GNOME 2.32.1 and Python 2.7.1 -- Best wishes, Daniil -- http://mail.python.org/mailman/listinfo/python-list

Re: PyGTK, Glade/libglade. What am I doing wrong?

2011-05-06 Thread craf
On May 6, 2011 7:05 PM, Даниил Рыжков daniil...@gmail.com wrote: Sorry for my English (I could not find help in the Russian community) I'm trying to learn PyGTK and Glade. I made test window in Glade and saved it as test.glade (attached). Then I wrote script test.py(attached, http

Re: PyGTK, Glade/libglade. What am I doing wrong?

2011-05-06 Thread Даниил Рыжков
Thanks, Cristian! It works. List of Pygtk: http://www.daa.com.au/mailman/listinfo/pygtk Thanks again. Subscribed :) 2011/5/7 craf pyclut...@gmail.com: Hi. Try this: #!/usr/bin/env python import gtk.glade class TestPyGtk:    This is an Hello World GTK application    def __init__(self

ANNOUNCE: PyGTK All-in-one Installer 2.24.0

2011-04-12 Thread Dieter Verfaillie
We are pleased to announce release 2.24.0 of the PyGTK All-in-one installer for Windows. More information can be found in the README file at: http://download.gnome.org/binaries/win32/pygtk/2.24/pygtk-all-in-one.README * What is it? = The PyGTK All-in-one installer provides

Help with pygtk About Dialog

2011-04-12 Thread pradeepbpin
How can I use a png/jpeg/gif image file to set the logo in gtk.AboutDiaog box of pyGTK ? -- http://mail.python.org/mailman/listinfo/python-list

Another location of the PyGTK tutorial

2011-04-03 Thread craf
Hi. Anyone know if the pygtk tutorial that was in this direction http://www.learnpygtk.org/pygtktutorial/index.html, can be located elsewhere. Regards. Cristian -- http://mail.python.org/mailman/listinfo/python-list

Another location of the PyGTK tutorial

2011-04-03 Thread craf
Hi. Anyone know if the pygtk tutorial that was in this direction http://www.learnpygtk.org/pygtktutorial/index.html, can be located elsewhere. Regards. Cristian -- http://mail.python.org/mailman/listinfo/python-list

Re: Another location of the PyGTK tutorial

2011-04-03 Thread Dotan Cohen
http://gitorious.org/pygtk-tutorial On Sat, Apr 2, 2011 at 19:53, craf p...@vtr.net wrote: Hi. Anyone know if the pygtk tutorial that was in this direction http://www.learnpygtk.org/pygtktutorial/index.html,  can be located elsewhere. Regards. Cristian -- http://mail.python.org

Re: Another location of the PyGTK tutorial

2011-04-03 Thread Dotan Cohen
http://gitorious.org/pygtk-tutorial On Fri, Apr 1, 2011 at 21:03, craf p...@vtr.net wrote: Hi. Anyone know if the pygtk tutorial that was in this direction http://www.learnpygtk.org/pygtktutorial/index.html,  can be located elsewhere. Regards. Cristian -- http://mail.python.org

[Fwd: Re: Another location of the PyGTK tutorial]

2011-04-03 Thread craf
¡Thank you very much Dotan! Regards. Cristian - Mensaje reenviado De: Dotan Cohen dotanco...@gmail.com Para: craf p...@vtr.net Cc: Python Ingles python-list@python.org Asunto: Re: Another location of the PyGTK tutorial Fecha: Sun, 3 Apr 2011 13:40:35 +0300 http

ANNOUNCE: PyGTK All-in-one Installer 2.22.6

2011-01-19 Thread Dieter Verfaillie
We are pleased to announce release 2.22.6 of the PyGTK All-in-one installer for Windows. More information can be found in the README file at: https://github.com/dieterv/pygtk-installer#readme * What is it? = The PyGTK All-in-one installer provides an alternative installation method

ANNOUNCE: PyGTK All-in-one Installer 2.22.5

2010-12-24 Thread Dieter Verfaillie
We are pleased to announce release 2.22.5 of the PyGTK All-in-one installer for Windows. More information can be found in the README file at: https://github.com/dieterv/pygtk-installer#readme * What is it? = The PyGTK All-in-one installer provides an alternative installation method

seeking pygtk bindings for gtkdatabox

2010-12-21 Thread GrayShark
Hello, a search for the python bindings for gtkdatabox lead no where. Anyone know of who is maintaining/working/siting such a package? Thanks in advance. Steven -- http://mail.python.org/mailman/listinfo/python-list

[issue5978] cProfile and profile don't work with pygtk/pyqt and sys.exit(0)

2010-10-21 Thread Georg Brandl
Changes by Georg Brandl ge...@python.org: -- assignee: - d...@python components: +Documentation -Demos and Tools nosy: +d...@python ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue5978 ___

will Gnome 3.0 kill pygtk?

2010-09-30 Thread Tracubik
Hi! It seem that the new version of gnome 3.0 will dismiss pygtk support. link: [1] http://live.gnome.org/TwoPointNinetyone/ (search killing pygtk) [2] http://live.gnome.org/GnomeGoals/PythonIntrospectionPorting i'm studying pygtk right now, am i wasting my time considering that my

Re: will Gnome 3.0 kill pygtk?

2010-09-30 Thread Neil Hodgson
Tracubik: i'm studying pygtk right now, am i wasting my time considering that my preferred platform is linux/gnome? I expect the dynamic binding will be very similar to the current static binding but easier to keep up-to-date. There's already some use of dynamic binding in the recent PyGTK

Re: will Gnome 3.0 kill pygtk?

2010-09-30 Thread Diez B. Roggisch
Tracubik affdfsdfds...@b.com writes: Hi! It seem that the new version of gnome 3.0 will dismiss pygtk support. link: [1] http://live.gnome.org/TwoPointNinetyone/ (search killing pygtk) [2] http://live.gnome.org/GnomeGoals/PythonIntrospectionPorting i'm studying pygtk right now, am i

How can I bundle a PyGTK program in windows so my users don't need to install Python or the GTK+ libs?

2010-08-16 Thread Waspinator
installed python 2.6 with pygtk and a gtk bundle. Can someone please provide some simple and clear instructions on how I can do this? Thanks, Waspinator simple.py --- import gtk window = gtk.Window() window.set_title(PyGTK Test

Running pygtk app under windows.

2010-08-16 Thread Sebastian Alonso
Hey everyone, I'm trying to be able to run my app, which uses pygtk, under windows, but unfortunately I'm having big problems with it. The main purpose of this is to later on make an .exe file but i havent even been able to run the app at least. I've followed every single step from

[issue5978] cProfile and profile don't work with pygtk/pyqt and sys.exit(0)

2010-07-22 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc amaur...@gmail.com added the comment: Profiling only works on functions that actually return; maybe we could add something about this fact in the documentation -- nosy: +amaury.forgeotdarc ___ Python tracker

[issue5978] cProfile and profile don't work with pygtk/pyqt and sys.exit(0)

2010-07-10 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: I'm note sure if this is a library bug, doc bug, external library issue or what, anyone got any true idea? -- nosy: +BreamoreBoy versions: +Python 2.7, Python 3.1, Python 3.2 -Python 2.5 ___

ANN: PyUseCase 3.2.1 - GUI testing for PyGTK and Tkinter

2010-03-05 Thread Geoff Bache
Hi all, I've made a couple of bugfixes to the 3.2 release from last week. Regards, Geoff Bache A bit more detail: PyUseCase is an unconventional GUI testing tool for PyGTK and Tkinter, along with a framework for testing Python GUIs in general. Instead of recording GUI mechanics directly

ANN: PyUseCase 3.2 - GUI testing for Python (PyGTK and now Tkinter)

2010-02-26 Thread Geoff Bache
Hi all, A new release of PyUseCase is out. There have been some minor improvements to PyGTK support but the main effort has been getting Tkinter support off the ground. At this point Tkinter support is fairly basic and doesn't come close to covering the widget set, but it's working on a couple

Re: [ANNOUNCE] PyGTK 2.17.0 - unstable

2009-12-28 Thread Philippe Bouige
Dans comp.lang.python.announce, vous avez écrit : A new unstable development release of the Python bindings for GTK+ has been released. The new release is available from ftp.gnome.org and its mirrors as soon as its synced correctly: http://ftp.gnome.org/pub/GNOME/sources/pygtk/2.17

[ANNOUNCE] PyGTK 2.17.0 - unstable

2009-12-27 Thread Gian Mario Tagliaretti
A new unstable development release of the Python bindings for GTK+ has been released. The new release is available from ftp.gnome.org and its mirrors as soon as its synced correctly: http://ftp.gnome.org/pub/GNOME/sources/pygtk/2.17/ Blurb: GTK+ is a toolkit for developing graphical

Re: [pygtk] cannot import glib in python shell

2009-12-23 Thread John Stowers
I think ideally what I'm requesting is to have the mingw/python/gtk environments to be harmonized. I'm close. I can do the following: python import sys import gtk blah = gtk.Window(0) blah.show() , but when I do import glib ERROR!!! if I cd to a certain dir in glib sources, there

pygtk - icons?

2009-11-18 Thread Helmut Jarausch
Hi, please bear in mind that I'm an absolute newcomer to (py)gtk. I'm trying to install the nice synchronization tool http://live.gnome.org/Conduit which is written in Python and use pyGTK. This installed several icons e.g. /usr/share/icons/hicolor/16x16/apps/conduit.png When run, Conduit

Re: problems on installing PyGTK in Windows XP

2009-10-29 Thread News123
-Properties-Advanced-Environment_Variables-System_Variables-Path Test it: Open a new cmd window and type gtk-demo A window should pop up. if not your installation failed Now install PyCairo, PyGObject and PyGTK (please select the binary corresponding to your python version) The links

problems on installing PyGTK in Windows XP

2009-10-21 Thread Yang
Python 2.6.3 is installed on my Windows XP throught the binary file provided by Python.org. Then I followed the steps described here: http://faq.pygtk.org/index.py?req=showfile=faq21.001.htp to install PyGTK. However, I still get the following error: import pygtk pygtk.require('2.0') import

Re: PyGTK problems after Linux update...

2009-09-01 Thread barcaroller
barcaroller barcarol...@music.net wrote in message news:h7ev9g$dc...@news.eternal-september.org... Okay, I won't disagree, but how do I fix this? Never mind. The latest update today included a new pygtk which seems to have fixed the problem. All is good now. -- http://mail.python.org

Re: PyGTK problems after Linux update...

2009-08-30 Thread barcaroller
Thomas Guettler h...@tbz-pariv.de wrote in message news:7fq56df2m6ql...@mid.individual.net... Looks like your pygtk package does not fit to the installed python package. Okay, I won't disagree, but I how do if fix this? -- http://mail.python.org/mailman/listinfo/python-list

Re: PyGTK problems after Linux update...

2009-08-30 Thread barcaroller
Thomas Guettler h...@tbz-pariv.de wrote in message news:7fq56df2m6ql...@mid.individual.net... Looks like your pygtk package does not fit to the installed python package. Okay, I won't disagree, but how do I fix this? -- http://mail.python.org/mailman/listinfo/python-list

Re: PyGTK problems after Linux update...

2009-08-28 Thread Thomas Guettler
Looks like your pygtk package does not fit to the installed python package. from glib._glib import * ImportError: /usr/lib/python2.6/site-packages/gtk-2.0/glib/_glib.so: undefined symbol: PyUnicodeUCS4_DecodeUTF8 -- Thomas Guettler, http://www.thomas-guettler.de/ E-Mail

Re: pygtk - What is the best way to change the mouse pointer

2009-08-27 Thread Ido Levy
From: MRAB pyt...@mrabarnett.plus.com To: python-list@python.org Date: 26/08/2009 11:04 PM Subject: Re: pygtk - What is the best way to change the mouse pointer Ido Levy wrote: Hello All, I am writing a dialog which one of its widget is a gtk.ComboBoxEntry

PyGTK problems after Linux update...

2009-08-27 Thread barcaroller
I use a python-based program called 'meld' which worked fine until my latest Fedora11/KDE4.3 update; it now gives me the following error: prompt meld /usr/lib/python2.6/site-packages/gtk-2.0/glib/_glib.so: undefined symbol: PyUnicodeUCS4_DecodeUTF8 Meld requires pygtk 2.8.0

pygtk - What is the best way to change the mouse pointer

2009-08-26 Thread Ido Levy
Hello All, I am writing a dialog which one of its widget is a gtk.ComboBoxEntry ( let's assume widget in the example below is its instance ) When the user select one of the values from the gtk.ComboBoxEntry I need to run some calculations that takes a few seconds. In order to reflect

  1   2   3   4   5   >