[PyQt] PyQt and QPA / Lighthouse

2012-07-06 Thread Kevin Hu
To whom it may concern: The PyQt v4.9.2 release states that PyQt has support for Qt v4.8.2 and initial support for Qt v5. However, when searching the PyQt reference guide and class reference I do not see anything related to QPA. Does PyQt4 support Qt with QPA? Sincerely, Kevin

[PyQt] Possible Issue with PyQt on Amazon EC2 Instance

2012-07-05 Thread Kevin Hu
Would you say this is an issue with PyQt? How would you recommend I proceed? Sincerely, Kevin ___ PyQt mailing listPyQt@riverbankcomputing.com http://www.riverbankcomputing.com/mailman/listinfo/pyqt

[PyQt] SIP: missing PyType_Ready

2009-05-26 Thread Kevin Watters
I was using an extension that traverses the GC heap, and it crashed when it got to the sipVariableDescr_Type object, because it never gets initialized via PyType_Ready. The fix is easy; just an extra PyType_Ready for sipVariableDescr_Type in the PyMODINIT_FUNC in siplib.c Thanks! - Kevin

[PyQt] SIP suggestion: warnings for /Transfer/ with /Supertype=sip.simplewrapper/

2009-03-25 Thread Kevin Watters
, and they were a (minor) pain to hunt down. Just a suggestion! - Kevin ___ PyQt mailing listPyQt@riverbankcomputing.com http://www.riverbankcomputing.com/mailman/listinfo/pyqt

[PyQt] Re: More recent g++ slows build time immensely

2008-10-20 Thread Kevin Watters
mtimes accordingly; you can check it out here for an idea: http://github.com/kevinw/wxpy/tree/master/wxpybuild/wxpyext.py#L309 - Kevin > sources to see how one uses it in a more complex case than the minimal one in > the docs. Can anyone point me toward a simpler example of how to do things

Re: [PyQt] Compiling PyQt on Mac OS X

2008-08-21 Thread Kevin Walzer
ently that makes it only work with a framework build of Qt? I was able to successfully compile and use the following library versions: Qt 4.3.2 SIP 4.7.1 PyQt 4.3.1 And I compiled those using the exact same options and procedure I was using when I ran into problems with PyQt 4.4.3 I'm usin

Re: [PyQt] Compiling PyQt on Mac OS X

2008-08-20 Thread Kevin Walzer
t I'm using now. --Kevin -- Kevin Walzer Code by Kevin http://www.codebykevin.com ___ PyQt mailing listPyQt@riverbankcomputing.com http://www.riverbankcomputing.com/mailman/listinfo/pyqt

Re: [PyQt] Compiling PyQt on Mac OS X

2008-08-20 Thread Kevin Walzer
to link it against the binary intaller from Trolltech. It saves you the trouble of building Qt, and PyQt builds fine (after you build sip et al. first). -- Kevin Walzer Code by Kevin http://www.codebykevin.com ___ PyQt mailing listPyQt@riverbankcomputin

[PyQt] Re: Auto-generate sip specification file?

2008-08-15 Thread Kevin Watters
> I'm still at Akademy, but I'll try to get this checked into KDE's SVN > some time this weekend along with all of my changes. (Probably in > kdesupport. I'm not sure if I can keep the change history though.) +1 on interest in seeing this! Especially the autodocs-from-doxygen support. _

[PyQt] Re: Debugging memory corruption b/c of invalid GIL usage

2008-08-12 Thread Kevin Watters
't mention this, though. Moving sipWrapper_clear above the td_dealloc fixed one of my crashes. :) - Kevin ___ PyQt mailing listPyQt@riverbankcomputing.com http://www.riverbankcomputing.com/mailman/listinfo/pyqt

[PyQt] Debugging memory corruption b/c of invalid GIL usage

2008-08-11 Thread Kevin Watters
fail fast if the GIL isn't obtained?) Anyone have any experience in/suggestions for tracking down this kind of bug in a Python extension? Thanks, Kevin ___ PyQt mailing listPyQt@riverbankcomputing.com http://www.riverbankcomputing.com/mailman/listinfo/pyqt

Re: [PyQt] Access custom Qt widgets from PyQt via SIP?

2008-08-10 Thread Kevin Walzer
, correct? -- Kevin Walzer Code by Kevin http://www.codebykevin.com ___ PyQt mailing listPyQt@riverbankcomputing.com http://www.riverbankcomputing.com/mailman/listinfo/pyqt

[PyQt] Access custom Qt widgets from PyQt via SIP?

2008-08-10 Thread Kevin Walzer
via SIP or does PyQt provide hooks for this kind of thing? Thank you, Kevin -- Kevin Walzer Code by Kevin http://www.codebykevin.com ___ PyQt mailing listPyQt@riverbankcomputing.com http://www.riverbankcomputing.com/mailman/listinfo/pyqt

