Re: [PyQt] Mac OS X Problem: PyQT applications not focusing on launch

2009-09-25 Thread Alexei Puzikov
hello = HelloWorld() hello.show() hello.raise_() # this will raise the window on Mac OS X sys.exit(app.exec_()) Given it's a Mac-only problem, which wasn't reproducible with Qt, only PyQt, for me it looks like a PyQt bug. But the fix is quite easy. A. On Fri, Sep 25, 2009 at 5:16 PM, Holger Rap

Re: [PyQt] building QfMacNavBar on windows

2009-09-08 Thread Alexei Puzikov
Anil, I have a Python translation at http://code.google.com/p/cutebookshelf/source/browse/trunk/navbar.py Hope this helps Alexei On Tue, Sep 8, 2009 at 12:59 PM, Anil Kumar wrote: > Hi, > Anybody successfully built QfMacNavBar from http://code.google.com/p/pyqt4- > extrawidgets/ on windows? > I

Re: [PyQt] Collapse/expand frame

2009-08-19 Thread Alexei Puzikov
50 PM, Hans-Peter Jansen wrote: > Am Freitag, 14. August 2009 schrieb Alexei Puzikov: >> >> Actually, you do, as soon as you'll pass over some amount of controls. >> >> >> >> I have the editor here that reimplements the screenshot (it's Maya, >> &g

Re: [PyQt] Collapse/expand frame

2009-08-14 Thread Alexei Puzikov
>> Actually, you do, as soon as you'll pass over some amount of controls. >> >> I have the editor here that reimplements the screenshot (it's Maya, btw) >> and in worst situations contains approx. 4500 controls. And I'm still >> unable to remove >> flickering on switch - basically, the layout refre

Re: [PyQt] Collapse/expand frame

2009-08-13 Thread Alexei Puzikov
>> I'm really looking for a frame that has the collapse/expand ability >> built into it. See the image in the link. You can see the Texture Map >> submenu  collapsed/expanded. Any thoughts? >> >> www.scottballard.net/collapsibleFrame.jpg > > I see - why don't you BYO. This kind of widget is uncommo

Re: [PyQt] Collapse/expand frame

2009-08-13 Thread Alexei Puzikov
Well - have you tried to do that with 1500 controls? A. On Fri, Aug 14, 2009 at 9:24 AM, Håvard Gulldahl wrote: > On Thu, Aug 13, 2009 at 7:51 PM, Scott Ballard wrote: >> I'm really looking for a frame that has the collapse/expand ability built >> into it. See the image in the link. You can see t

[PyQt] Soft-hyphen (SHY) support in QtWebkit embedded into PyQt app

2009-07-10 Thread Alexei Puzikov
Hello, I'm loading http://www.cs.tut.fi/~jkorpela/shytest.html into the QWebView, and it does break up the words correctly, but doesn't show the actual hyphens at the right margin of the text. It's even worse for Russian language texts - it actually break the words that's in the middle of paragra

Re: [PyQt] PyQt application appears always in the background

2009-06-10 Thread Alexei Puzikov
This seems to be something with PyQt, because C++ Qt applications don't have this problem. What helps with the situation is: window.show() window.raise_() Cheers, Alexei On Thu, Jun 11, 2009 at 6:26 PM, Michael Held wrote: > hi, > > my PyQt application appears always in the background (the las

Re: [PyQt] node graph widgets?

2009-05-07 Thread Alexei Puzikov
r source code your willing to share? Or any links > to examples? > > Thanks! > -Scott > > > Alexei Puzikov wrote: > > Nothing standard, however it's actually pretty easy to implement > either with GraphicsScene or OpenGL surface. > > Latter is exactly what I&#

Re: [PyQt] node graph widgets?

2009-05-07 Thread Alexei Puzikov
Nothing standard, however it's actually pretty easy to implement either with GraphicsScene or OpenGL surface. Latter is exactly what I've did. Alexei > Does anyone know if Qt (PyQt) offer any widgets for creating a node graph > with connections between the nodes? A quick Google search didn't tur

[PyQt] Transparent QTreeWidget over the QtOpenGL.QGLWidget

2008-12-04 Thread Alexei Puzikov
Hello, The question seems to be simple, but I've spent some time experimenting and reading docs already without good results. So. I have QGLWidget in my window and QTreeWidget is parented to it. Now what I want is for QTreeWidget background to become transparent so that I'll be able to see my GL

[PyQt] QWidget event == no more GC for QWidget?

2008-07-21 Thread Alexei Puzikov
Hello, Quick question: if I uncomment the moveEvent in the code below, the destructor isn't called anymore. I suspect I'm doing something wrong or missing something - anybody can clear the things up? I'm on Python 2.5.1 (r251:54863, Jun 25 2008, 10:21:16) [GCC 4.0.3 (Ubuntu 4.0.3-1ubuntu5)] on li