Hi all,
When i make a PyQt file requestor on Mac, I'm unable to view some of
the system folders such as /var.
Is there a way to make these visible to the PyQt file dialogues?
Also, is there a way to enter the .app dirs of a Mac rather than
treat them as files?
--Thanks for any input
_
Hi all,
I have some menu tool bars in my GUI and I find that the last item on
the menu is always invisible when the program is run on OS X but
everything is fine when the program is run on Windows XP and Linux.
I made the GUI with Qt Designer.
Has anyone run in to this issue before? Any ti
Hi,
We're migrating some code from PyQt3, and have discovered that
QWindowMime doesn't seems to exist in PyQt4? Is there a reason
for that? Would it be difficult to add, or is there an
alternative?
Thanks
Anthony
___
PyQt mailing listPyQt@riverba
On Monday 17 September 2007, Giovanni Bajo wrote:
> Hi Phil,
>
> after some days/weeks of debugging/profiling some code without really
> getting any clue at the Python level, I tried oprofile on the code, and
> was shocked by sipQtFindConnection being shown as top entry (50% of the
> total time spe
Hi Phil,
after some days/weeks of debugging/profiling some code without really
getting any clue at the Python level, I tried oprofile on the code, and
was shocked by sipQtFindConnection being shown as top entry (50% of the
total time spent in that execution, with total execution time being 32
On Monday 17 September 2007, Nicolas Girard wrote:
> Hi,
> could someone tell me why this works...:
>
> #!/usr/bin/python
> from PyQt4 import QtGui
> import sys
>
> class Window(QtGui.QMainWindow):
> def __init__(self, parent=None):
> QtGui.QWidget.__init__(self, parent)
> self.
Hi again,
in the following example I would expect the lineEdit contents to be refreshed
each time the treeview's selection changes ; unfortunately it doesn't work. I
tried to follow the Qt docs but I'm probably missing something... but what ?
Cheers,
Nicolas
===
#!/usr/bin/python
from PyQt4 im
On Mon Sep 17 16:28:34 BST 2007, Nicolas Girard wrote:
> class Window(QtGui.QMainWindow):
> def __init__(self, parent=None):
> QtGui.QWidget.__init__(self, parent)
> self.tree = QtGui.QTreeView(self)
> model = QtGui.QDirModel()
> self.setModel(model)
> def s
Hi,
could someone tell me why this works...:
#!/usr/bin/python
from PyQt4 import QtGui
import sys
class Window(QtGui.QMainWindow):
def __init__(self, parent=None):
QtGui.QWidget.__init__(self, parent)
self.tree = QtGui.QTreeView(self)
def setModel(self,model):
tree
It's fairly easy but just how trivial it will be will depend on your
set up. Are all the QLineEdits on one widget? If so, some code a bit
like the following could work:
for widget in theParentWidget.children():
if isinstance(widget, QLineEdit):
myDictionary[widget.objectName()] = widge
PyQt3Support - Python bindings for Qt3Support
http://www.develer.com/oss/PyQt3Support
What is this?
PyQt3Support is an extension to PyQt4 that adds bindings to Qt's
Qt3Support library for usage from the Python language.
This is very helpful to migrate existing PyQt3 applications
On 9/17/2007 4:59 PM, John Wheez wrote:
Is there a function in pyQt which will iterate over the existing QlineEdit
widgets and make a list/dictionary with the widget name and it's current
text?
dict((unicode(w.objectName()), unicode(w.text()))
for w in mainwidget.findChildren(QLineEdit))
Is there a function in pyQt which will iterate over the existing
QlineEdit
widgets and make a list/dictionary with the widget name and it's
current text?
Thanks for any input.
___
PyQt mailing listPyQt@riverbankcomputing.com
http://www.riverbank
Hi
I've tried to implement a handler for SIGBREAK on Windows (resulting from
Ctrl+Break), but for PyQt applications it doesn't get called unless the
application is run from a terminal and the terminal has focus. Any ideas
why?
Thanks,
Arve
___
PyQt mail
On Sunday 16 September 2007, Nicolas Girard wrote:
> Hi,
> when running
> python configure.py
> from the latest PyQt4 snapshot, I got the following error message:
> Error: Failed to create ./qtdirs using platform linux-g++. Make sure your
> compiler is installed correctly and you have a working
15 matches
Mail list logo