[PyQt] Re: Destructor being called on a subthread.

2008-07-31 Thread Kevin Watters
> You could look at the call to PyObject_GC_UnTrack() in > sipWrapper_dealloc(). I don't think it's the same problem, but there may be > similarities. As far as I can tell, PyObject_GC_UnTrack just says that the GC shouldn't call the traverse functions while you're destructing the object--but what

[PyQt] Destructor being called on a subthread.

2008-07-31 Thread Kevin Watters
I've got a sporadic crash in my app (not PyQT) and I think I have it narrowed down. 1) Main thread creates a Flub object. 2) Main thread releases all references to the Flub object, but there's a cycle, so the object isn't collected immediately. 3) Worker thread does some unrelated work, during wh

[PyQt] Re: Building on windows

2008-07-17 Thread Kevin Watters
> '0xc135' > Stop. Google says that could mean nmake can't find cl.exe. Did you make sure to start your command prompt via the "Visual Studio 200x Command Prompt" shortcut? ___ PyQt mailing listPyQt@riverbankcomputing.com http://www.riverbankcom

[PyQt] Re: Virtual methods and an extra reference

2008-07-07 Thread Kevin Watters
's still no Py_DECREF in that case. - Kevin ___ PyQt mailing listPyQt@riverbankcomputing.com http://www.riverbankcomputing.com/mailman/listinfo/pyqt

[PyQt] Re: /NewThread/, and Python stack in Visual Studio

2008-06-23 Thread Kevin Watters
ways work--but it has helped me track down a few of the bad crashes. - Kevin ___ PyQt mailing listPyQt@riverbankcomputing.com http://www.riverbankcomputing.com/mailman/listinfo/pyqt

[PyQt] Re: Virtual methods and an extra reference

2008-06-21 Thread Kevin Watters
> The workaround makes my skin crawl. :| I hope you'll be able to whip up > a fix, Kevin. I tried, but I screwed up attribute access in a way I didn't understand yet. Disabling the method cache altogether proved a workable temporary fix for me--but I won't want to

[PyQt] Re: Virtual methods and an extra reference

2008-06-19 Thread Kevin Watters
Sundance ierne.eu.org> writes: > This class behaves like weakref.ref, only for callables. We use a variant of this idea in our app for observable callbacks: class bound_ref(object): def __init__(self, method, cb = None): self.object = weakref_ref(method.im_self, cb) self.fun

[PyQt] Virtual methods and an extra reference

