![]() |
2010-03-07
, 08:35
|
|
Posts: 1,366 |
Thanked: 1,185 times |
Joined on Jan 2006
|
#3
|
Maybe (most likely?) I am missing something obvious, but why don't you use array of push buttons and iterate through them in a loop?
Hartti
![]() |
2010-03-07
, 10:29
|
|
Posts: 2,121 |
Thanked: 1,540 times |
Joined on Mar 2008
@ Oxford, UK
|
#4
|
![]() |
2010-03-07
, 10:44
|
Posts: 3,319 |
Thanked: 5,610 times |
Joined on Aug 2008
@ Finland
|
#5
|
The Following User Says Thank You to attila77 For This Useful Post: | ||
![]() |
2010-03-07
, 11:10
|
|
Posts: 1,366 |
Thanked: 1,185 times |
Joined on Jan 2006
|
#6
|
The Following User Says Thank You to mikec For This Useful Post: | ||
![]() |
2010-03-07
, 15:27
|
Posts: 3,319 |
Thanked: 5,610 times |
Joined on Aug 2008
@ Finland
|
#7
|
Thanks Atilla and Pelago
I will give the eval function a try, sounds like exec() might also be useful.
Is there no way to globally set QpushButton attributes?
for instance I can change the style of QpushButtons globally with a single method
![]() |
2010-03-09
, 19:32
|
|
Posts: 1,366 |
Thanked: 1,185 times |
Joined on Jan 2006
|
#8
|
#Here is the MainWindow Class with an array called ledArray declared. class MainWindow(QMainWindow, Ui_MainWindow): ledArray=[] def __init__(self, parent = None): QMainWindow.__init__(self, parent) self.setupUi(self)
def initled(): for r in range(8): MainWindow.ledArray.append([]) for c in range(16): MainWindow.ledArray[r].append(QtGui.QPushButton()) MainWindow.ledArray[r][c].setCheckable(True) MainWindow.ledArray[r][c].setMinimumSize(QtCore.QSize(45, 45)) ui.gridLayout.addWidget(MainWindow.ledArray[r][c], r, c)
for r in range(8): for c in range(16): self.ledArray[r][c].setChecked(self.ledState)
![]() |
2010-03-09
, 19:37
|
|
Posts: 3,203 |
Thanked: 1,391 times |
Joined on Nov 2009
@ Worthing, England
|
#9
|
ok just to close close this thread off.
Could not get Eval() to work but Exec() worked well , but I decided to rewrite the app using an array of buttons populated from within the application. This was non trivial cause of python arrays peculiarities but here is the code snippet for future ref.
This creates an 8x16 array of buttons in an array declared inside the Qt MainWindow Class (this avoids the use of globals, don't even go three)
Here is the initialization routine to create the array of buttons in the Main.py and inserts them into the UI created by Qt Designer, where I had placed a grid layout in the main window to accept my buttons, all pre-styled to look nice.Code:#Here is the MainWindow Class with an array called ledArray declared. class MainWindow(QMainWindow, Ui_MainWindow): ledArray=[] def __init__(self, parent = None): QMainWindow.__init__(self, parent) self.setupUi(self)
And I can change all attributes at once now with loop.Code:def initled(): for r in range(8): MainWindow.ledArray.append([]) for c in range(16): MainWindow.ledArray[r].append(QtGui.QPushButton()) MainWindow.ledArray[r][c].setCheckable(True) MainWindow.ledArray[r][c].setMinimumSize(QtCore.QSize(45, 45)) ui.gridLayout.addWidget(MainWindow.ledArray[r][c], r, c)
and here is the resultCode:for r in range(8): for c in range(16): self.ledArray[r][c].setChecked(self.ledState)
Mike C
The Following User Says Thank You to noobmonkey For This Useful Post: | ||
![]() |
2010-03-12
, 12:06
|
Posts: 3,319 |
Thanked: 5,610 times |
Joined on Aug 2008
@ Finland
|
#10
|
Code:def initled(): for r in range(8): MainWindow.ledArray.append([]) for c in range(16): MainWindow.ledArray[r].append(QtGui.QPushButton()) MainWindow.ledArray[r][c].setCheckable(True) MainWindow.ledArray[r][c].setMinimumSize(QtCore.QSize(45, 45)) ui.gridLayout.addWidget(MainWindow.ledArray[r][c], r, c)
# c-ish for r in range(8): for c in range(16): self.ledArray[r][c].setChecked(self.ledState) # pythonic for row in self.ledArray: for led in row: led.setChecked(self.ledState)
I have over 100 QpushButtons in a gridlayout, and I want to set the toggle state of all of them to the same state.
Any clues how I can do this short of writing this statement 100 times
self.pushButton1.setChecked(0)
.
.
.
self.pushButton100.setChecked(0)
Cheers
Mike C
N900_Email_Options Wiki Page
Last edited by mikec; 2010-03-06 at 19:33.