Re: Save Softimage Petition

2014-03-05 Thread Ana Gomez
done On Wed, Mar 5, 2014 at 4:20 PM, Edy Susanto Lim edysusant...@gmail.comwrote: done On Wed, Mar 5, 2014 at 10:16 AM, Martin Yara furik...@gmail.com wrote: It's been tweeted and RT already. Martin On Thu, Mar 6, 2014 at 12:10 AM, javier gonzalez javi09warr...@gmail.com wrote:

Re: Some more questions about PyQt in Softimage

2012-09-07 Thread Ana Gomez
Right!! And you can also get the path directly: Application.Plugins( 'MultiImporter_Qt' ).OriginPath On Fri, Sep 7, 2012 at 11:36 AM, piotrek marczak piotrek.marc...@gmail.comwrote: SignatureThanks Tim, good learning resource btw srcDir = '' for plugin in Application.Plugins: # Isn't

Re: XSIBase safe?

2012-09-05 Thread Ana Gomez
What a pity!! On Wed, Sep 5, 2012 at 11:59 AM, Cristobal Infante cgc...@gmail.com wrote: xsibase it's Not safe bruv, it's the ghetto now innit.. On 5 September 2012 04:09, Raffaele Fragapane raffsxsil...@googlemail.com wrote: If you use windows, you should use this:

Re: Some more questions about PyQt in Softimage (addon v1.12)

2012-08-28 Thread Ana Gomez
Hello!! For the size of your button I think you could try with box.setStyleSheet('QPushButton{padding: 100px;}') or box.setStyleSheet('QPushButton{height: 100px; width: 100px}') I don't know if you can manage it without playing with the style sheets. Bye

Re: Some more questions about PyQt in Softimage (addon v1.14: fixes button size and adds command to Soft menu)

2012-08-28 Thread Ana Gomez
Life with stylesheet becomes easier when you find this: http://qt-project.org/doc/qt-4.8/stylesheet-reference.html http://qt-project.org/doc/qt-4.8/stylesheet-examples.html

Re: Some more questions about PyQt in Softimage

2012-08-27 Thread Ana Gomez
Congratulations for your window! I'm going to try to answer some points, for the rest I would need more time to look them: 2) *Proper Tool Termination* Try one thing and tell me if you are still loosing memory. Make these changes: def MultiImporter_Qt_Execute(): ... sianchor =

Re: Some more questions about PyQt in Softimage

2012-08-27 Thread Ana Gomez
Tim! I think I know what it is happening. You are right, your window is not being destroy when you close the window. Write this on the init of your window: 'self.setAttribute(QtCore.Qt.WA_DeleteOnClose)'. Check the memory again and open several times the window, close it and open it.

Re: Some more questions about PyQt in Softimage

2012-08-27 Thread Ana Gomez
class MuiltImporterDialog( QDialog ): def __init__( self, uifilepath, parent ): QDialog.__init__(self, parent) QApplication.setStyle(QtGui.QStyleFactory.create('Plastique')) self.ui = uic.loadUi( uifilepath, self) *self.setAttribute(QtCore.Qt.WA_DeleteOnClose)*

Re: Some more questions about PyQt in Softimage

2012-08-27 Thread Ana Gomez
great news!! How are you measuring the memory? I'd like to do it too. I'll keep you informed on my progresses with the file browser.

Re: undo event??!!

2012-08-22 Thread Ana Gomez
After all, I've created the signals for undo and redo in my PyQtForSoftimage branch. https://github.com/anuska/PyQtForSoftimage

Re: undo event??!!

2012-08-22 Thread Ana Gomez
:D On Wed, Aug 22, 2012 at 7:49 PM, Steven Caron car...@gmail.com wrote: great! thanks for the contribution back.. i actually need to commit some changes i made to the events files. lets hope there isn't too much merging issues. On Wed, Aug 22, 2012 at 10:04 AM, Ana Gomez agomezalca

Re: undo event??!!

2012-08-21 Thread Ana Gomez
Writing a command on Selection Change in the preferences doesn't work. It is never called, nor when you select something nor when you undo a selection. I have to see if i can report bugs. Thanks.

Re: undo event??!!

2012-08-21 Thread Ana Gomez
Perhaps I'm not using it right: First test: Application.LogMessage(foo) Second test: Application.MyCommand() (a custom command that prints something)

Re: undo event??!!

2012-08-21 Thread Ana Gomez
I'm using 2012

Re: undo event??!!

2012-08-21 Thread Ana Gomez
Ok. I was selecting in the explorer. If I select in the viewport the command written in the 'Selection Change' is executed. Anyway, I think there is a bug when you register the event siOnSelectionChange. I think It should be fired when a selection is undone. If someone wants to reproduce... 1.

undo event??!!

2012-08-20 Thread Ana Gomez
Hi, Today I've realized that there is no event for undo :( I'm writting an interface with pyqt and I need to refresh it when the user undo something in the scene. Any ideas?? Thanks, Ana

Re: undo event??!!

2012-08-20 Thread Ana Gomez
at 5:23 PM, Ciaran Moloney moloney.cia...@gmail.comwrote: perhaps a command event? On Mon, Aug 20, 2012 at 3:57 PM, Ana Gomez agomezalca...@gmail.comwrote: Hi, Today I've realized that there is no event for undo :( I'm writting an interface with pyqt and I need to refresh it when the user

Re: PyQtForSoftimage vs Blur-dev

2012-05-09 Thread Ana Gomez
Hello, Steve, here you have the fork https://github.com/anuska/PyQtForSoftimageand I have also sent you a pull request. Jo, I think you are going to be disappointed :( I like what you suggest a lot but I fear that I have started with something easier. Probably most people will have already done