2008-06-18 Thread Kevin Watters
There's a comment in siplib.c:5300ish in the sip_api_is_py_method function that I'll reproduce here: /* * Note that the callable is never garbage collected. The main * reason for this is that it's not possible to get hold of the * method cache without make incompatible changes to the SIP * AP

[PyQt] Re: /NewThread/, and Python stack in Visual Studio

2008-06-12 Thread Kevin Watters
Phil Thompson riverbankcomputing.com> writes: > > On Thursday 12 June 2008 3:50:00 pm Kevin Watters wrote: > > I noticed /NewThread/ on QThread and QRunnable in the PyQT source-- and > > a peek at the source code shows SIP creating thread local structures for > > pend

[PyQt] /NewThread/, and Python stack in Visual Studio

2008-06-12 Thread Kevin Watters
I noticed /NewThread/ on QThread and QRunnable in the PyQT source-- and a peek at the source code shows SIP creating thread local structures for pending objects. My app creates threads, but only through Python's threading module. Do I need to use /NewThread/, or call something like api_new_thread

[PyQt] operator new/delete and PyMem_New/Del

2008-06-04 Thread Kevin Watters
that passage is talking about. This might, of course, be pointless, without more detailed profiling. But I was wondering if anyone had an experience trying anything like this this in extensions of their own. - Kevin ___ PyQt mailing listPyQt@riverba

[PyQt] %ConvertToSubClassCode across modules

2008-05-30 Thread Kevin Watters
do about this? It'd be nice to avoid some kind of runtime RTTI list that the submodule appends to on startup, but if that's what I have to do, that's alright ;) Just thought I'd check here first for any ideas. - Kevin ___ PyQt mailing listPyQt@riverbankcomputing.com http://www.riverbankcomputing.com/mailman/listinfo/pyqt

[PyQt] SIP out of memory error

2008-05-19 Thread Kevin Watters
Yikes! SIP ran out of memory because of this typo: class MyClass : MyClass { }; (As a side note, Mac OS X deals with out of memory situations much more gracefully than Vista.) I'd imagine there's a fix to be somewhere in the superclass: part of parser.y ;) _

[PyQt] Re: Building with Visual Studio 2008

2008-05-19 Thread Kevin Watters
and the ;2 means "dll.") Might be worth incorporating to make people's lives easier on MSVC2008. - Kevin ___ PyQt mailing listPyQt@riverbankcomputing.com http://www.riverbankcomputing.com/mailman/listinfo/pyqt

RE: [PyQt] Building with Visual Studio 2008

2008-05-17 Thread Kevin Copps
> A manifest is also generated for the sip module but it isn't installed. > Is it > needed? Now that you mention it, probably. I am still learning how manifests and side-by-side assemblies work. This page seems like a good place to start: http://msdn.microsoft.com/en-us/library/ms235342.aspx From

[PyQt] Building with Visual Studio 2008

2008-05-17 Thread Kevin Copps
#x27; *\' processorArchitecture=\'*\'\" /INCREMENTAL:NO /OUT:QtCore.pyd @C:\Users\Kevin\AppData\Local\Temp\nm62CF.tmp LINK : fatal error LNK1104: cannot open file '"/MANIFESTDEPENDENCY:type=\'win32\'.obj' NMAKE : fatal error U1077: '"c:\Program Files\Microsoft

[PyQt] SIP, object destruction, and sip.setdeleted

2008-04-29 Thread Kevin Watters
I've got a couple quick questions about SIP's handling of object destruction. The docs for sip.setdeleted says setdeleted(obj) This marks the C++ instance or C structure as having been destroyed or returned to the heap so that future references to it raise an exception rather than cause a pro

[PyQt] Re: SIP: rich compare with a tuple bug?

2008-04-24 Thread Kevin Watters
Phil Thompson riverbankcomputing.com> writes: > It should be fixed in tonight's snapshot. Thanks! This fixed every single one of my related failing test cases. ___ PyQt mailing listPyQt@riverbankcomputing.com http://www.riverbankcomputing.com/m

[PyQt] SIP: rich compare with a tuple bug?

2008-04-23 Thread Kevin Watters
I think I found a bug with rich comparison operators. I have a simple class like this: class point { public: point(); point(int x, int y); int x; int y; %ConvertToTypeCode /* (convert sequences with 2 ints to points) */ %End bool operator==(const p

[PyQt] Re: SIP - patched methods with lazy lookups

2008-04-22 Thread Kevin Watters
> old_init = MyClass.__init__ def new_init(self, foo, bar=5, meep=13): > old_init(self, foo, bar, meep) MyClass.__init__ = new_init > > assert MyClass.__init__ is new_init # FAIL Oops. That should be old_init = MyClass.__init__ def new_init(self, foo, bar=5, meep=13): old_init(self, foo, bar

[PyQt] SIP - patched methods with lazy lookups

2008-04-22 Thread Kevin Watters
SIP is working great for me so far, enough so that I'm coming to the question of what to do with keyword arguments. I've got a fairly large code base, part of which makes calls to GUI control constructors using keyword arguments. It's actually a fairly limited subset of methods, so my initial thou

[PyQt] Re: SIP properties

2008-04-16 Thread Kevin Watters
ith %SIPOptions (RenameWx) It's working pretty well, except for when Getters return const references--but I will have that squared away soon. - Kevin ___ PyQt mailing listPyQt@riverbankcomputing.com http://www.riverbankcomputing.com/mailman/listinfo/pyqt

[PyQt] SIP properties

2008-04-11 Thread Kevin Watters
I want to make an option for SIP to autogenerate properties (i.e., GetTitle and SetTitle just become Title). I've been reading through transform.c, trying to get a feel for how this might happen, but I think I'm lacking the "big picture" when it comes to how SIP implements methods and attribute lo

[PyQt] Re: SIP newcomer questions/complaints

2008-04-07 Thread Kevin Watters
p; paste, which is automated > by this tool. wxWidgets actually predates STL, although I think they're coming along to using it. I'll keep this in mind if I decide to throw the USE_STL switch. Thanks, - Kevin ___ PyQt mailing listPyQt@riverbankcomputing.com http://www.riverbankcomputing.com/mailman/listinfo/pyqt

[PyQt] SIP newcomer questions/complaints

2008-04-06 Thread Kevin Watters
al advice about what you're going to get out of SIP compared to SWIG might be useful in the documentation. Thanks in advance for any help! - Kevin ___ PyQt mailing listPyQt@riverbankcomputing.com http://www.riverbankcomputing.com/mailman/listinfo/pyqt

Re: [PyQt] Signal on Selection in QTreeView

2008-03-18 Thread Kevin Foss
elected" information, what do I need to do to this to get the QVariant out? Or how does this become by INDEX? Ideas? Kevin On Tuesday 18 March 2008 02:48:48 pm Andreas Pakulat wrote: > On 18.03.08 13:37:46, [EMAIL PROTECTED] wrote: > > I have been successful in getting the row numbe

Re: [PyQt] Signal on Selection in QTreeView

2008-03-18 Thread Kevin Foss
I'm running on Mandriva 2008.0 with Python 2.5 and PyQt 4.3(.4mdv) >From the other person (Marius Kintel) who mentionned it didn't work other, seems like there is a problem somewhere. Kevin On Tuesday 18 March 2008 12:37:25 am Andreas Pakulat wrote: > On 17.03.08 18:57:52,

Re: [PyQt] Signal on Selection in QTreeView

2008-03-17 Thread Kevin Foss
e the details is the most basic function. I could really use a link to a complete example that shows the proper setup of a model, indexing and the selection of an item. I appreciate your efforts. I'd hate to give up on the project at this point. Kevin On Monday 17 March 20

Re: [PyQt] Signal on Selection in QTreeView

2008-03-17 Thread Kevin Foss
idea to get the row number of the currently selected list item and then display that individual list item in the other widget. Sorry if I'm a bit confusing in my description. The way I understand how these capabilities work skew the way I explain them. Kevin On Monday 17 March 2008

Re: [PyQt] Signal on Selection in QTreeView

2008-03-17 Thread Kevin
with columns and can return the row number of the row that is selected? I believe that I can adapt this into my app. Kevin Sent from my iPhone On Mar 17, 2008, at 11:16 AM, Andreas Pakulat <[EMAIL PROTECTED]> wrote: On 17.03.08 10:22:05, [EMAIL PROTECTED] wrote: Hi, I'm tryi

[PyQt] Popen + poll & pid

2008-03-08 Thread Kevin
process is running or ended so that I can move to the next track and start another iteration? Either that or does someone know how to change audio cd tracks in mplayer slave mode? ;) Kevin Sent from my iPhone ___ PyQt mailing li

