Re: PyQt Softimage Linux?

2013-01-23 Thread Steven Caron
i hope anyone using PyQtForSoftimage plugin on windows could install this latest version, at least update the QtSoftimage.64.dll with the one from beta5, and test if everything is working normally? On Wed, Jan 23, 2013 at 12:40 AM, Steven Caron car...@gmail.com wrote: ok i have verified myself

Re: PyQt Softimage Linux?

2013-01-23 Thread Steven Caron
-- *From:* softimage-boun...@listproc.autodesk.com [ softimage-boun...@listproc.autodesk.com] on behalf of Steven Caron [ car...@gmail.com] *Sent:* 23 January 2013 20:51 *To:* softimage@listproc.autodesk.com *Subject:* Re: PyQt Softimage Linux? i hope anyone

Re: PyQt Softimage Linux?

2013-01-23 Thread Gene Crucean
It works as expected so far over here. On Wed, Jan 23, 2013 at 10:51 AM, Steven Caron car...@gmail.com wrote: i hope anyone using PyQtForSoftimage plugin on windows could install this latest version, at least update the QtSoftimage.64.dll with the one from beta5, and test if everything is

Re: PyQt Softimage Linux?

2013-01-23 Thread César Sáez
Thanks Steven :) I've been using your (and Jo) implementation a lot lately and it works great. The only problem is with keystrokes not being well interpreted in non-US keyboards (letters and numbers are good, the problem comes with symbols), Softimage's fault I guess. On Wed, Jan 23, 2013 at

Re: PyQt Softimage Linux?

2013-01-23 Thread Steven Caron
have you tested the new version i just posted? i am more concerned about the changes i just made to remove unused functionality in the QtSoftimage.64.dll about the non-US keyboards, if you look at the qtevents.py you should be able to add to the key mapping the virtual codes to qt key codes you

Re: PyQt Softimage Linux?

2013-01-23 Thread Steven Caron
thanks gene On Wed, Jan 23, 2013 at 11:17 AM, Gene Crucean emailgeneonthel...@gmail.com wrote: It works as expected so far over here.

Re: PyQt Softimage Linux?

2013-01-22 Thread ran sariel
Hi Steven Tried the reparent method for X and managed to compile and link it on centos6.2, the app and widget are created on the plugin side, the anchor is parented to the app handle (or at least doesn't tell me that it's failing) The thing is that the show method doesn't raise the dialog that I

Re: PyQt Softimage Linux?

2013-01-22 Thread Steven Caron
i need to double check with jo, but i thought the lisenter wasn't necessary. it was an incomplete attempt at implementing the key events in cpp. the python code in qt_events.py handles the key events using a softimage key up/down event and forwarding it to the qt app. i have been meang to remove

Re: PyQt Softimage Linux?

2013-01-22 Thread Steven Caron
its a key event inside softimage. if a widget is in focus we stop softimage from getting it and send it to qt. so if there is no qapplication running, its passed through. if there is one, it tests if its focused. i wouldn't worry about that until the damn thing shows parented under softimage

Re: PyQt Softimage Linux?

2013-01-18 Thread Steven Caron
thanks for your feedback michal. i did a bit of research... have you tried the way jo did the parenting of the window in PyQtForSoftimage plugin with this function? http://tronche.com/gui/x/xlib/window-and-session-manager/XReparentWindow.html i also found these discussions...

Re: PyQt Softimage Linux?

2013-01-18 Thread Michal Doniec
That's really interesting Steven, I'll definitely have a look at these as soon as I can. Thank you! On 18 January 2013 19:46, Steven Caron car...@gmail.com wrote: thanks for your feedback michal. i did a bit of research... have you tried the way jo did the parenting of the window in

Re: PyQt Softimage Linux?

2013-01-18 Thread Steven Caron
i would take a look myself but i dont have access to a linux machine and a development environment setup on it. so i can only make suggestions, but i would like to help as much as i can. let me know what you find out. On Fri, Jan 18, 2013 at 12:55 PM, Michal Doniec doni...@gmail.com wrote:

Re: PyQt Softimage Linux?

2013-01-18 Thread Simon van de Lagemaat
Our pipeline guy Ran Sariel wants to get in to this thread but he just joined the list and needs an email from this thread to get started. So ignore this... apparently the google group is just an archive and can't be used for replies. On Fri, Jan 18, 2013 at 1:55 PM, Steven Caron

Re: PyQt Softimage Linux?

2013-01-18 Thread Steven Caron
great to hear simon! we (whiskytree) will probably need this one in the future so i hope we can sort this out together. On Fri, Jan 18, 2013 at 3:55 PM, Simon van de Lagemaat si...@theembassyvfx.com wrote: Our pipeline guy Ran Sariel wants to get in to this thread

Re: PyQt Softimage Linux?

2013-01-18 Thread ran sariel
Hi Steven finally in the mailing list... I've looked at your plugin a while back and resorted to implement a python only approach for pyqt in softimage, basically as was mentioned by others making sure the qt application is global, I never had any issues with signals from the Gui beeing blocked..

Re: PyQt Softimage Linux?

2013-01-17 Thread Steven Caron
hey stefan PyQtForSoftimage doesn't currently work in linux. Its open sourced because i hoped someone with experience on linux would port it. the cpp has some extra stuff in there that isn't actually being used right now, which i need to clean up. if you have the time please give it a shot and

Re: PyQt Softimage Linux?

2013-01-17 Thread Andy Nicholas
there is also Aloys' method with a timer event which for some reason no one seems to be trying. That's what we're doing at The Mill, but I'm not sure if Michal here has modified it at all. It's workable, although there are some problems, mainly to do with not being able to easily obtain a

Re: PyQt Softimage Linux?

2013-01-17 Thread Steven Caron
i dont follow... PyQtForSoftimage plugin isn't linking against python. so the plugin itself cares not about your python version. what is important would be the version of Qt libraries you link against. that version should probably match the version of PyQt your are using. do you mean getting a

Re: PyQt Softimage Linux?

2013-01-17 Thread Xavier Lapointe
There's no way to use PyQtForSoftimage in linux since it relies on windows, and on linux you need pyqt/Qt that is compatible with the python version. But to be honest I'm not entirely sure about this, just what I've seen so far points in that direction. Anyway .. On Fri, Jan 18, 2013 at 9:59

Re: PyQt Softimage Linux?

2013-01-17 Thread Steven Caron
ok yes, i thought you were suggesting you needed to link the plugin to python version, which i was pointing out isn't the case. you do need a pyqt/qt version that works with the version of python (2.5 in this case). it was probably semantic mis understanding, i just don't want people to think they

Re: PyQt Softimage Linux?

2013-01-17 Thread Alan Fregtman
One of the pipeline TDs here has got PySide to compile for Python 2.5 and this morning it was showing a rudimentary pyqt modal dialog without segfaulting. No victory dance yet, but it's a start. On Thu, Jan 17, 2013 at 6:32 PM, Xavier Lapointe xl.mailingl...@gmail.comwrote: There's no way to

Re: PyQt Softimage Linux?

2013-01-17 Thread Steven Caron
pure python implementation, using timer event? On Thu, Jan 17, 2013 at 3:42 PM, Alan Fregtman alan.fregt...@gmail.comwrote: One of the pipeline TDs here has got PySide to compile for Python 2.5 and this morning it was showing a rudimentary pyqt modal dialog without segfaulting. No victory

Re: PyQt Softimage Linux?

2013-01-17 Thread Simon Anderson
crap wrong thread! XD On Fri, Jan 18, 2013 at 3:31 PM, Simon Anderson simonbenandersonl...@gmail.com wrote: The market place could be a soft plugin or Qt plugin On Fri, Jan 18, 2013 at 3:31 PM, Simon Anderson simonbenandersonl...@gmail.com wrote: I was thinking a while back, why not