[PyQt] qtablewidget multi cell editing

2013-05-28 Thread Christopher Evans
anyone know a way to select multiple cells and edit them, a la excel and other packages? Do i need to write custom code, or is this supported? -- CE ___ PyQt mailing listPyQt@riverbankcomputing.com http://www.riverbankcomputing.com/mailman/listinfo

Re: [PyQt] Function to open window and return user input

2012-01-23 Thread Christopher Evans
Peter Jansen wrote: > On Friday 20 January 2012, 20:38:33 Christopher Evans wrote: > > QInput is designed to get a single input from a user. > > > > In my case, we are making a complex remapping dialog that takes two > > ordered lists as input, allows the users to change the

Re: [PyQt] Function to open window and return user input

2012-01-20 Thread Christopher Evans
, Phil Thompson wrote: > On Fri, 20 Jan 2012 01:52:26 +0100, Christopher Evans > wrote: > > What's the best way to open a pyqt win and return user input? > > > > Kind of like with pyqt's built in simple windows (save, load, ok/cancel, > > etc). > > >

[PyQt] Function to open window and return user input

2012-01-19 Thread Christopher Evans
What's the best way to open a pyqt win and return user input? Kind of like with pyqt's built in simple windows (save, load, ok/cancel, etc). I would like to make a function that when run, pops a window open, then when closed, the fn resumes and returns some info based on user input. Thanks, --

[PyQt] Refresh a treeWidget but not it's expand/collapse

2011-12-04 Thread Christopher Evans
What's the best way to refresh/rebuild a treeWidget without blowing away the user's depth traversal and framing? Anyone have a small fn for this? I guess you query the state of all leaves/branches of the treeWidget then reapply it? -- CE ___ PyQt maili

[PyQt] DynamicUILoader().loadUi crash only when inside a decorated function?

2011-09-23 Thread Christopher Evans
I am wrapping a tool in a decorator which just sends a mail with some info on throw, however, the UIC module doesn't seem to like this. File "J:\data\Production\TechArt\Builds\Latest\Tools\CryMayaTools\CryRigging\rigTools\rigTools.py", line 29, in __init__ self.ui = uic.loadUi(uiPath) File "J:\dat

[PyQt] Sourcing libs across network?

2011-08-24 Thread Christopher Evans
Anyone sourcing the pyqt libs from across a network (windows)? We have some weird errors, mainly when loading a UIC via the UIC module. # Error: : invalid syntax (, line 31) # Traceback (most recent call last): # File "", line 1, in # File "\\fs1\TECHART\Tools\CryMayaTools\CryAnimation\retarget

[PyQt] Color characters in a qTreeWidgetItem

2011-01-20 Thread Christopher Evans
I would like to color specific characters in a tree widget item. I looked around a bit, any ideas? I can change all the text, this is what I am doing now, but I really need to just hilight different values int he string. -- CE ___ PyQt mailing list

[PyQt] QContextMenuEvent on a QTreeWidgetItem

2010-12-17 Thread Christopher Evans
Hi guys, I have been using pyqt for years at many different jobs and many different projects, however some things elude me. (I am a self-taught noob at heart) I have written many tutorials for the community to help spread knowledge, but this is one of the many things I myself have never found a g