[PyQt] X Windows Screen goes Blank when new Window opens

2008-02-20 Thread Kevin Foss
Hi, Can any one explain in X Windows why the screen goes blank whenever a new window is opened? It becomes annoying when I open a new application screen and everything disappears for a second. Is it possible to avoid this? Kevin ___ PyQt

Re: [PyQt] Deploying PyQt4 application

2008-01-25 Thread Kevin Walzer
lists. You'll need to update to the svn trunk version of py2app: http://svn.pythonmac.org/py2app/py2app/trunk/ Give that a try. --Kevin -- Kevin Walzer Code by Kevin http://www.codebykevin.com ___ PyQt mailing listPyQt@riverbankcomputing.com

Re: [PyQt] Can't build sip as universal binary on Leopard

2008-01-01 Thread Kevin Walzer
Kevin Walzer wrote: This message on Apple's mailing list sheds some insight: http://lists.apple.com/archives/Xcode-users/2007/Oct/msg00696.html Essentially, the '-mmacosx-version-min=10.4' flag needs to be passed in somewhere. This is necessary because the current OS is now

Re: [PyQt] Can't build sip as universal binary on Leopard

2008-01-01 Thread Kevin Walzer
ure how to patch the toplevel configure.py to obtain the correct argument parsing, however. Running the script with the invocation python configure.py CFLAGS+='-isysroot /Developer/SDKs/MacOSX10.4u.sdk -mmacosx-version-min=10.4' builds a single-platform (i386) binary, not a universal

[PyQt] Can't build sip as universal binary on Leopard

2008-01-01 Thread Kevin Walzer
e else see this error? I built sip and PyQt fine from source on 10.4 several months ago. A search of the list archives turned up nothing useful about the above errors. --Kevin -- Kevin Walzer Code by Kevin http://www.codebykevin.com ___

[PyQt] PyQt snapshot not linking on Mac OSX

2007-03-30 Thread Kevin Cureton
Color) QUrl::idnWhitelist() QUrl::setIdnWhitelist(QStringList const&) QUrl::toAce(QString const&) QUrl::fromAce(QByteArray const&) I also tried this against Qt 4.2.2 with the same results. Is anyone else seeing this on the Mac? --kev -- kevin at bang-splat dot com The tools for

Re: [PyQt] Deploying a PyQt4 application on Windows using py2exe

2007-03-23 Thread Kevin Cureton
me easily locate the Qt code. --kev -- kevin at bang-splat dot com The tools for managing paradox are still undeveloped. --Kevin Kelly On Mar 23, 2007, at 1:56 AM, Curzio Basso wrote: 2007/3/23, Luper Rouch <[EMAIL PROTECTED]>: Tony Cappellini a écrit : > from distutils.core import se

[PyQt] QDateTimeEdit issue

2007-03-08 Thread Kevin Cureton
tried calling the underlying clear() method, but to no avail. Does anyone have an idea about how I can force a QDateTimeEdit to display blank if there is no date for it? Using Qt 4.2.2 and PyQt 4.1.1. --kev -- kevin at bang-splat dot com The tools for managing paradox are still undeveloped. --

[PyKDE] Crashing problems, suggestions?

2007-03-01 Thread Kevin Cureton
rg.python.python 0x002bcba9 PyRun_SimpleFileExFlags + 640 (pythonrun.c:870) 31 org.python.python 0x002ca1e4 Py_Main + 2915 (main.c:496) 32 org.python.python 0x1f8e 0x1000 + 3982 33 org.python.python 0x00001eb5 0x1000 + 3765 -- Kevin Cureton Co-Founder Mind The Ga

