![]() |
2010-04-25
, 02:41
|
Posts: 402 |
Thanked: 229 times |
Joined on Nov 2009
@ Missouri, USA
|
#2
|
![]() |
2010-04-25
, 06:48
|
Posts: 5 |
Thanked: 0 times |
Joined on Apr 2010
|
#3
|
![]() |
2010-04-25
, 11:16
|
|
Posts: 1,366 |
Thanked: 1,185 times |
Joined on Jan 2006
|
#4
|
![]() |
2010-04-27
, 00:30
|
Posts: 5 |
Thanked: 0 times |
Joined on Apr 2010
|
#5
|
[sbox-FREMANTLE_X86: ~] > dpkg -l python2.5-qt4* | grep ii ii python2.5-qt4-common 4.7-maemo7 Shared files for PyQt4 ii python2.5-qt4-core 4.7-maemo7 Python bindings for Qt4 Core components. ii python2.5-qt4-dbus 4.7-maemo7 Python bindings for Qt dbus mainloop. ii python2.5-qt4-gui 4.7-maemo7 Python bindings for Qt4 Core components. [sbox-FREMANTLE_X86: ~] > dpkg -l libqt* | grep ii ii libqt4-core 4.5.3~git20090723-0maemo6+0m5 Qt 4 core module ii libqt4-gui 4.5.3~git20090723-0maemo6+0m5 Qt 4 GUI module
[sbox-FREMANTLE_X86: ~] > dpkg -l python2.5-qt4* | grep ii ii python2.5-qt4-common 4.7.3-maemo2 Shared files for PyQt4 ii python2.5-qt4-core 4.7.3-maemo2 Python bindings for Qt4 Core components. ii python2.5-qt4-dbus 4.7.3-maemo2 Python bindings for Qt dbus mainloop. ii python2.5-qt4-gui 4.7.3-maemo2 Python bindings for Qt4 Core components. [sbox-FREMANTLE_X86: ~] > dpkg -l libqt* | grep ii ii libqt4-core 4.6.2~git20100310-0maemo1+0m5 Qt 4 core module ii libqt4-gui 4.6.2~git20100310-0maemo1+0m5 Qt 4 GUI module
import sys from PyQt4 import QtCore, QtGui from PyQt4.QtCore import * from PyQt4.QtGui import * class MyForm(QtGui.QWidget): def __init__(self, parent=None): QtGui.QWidget.__init__(self, parent) list_data = ["item1","item2","item3","item4","item5"] lm = MyListModel(list_data,self) self.lv = QListView() self.lv.setModel(lm) # print i self.mdelegate=MyDelegate(self.lv) self.lv.setItemDelegate(self.mdelegate) # layout layout = QVBoxLayout() layout.addWidget(self.lv) self.setLayout(layout) class MyListModel(QAbstractListModel): def __init__(self, datain, parent=None, *args): QAbstractListModel.__init__(self, parent, *args) self.listdata = datain def rowCount(self, parent=QModelIndex()): return len(self.listdata) def data(self, index, role): if role==Qt.CheckStateRole: return Qt.Checked if index.isValid() and role == Qt.DisplayRole: return QVariant(self.listdata[index.row()]) else: return QVariant() def flags(self, index): return QtCore.Qt.ItemIsEnabled | QtCore.Qt.ItemIsDragEnabled |QtCore.Qt.ItemIsSelectable | QtCore.Qt.ItemIsUserCheckable | Qt.ItemIsEditable class MyDelegate(QStyledItemDelegate): def __init__(self, parent): QStyledItemDelegate.__init__(self, parent) self.editorState=False def createEditor(self, parent, option, index): editor=MyEditor(parent) return editor def sizeHint (self, option, index): return QStyledItemDelegate.sizeHint(self, option, index)+QSize(0, 0) def setEditorData( self, editor, index ): pass def updateEditorGeometry( self, editor, option, index ): editor.setGeometry(option.rect) class MyEditor(QtGui.QWidget): def __init__(self, parent): QtGui.QWidget.__init__(self, parent) self.button = QtGui.QPushButton("Press me") layout = QVBoxLayout(parent) layout.addWidget(self.button) self.setLayout(layout) QtCore.QObject.connect(self.button, QtCore.SIGNAL("clicked()"), self.echo) def setValue(self, value): pass def echo(self): print "has been clicked" if __name__ == "__main__": app = QtGui.QApplication(sys.argv) myapp = MyForm() myapp.show() sys.exit(app.exec_())
![]() |
2010-04-27
, 06:10
|
Posts: 402 |
Thanked: 229 times |
Joined on Nov 2009
@ Missouri, USA
|
#6
|
![]() |
2010-04-27
, 08:40
|
Posts: 5 |
Thanked: 0 times |
Joined on Apr 2010
|
#7
|
![]() |
2010-04-27
, 09:06
|
Posts: 198 |
Thanked: 76 times |
Joined on Mar 2010
|
#8
|
May you know the way to overcome problems with circles instead of checkboxes.
![]() |
2010-04-27
, 09:28
|
Posts: 5 |
Thanked: 0 times |
Joined on Apr 2010
|
#9
|
I'm trying to write simple pyqt application, however right now all my efforts ends with issues that I can't overcome. It should be really easy application ...
At 4.5.3 version of qt I've found wrong checkbox render (there were just simple circle instead of nice checkbox indicator), so I've migrated to 4.6.2. Now checkbox are fine however existing part of code stopped to work
I'm attaching complete test_case - it is just simple list that once you enter into editor state shows push button. I'm unable to make that push button working.
I'll appreciate any help.
Kasper
______________________________________
import sys
from PyQt4 import QtCore, QtGui
from PyQt4.QtCore import *
from PyQt4.QtGui import *
class MyForm(QtGui.QWidget):
def __init__(self, parent=None):
QtGui.QWidget.__init__(self, parent)
list_data = ["item1","item2","item3","item4","item5"]
lm = MyListModel(list_data,self)
self.lv = QListView()
self.lv.setModel(lm)
# print i
self.mdelegate=MyDelegate(self.lv)
self.lv.setItemDelegate(self.mdelegate)
# layout
layout = QVBoxLayout()
layout.addWidget(self.lv)
self.setLayout(layout)
class MyListModel(QAbstractListModel):
def __init__(self, datain, parent=None, *args):
QAbstractListModel.__init__(self, parent, *args)
self.listdata = datain
def rowCount(self, parent=QModelIndex()):
return len(self.listdata)
def data(self, index, role):
if index.isValid() and role == Qt.DisplayRole:
return QVariant(self.listdata[index.row()])
else:
return QVariant()
def flags(self, index):
return QtCore.Qt.ItemIsEnabled | QtCore.Qt.ItemIsDragEnabled |QtCore.Qt.ItemIsSelectable | QtCore.Qt.ItemIsUserCheckable | Qt.ItemIsEditable
class MyDelegate(QStyledItemDelegate):
def __init__(self, parent):
QStyledItemDelegate.__init__(self, parent)
self.editorState=False
def createEditor(self, parent, option, index):
return MyEditor(parent)
class MyEditor(QtGui.QWidget):
def __init__(self, parent):
QtGui.QWidget.__init__(self, parent)
self.button = QtGui.QPushButton("Press me")
layout = QVBoxLayout()
layout.addWidget(self.button)
self.setLayout(layout)
QtCore.QObject.connect(self.button, QtCore.SIGNAL("clicked()"), self.echo)
def event(self,event):
print "event:"+str(event.type())
return QtGui.QWidget.event(self,event)
def setValue(self, value):
pass
def echo(self):
print "has been clicked"
if __name__ == "__main__":
app = QtGui.QApplication(sys.argv)
myapp = MyForm()
myapp.show()
sys.exit(app.exec_())