Re: [PyKDE] Threading and multiple processors, any change?

2007-03-01 Thread Kevin Cureton
d communication between threads in your application. --kev -- Kevin Cureton Co-Founder Mind The Gap, Inc. [EMAIL PROTECTED] http://www.animationpipeline.com On Mar 1, 2007, at 3:16 AM, Phil Thompson wrote: On Thursday 01 March 2007 10:47 am, V. Armando Sole wrote: Hello, I just have a simple

Re: [PyKDE] Multi-Platform Application Packaging Advice

2007-02-24 Thread Kevin Cureton
py2app and py2exe http://undefined.org/python/#py2app http://www.py2exe.org --kev -- kevin at bang-splat dot com The tools for managing paradox are still undeveloped. --Kevin Kelly On Feb 24, 2007, at 11:30 AM, Richard Taylor wrote: Hi I am working on a GPL'ed PyQt application t

Re: [PyKDE] Threading problem with PyQt4 and Macosx

2007-02-21 Thread Kevin Cureton
python2.4/site-packages/sip.so #40 0x00467802 in sipVH_QtCore_3 () from /swdevl/share/pyqt_4.0.1/lib/python2.4/site-packages/PyQt4/QtCore.so #41 0x0048815c in sipQThread::run () from /swdevl/share/pyqt_4.0.1/lib/python2.4/site-packages/PyQt4/QtCore.so #42 0x006ce80c in QThreadPrivate::start () fr

Re: [PyKDE] camel/under style

2006-10-19 Thread Kevin Cureton
I use lowercase/underscores for everything except class names. Those I use mixed case on (it just felt more proper that way).A nice bonus of coding this way is that I can quickly tell when I am calling my code versus a method in Qt or one of the python libraries.--kev --kevin at bang-splat dot

Re: [PyKDE] python splash screen

2006-08-11 Thread Kevin Cureton
QSplashScreen will be your best friend!--kev --kevin at bang-splat dot comThe tools for managing paradox are still undeveloped. --Kevin Kelly On Aug 11, 2006, at 3:18 PM, dave s wrote:Having sorted the license - I have started on my app :)I would like to have a splash screen, much like 'eric&

[PyKDE] Mac OSX menubar question?

2006-07-25 Thread Kevin Cureton
erspective. I'm using the QMenuBar that I get back from QMainWindow.menuBar()Any ideas, pointers, etc., would be appreciated.Cheers,--kev --kevin at bang-splat dot comThe tools for managing paradox are still undeveloped. --Kevin Kelly _

Re: [PyKDE] PyQt 4.0.1 - howto ?

2006-07-17 Thread Kevin Cureton
-framework    make    sudo make frameworkinstall--kev --kevin at bang-splat dot comThe tools for managing paradox are still undeveloped. --Kevin Kelly On Jul 17, 2006, at 3:22 AM, David Boddie wrote:On Sun Jul 16 14:13:59 MEST 2006, Adrien Bourdet wrote: In my previous post, I paste an example of code

Re: [PyKDE] Starting a PyQt application from a console daemon

2006-07-17 Thread Kevin Cureton
gets, will launch a GUI application. Using a fork would be appropriate in this case. Forking will create a separate process. That new process can run independently of the parent process, so it can have a Qt application loop regardless of what the parent process does.--kev --kevin at bang-splat dot c

[PyKDE] Eric 3/Pyqt 4 question

2006-05-04 Thread Kevin Walzer
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 I'm currently in the process of building PyQt 4, and I'm not clear on whether Eric3 will run under PyQt4. I'm guessing no, since QScintilla hasn't yet been ported to Qt4. Can anyone clarify this for me? - -- Kevin Walzer Poetic C

Re: [PyKDE] Mac OS X problems with the menu bar.

2005-12-09 Thread Kevin Walzer
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Vicent Mas wrote: > Hello, > I've a pyqt application that runs fine in Linux and Windows but not in > Mac OS X. The following problems appear in the Application menu of the > menu bar: > > - the name of the application menu is Python instead of the

[PyKDE] Configuration fix for Eric3 crashes on OS X

2005-06-24 Thread Kevin Walzer
i/o; that's been my experience with other Python packages running on 2.4.1. If such proves the case with Eric, then I will put together a PyQt installer for Python 2.4.1. - -- Cheers, Kevin Walzer, PhD WordTech Software--Open Source Applications and Packages for OS X http://www.wordtech-soft

[PyKDE] Re: [Pyqt-mac-list] new eric just as crashy?

2005-06-21 Thread Kevin Walzer
e. I wish I were able to do more to troubleshoot/diagnose the problem. If anyone has any suggestions/ideas/patches, I will be happy to test them. Cheers, Kevin Walzer, PhD WordTech Software--Open Source Applications and Packages for OS X http://www.wordtech-software.com http://w

Re: [PyKDE] PyQt and sip: WId is undefined

2005-06-21 Thread Kevin Walzer
rface conventions of each platform it runs on, but it also abstracts those differences away from the developer (unlike wxWidgets, which requires some Mac-specific hacks to get the "about" menu in the right place). Cheers, Kevin Walzer, PhD WordTech Software--Open Source Applications and Pa

Re: [PyKDE] Hello world with a twist

2005-06-19 Thread Kevin Walzer
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Doh, forget about it. I figured this out implementing a custom slot in Designer. Sorry for the waste of time. Kevin Walzer wrote: | Hello, | | I'm trying to modify the standard "hello world" PyQt program to print | "he

[PyKDE] Hello world with a twist

2005-06-19 Thread Kevin Walzer
ot;, None) app.setMainWidget(button) button.show() app.exec_loop() I can't quite figure this out. Can anyone help? Thanks - -- Cheers, Kevin Walzer, PhD WordTech Software--Open Source Applications and Packages for OS X http://www.wordtech-software.com http://www.kevin-walzer.com http://www.smallbizmac.

[PyKDE] Custom signal/slot function

2005-06-19 Thread Kevin Walzer
tement "print %s, e", but I also get the "not implemented yet" error. Can anyone help point me in the right direction? - -- Cheers, Kevin Walzer, PhD WordTech Software--Open Source Applications and Packages for OS X http://www.wordtech-software.com http://www.kevin-walzer.com htt

[PyKDE] Basic question about custom slot/function

2005-06-18 Thread Kevin Walzer
tement "print %s, e", but I also get the "not implemented yet" error. Can anyone help point me in the right direction? - -- Cheers, Kevin Walzer, PhD WordTech Software--Open Source Applications and Packages for OS X http://www.wordtech-software.com http://www.kevin-wa

[PyKDE] ANN: Eric3 3.7 available for Mac OS X

2005-06-17 Thread Kevin Walzer
included with the larger PyQt-Mac binary installer for OS X 10.4 ("Tiger"). For this version to function, you must have the entire PyQt-Mac package already installed. Look under "PyQt-Mac-Tiger" at the Sourceforge page to find the Eric 3 3.7 installer. - -- Cheers, Kevin Walzer, P

Re: [PyKDE] PyQt Applet on Mac

2005-05-28 Thread Kevin Walzer
itself, because they are built against Apple's installation) should help you in this regard. Cheers, Kevin Walzer, PhD WordTech Software--Open Source Applications and Packages for OS X http://www.wordtech-software.com http://www.smallbizmac.com http://www.kevin-walzer.com mailto:[EMAIL PROT

[PyKDE] Question about PyQt changes

2005-05-12 Thread Kevin Walzer
umula): QSizePolicy.Expanding,QSizePolicy.Fixed This change happened after I installed the latest version of PyQt. I'm just curious: was this documented anywhere official? Did anyone else encounter this? Just thought I'd post this as an FYI. - -- Cheers, Kevin Walzer, PhD WordTech Software--Open Source A

[PyKDE] ANN: New PyQt-Mac-03-2005 binary installer available

2005-03-22 Thread Kevin Walzer
added instructions on how to build PyQt on Mac OS X to the "ReadMe" documentation; this material is also included on the web page for PyQt-Mac. For more information and download links, see this page: http://www.wordtech-software.com/pyqt-mac.html - -- Cheers, Kevin Walzer, PhD WordTech Soft

Re: [PyKDE] ANN: new eric3 snapshot

2005-03-11 Thread Kevin Walzer
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 I got version 3.6.2 to install. I'm not sure where the problem was, but it's working now. Thanks for your help. Cheers, Kevin Walzer, PhD WordTech Software--Open Source Applications and Packages for OS X http://www.wordtech-softwar

Re: [PyKDE] ANN: new eric3 snapshot

2005-03-10 Thread Kevin Walzer
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 No error messages during installation. Everything seems to install smoothly and in fact, the files are in the correct directory--it just seems like eric can't see them. Should I provide any other output/files/doc? Cheers, Kevin Walzer, PhD Wor

Re: [PyKDE] ANN: new eric3 snapshot

2005-03-09 Thread Kevin Walzer
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Running the new snapshot against a new build of PyQt (the latest packages that Phil released this week plus Qt 3.3.4), I get this crash/traceback: Kevin-Walzers-Computer:~/Desktop/eric-snapshot-20050309 kevin$ eric3 Traceback (most recent call last

Re: [PyKDE] PyQt-Mac errors and Eric3

2005-03-09 Thread Kevin Walzer
ersions/2.3/lib/python2.3/site-packages/eric3/eric3.py", line 106, in main ~from UI.UserInterface import UserInterface ~ File "/Users/kevin/Desktop/eric-3.6.2/eric/UI/UserInterface.py", line 27, in ? ~from EmailDialog import EmailDialog ~ File "/Users/kevin/Deskto

[PyKDE] PyQt-Mac errors and Eric3

2005-03-09 Thread Kevin Walzer
e I did in fact build and install QScintilla with no apparent problems. When I try to install Eric3.5.1, I get the same error. When I simply run Eric 3.5.1 without installation, I get this error: File "/Users/kevin/Desktop/eric-3.5.1/eric/eric3.py", line 118, in ? ~ main() ~ File &

[PyKDE] XML module in Eric3?

2004-12-28 Thread Kevin Walzer
has support for PyQt, and which is supposed to find all required modules and bundle them in with the application. The py2app developer says he's not familiar with the XML module that's being referenced. Can someone help me identify this module? My traceback is below. Traceback (most recen

[PyKDE] Re: [Pyqt-mac-list] Re: Eric 3

2004-12-22 Thread Kevin Walzer
#x27;m copying my reply to the PythonMac and PyKDE lists: perhaps Jack Jansen (MacPython maintainer) or Phil Thompson (PyQt author) can shed more light on that aspect of your problem. I'll also see if I can find out more on my end. Regards, Kevin Jay Mutter wrote: | DEAR KEVIN; | | Yes

Re: [PyKDE] ANN: new eric3 snapshot

2004-12-06 Thread Kevin Walzer
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi Detlev, Runnig the new snapshot on Mac OS X I get the following: ~ File "/Users/kevin/Desktop/eric-snapshot-20041205/eric/eric3.py", line 123, in ? ~main() ~ File "/Users/kevin/Desktop/eric-snapshot-20041205/eric/eric3.py"

Re: [PyKDE] pyqt on Mac OSX

2004-11-22 Thread Kevin Walzer
unhofer.de/mailman/listinfo/pykde | | - -- Kevin Walzer, PhD WordTech Software--Open Source Applications and Packages for OS X http://www.wordtech-software.com http://www.smallbizmac.com http://www.kevin-walzer.com mailto:[EMAIL PROTECTED] -BEGIN PGP SIGNATURE- Version: GnuPG v1.2.4 (Darwi

[PyKDE] Re: [Pythonmac-SIG] ANN: PyQt-Mac binary installer, 11-2004-fix, available

2004-11-20 Thread Kevin Walzer
annot open application py2applet because it may be damaged or incomplete." I checked the package contents and while there is a MacOS directory and Resources directory, there are no files in them. Did I do something wrong in installation? (I used the pkg installer.) - -- Kevin Walzer, PhD WordTec

[PyKDE] Re: [Pythonmac-SIG] ANN: PyQt-Mac binary installer, 11-2004-fix, available

2004-11-20 Thread Kevin Walzer
.pkg installer of 0.1.5 that I posted). | | Wow! I didn't even know this was there: my experience had been working with the sample setup scripts, which I wasn't always getting to work successfully. I'll be sure to take a closer look at this. Thanks for pointing it out. - -- Kevin

[PyKDE] Re: [Pythonmac-SIG] ANN: PyQt-Mac binary installer, 11-2004-fix, available

2004-11-20 Thread Kevin Walzer
are some things that are hard-coded in this version of Eric3, so I'll leave it as is for now. - -- Kevin Walzer, PhD WordTech Software--Open Source Applications and Packages for OS X http://www.wordtech-software.com http://www.smallbizmac.com http://www.kevin-walzer.com mailto:[EMAIL PROTECTE

Re: [PyKDE] ANN: PyQt-Mac binary installer, 11-2004-fix, available

2004-11-19 Thread Kevin Walzer
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Correction: the link to download is http://www.wordtech-software.com/pyqt-mac.html Kevin Walzer wrote: | A new verison of the PyQt-Mac binary installer is available. This | version, PyQt-Mac-11-2004-fix, includes a rebuilt version of Qt 3.3.3 | with

[PyKDE] ANN: PyQt-Mac binary installer, 11-2004-fix, available

2004-11-19 Thread Kevin Walzer
. A mailing list for PyQt-Mac has also been established. To join the mailing list, see http://lists.sourceforge.net/lists/listinfo/pyqt-mac-list . - -- Kevin Walzer, PhD WordTech Software--Open Source Applications and Packages for OS X http://www.wordtech-software.com http://www.smallbizmac.com http

[PyKDE] Re: [Pythonmac-SIG] ANN: PyQt-Mac installer available

2004-11-12 Thread Kevin Walzer
n wrote: | | On 10 Nov 2004, at 11:18, Kevin Walzer wrote: | |> -BEGIN PGP SIGNED MESSAGE- |> Hash: SHA1 |> |> PyQt-Mac is a binary installer of the various components of Qt and PyQt |> for Mac OS X. Included are the following: |> ? |> * A complete build of Qt/Mac with

[PyKDE] Update on PyQt-Mac forthcoming

2004-11-10 Thread Kevin Walzer
to go in a few days. - -- Kevin Walzer, PhD WordTech Software--Open Source Applications and Packages for OS X http://www.wordtech-software.com http://www.smallbizmac.com http://www.kevin-walzer.com mailto:[EMAIL PROTECTED] -BEGIN PGP SIGNATURE- Version: GnuPG v1.2.4 (Darwin) Comment: Using

[PyKDE] ANN: PyQt-Mac installer available

2004-11-10 Thread Kevin Walzer
dtech-software.com/pyqt-mac.html. - -- Kevin Walzer, PhD WordTech Software--Open Source Applications and Packages for OS X http://www.wordtech-software.com http://www.smallbizmac.com http://www.kevin-walzer.com mailto:[EMAIL PROTECTED] -BEGIN PGP SIGNATURE- Version: GnuPG v1.2.4 (Darwin) Co

Re: [PyKDE] Complete newbie mac question...

2004-11-03 Thread Kevin Walzer
"license" for more information. | |>>>import qt | | Fatal Python error: Interpreter not initialized (version mismatch?) | | Do I need to install the Fink version of Python? | - -- Kevin Walzer, PhD WordTech Software--Open Source Applications and Packages for OS X http://w

Re: [PyKDE] Complete newbie mac question...

2004-11-01 Thread Kevin Walzer
ctly as it did build. | | | On Mon, 01 Nov 2004 16:35:46 -0500, Kevin Walzer | <[EMAIL PROTECTED]> wrote: | | What version of Qt are you using? I think tmake is obsolete. See | www.trolltech.com for build instructions. | | Timothy Grant wrote: | | | ...That is probably off-topic, but I

Re: [PyKDE] Complete newbie mac question...

2004-11-01 Thread Kevin Walzer
Thank you very much. | - -- Kevin Walzer, PhD WordTech Software--Open Source Applications and Packages for OS X http://www.wordtech-software.com http://www.smallbizmac.com http://www.kevin-walzer.com mailto:[EMAIL PROTECTED] -BEGIN PGP SIGNATURE- Version: GnuPG v1.2.4 (Darwin) Comment: Using

[PyKDE] Eric 3.5 vs. Eric 3.4.2

2004-10-30 Thread Kevin Walzer
going to be more likely to include Eric 3.4.2, just because it seems a *lot* more stable. - -- Kevin Walzer, PhD WordTech Software--Open Source Applications and Packages for OS X http://www.wordtech-software.com http://www.smallbizmac.com http://www.kevin-walzer.com mailto:[EMAIL PROTECTED] -BEGI

Re: [PyKDE] Eric 3.5 crashes on Qt/Mac when saving files

2004-10-28 Thread Kevin Walzer
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 I rebuilt everything from scratch, and now Eric3 seems to be working fine. Thanks for the suggestion. Willard Myers wrote: | On 2004 Oct 27, at 14:18, Kevin Walzer wrote: | |> That's what I was afraid of. Qt takes just a day under forever to |&

Re: [PyKDE] Eric 3.5 crashes on Qt/Mac when saving files

2004-10-27 Thread Kevin Walzer
a working PyQt build to play with, so I'll get started. Thanks for your help. Willard Myers wrote: | On 2004 Oct 27, at 14:04, Kevin Walzer wrote: | |> I did apply the patch, but I already had a build of Qt/Mac installed and |> didn't rebuild it. Could this be causing some weirdne

Re: [PyKDE] Eric 3.5 crashes on Qt/Mac when saving files

2004-10-27 Thread Kevin Walzer
to rebuild Qt/Mac or rebuild everything? Willard Myers wrote: | On 2004 Oct 27, at 13:49, Kevin Walzer wrote: | |> I've gone through the long process of installing Qt/Mac and |> PyQt/Sip/QScintilla because I wanted to give Eric3 a try. I've gotten |> everything succesfully built, an

[PyKDE] Eric 3.5 crashes on Qt/Mac when saving files

2004-10-27 Thread Kevin Walzer
bundle of Eric3, but I'm not comfortable doing this if Eric3 can't save files. I've already queried the Eric3 developer, and as he doesn't have a Mac, he directed me to this list. Thanks! Kevin PS--my crash log is below: Host Name: Kevin-Walzers-Computer.local Date/Ti

Re: [review] Re: [PyKDE] Embedded python

2004-06-02 Thread Kevin Schmidt
CK_THREADS Then, I wrap all Python calling code as stated above. Suggestions? Kevin David Boddie wrote: On Wed Jun 2 15:28:00 2004, Kevin Schmidt [EMAIL PROTECTED] wrote: However, if I try: from qt import * q=QObject() p=QObject(p) print p.parent() It crashes when I try to compile (via Py_Compi

  1   2   >