<div>In order to prevent similar situations in the my code where I have a set of dependent boxes I&#39;ve used a couple of methods.</div><div><br></div><div>First method is to use a governor function. Send all of your signals to one function which can evaluate each signal as it&#39;s called and decide to act on or ignore subsequent signals. From here you can set status flags and call your worker methods. When the signals are triggered again, because of your status flags you know to ignore them.</div>
<div><br></div><div>Second method is to disconnect the widgets that you&#39;re currently working on and them re-connect them when you&#39;re done. This way probably works better as it decrease the amount of events flying around.&nbsp;</div>
<div><br></div><div>It becomes an issue not just when updating widgets, but clearing them as well sometimes, depending on which signal you use. I have functions which I can call that does mass connects and disconnects.</div>
<div><br></div><div>There may be better methods for handling this in Qt, but I&#39;ve found these to work.</div><div><br></div><div>Marc</div><div><br></div><br><br><div class="gmail_quote">On Tue, Feb 3, 2009 at 11:28 AM, Knapp <span dir="ltr">&lt;<a href="mailto:magick.crow@gmail.com">magick.crow@gmail.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">Hello, I am a bit new to all this, so I hope this question is not to<br>
dumb. I am writing a program that must have a form with just these<br>
inputs and one input effects the other. I have one spin box,<br>
ST(strength) that sets the base of the second, HP (hit points). So if<br>
you have 10 ST then you have 10 HP but you can buy more HP by rolling<br>
the roller for ST. This is where it gets really messed up! Changing ST<br>
must update ST and HP. Calling HP must update only HP. I know this<br>
explanation sucks but hopefully the code will help. I am using count<br>
to try and stop the run away look that is happening. Is there a much<br>
better way?!<br>
<br>
BTW, ST cost one price and HP a second so changes from both rollers<br>
must be kept separately be be shown added.<br>
<br>
Thanks all!<br>
Douglas E<br>
<br>
import sys<br>
from PyQt4 import * #QtCore, QtGui<br>
from Char1 import *<br>
<br>
class StartQT4(QtGui.QMainWindow):<br>
 &nbsp; &nbsp;count=0<br>
 &nbsp; &nbsp;dHP = 0<br>
 &nbsp; &nbsp;oldHP = 10<br>
 &nbsp; &nbsp;dST = 0<br>
 &nbsp; &nbsp;oldST = 10<br>
 &nbsp; &nbsp;def __init__(self, parent=None):<br>
 &nbsp; &nbsp; &nbsp; &nbsp;QtGui.QWidget.__init__(self, parent)<br>
 &nbsp; &nbsp; &nbsp; &nbsp;self.ui = Ui_MainWindow()<br>
 &nbsp; &nbsp; &nbsp; &nbsp;self.ui.setupUi(self)<br>
 &nbsp; &nbsp; &nbsp; &nbsp;QtCore.QObject.connect(self.ui.spinBox_DX,<br>
QtCore.SIGNAL(&quot;valueChanged(int)&quot;), self.label_DX_Cost_Set)<br>
 &nbsp; &nbsp; &nbsp; &nbsp;QtCore.QObject.connect(self.ui.spinBox_ST,<br>
QtCore.SIGNAL(&quot;valueChanged(int)&quot;), self.label_ST_Cost_Set)<br>
 &nbsp; &nbsp; &nbsp; &nbsp;QtCore.QObject.connect(self.ui.spinBox_HP,<br>
QtCore.SIGNAL(&quot;valueChanged(int)&quot;), self.adjust_HP)<br>
 &nbsp; &nbsp; &nbsp;# &nbsp;QtCore.QObject.connect(self.ui.spinBox_ST,QtCore.SIGNAL(&quot;valueChanged(int)&quot;),<br>
self.lineEdit_Basic_Lift_s)<br>
<br>
 &nbsp; &nbsp;def label_DX_Cost_Set(self, Num):<br>
 &nbsp; &nbsp; &nbsp; &nbsp;Num1= Num - self.dx<br>
 &nbsp; &nbsp; &nbsp; &nbsp;self.dx = Num<br>
 &nbsp; &nbsp; &nbsp; &nbsp;self.ui.label_DX_Cost.setNum(Num1)<br>
<br>
 &nbsp; &nbsp;def label_ST_Cost_Set(self, Num):<br>
 &nbsp; &nbsp; &nbsp; &nbsp;self.dST = Num - self.oldST<br>
 &nbsp; &nbsp; &nbsp; &nbsp;self.oldST = Num<br>
 &nbsp; &nbsp; &nbsp; &nbsp;self.ui.label_ST_Cost.setNum((Num-10)*20)<br>
 &nbsp; &nbsp; &nbsp; &nbsp;self.ui.lineEdit_Basic_Lift.setText(str(Num*Num/5))<br>
 &nbsp; &nbsp; &nbsp; &nbsp;#val = self.ui.spinBox_HP.value()<br>
 &nbsp; &nbsp; &nbsp; &nbsp;#self.ui.spinBox_HP.setValue(0)<br>
 &nbsp; &nbsp; &nbsp; &nbsp;self.adjust_HP(-99)<br>
<br>
 &nbsp; &nbsp;def adjust_HP(self, Num):<br>
 &nbsp; &nbsp; &nbsp; &nbsp;print &quot;Num, Count&quot;, Num, self.count<br>
 &nbsp; &nbsp; &nbsp; &nbsp;if Num==-99 :<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;self.ui.spinBox_HP.setValue(self.oldHP+self.dST)<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;print &quot;99 ds, oldHP&quot;, self.dST, self.oldHP<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;self.oldHP += self.dST<br>
 &nbsp; &nbsp; &nbsp; &nbsp;elif self.count == 0 :<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;self.count += 1<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;self.dHP = Num - self.oldHP<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;print &quot; ds, oldHP&quot;, self.dST, self.oldHP<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;self.oldHP = Num<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;self.ui.label_HP_Cost.setNum(Num+self.oldHP)<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;self.ui.spinBox_HP.setValue(self.oldHP+self.dHP)<br>
 &nbsp; &nbsp; &nbsp; &nbsp;else :<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;self.count = 0<br>
 &nbsp; &nbsp; &nbsp; &nbsp;print &quot;end&quot;<br>
<br>
if __name__ == &quot;__main__&quot;:<br>
 &nbsp; &nbsp;app = QtGui.QApplication(sys.argv)<br>
 &nbsp; &nbsp;myapp = StartQT4()<br>
 &nbsp; &nbsp;myapp.show()<br>
 &nbsp; &nbsp;sys.exit(app.exec_())<br>
<font color="#888888">--<br>
Douglas E Knapp<br>
<br>
Amazon Gift Cards; let them choose!!<br>
<a href="http://www.amazon.com/gp/product/B001078FFE?ie=UTF8&amp;tag=seattlebujinkand&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B001078FFE" target="_blank">http://www.amazon.com/gp/product/B001078FFE?ie=UTF8&amp;tag=seattlebujinkand&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B001078FFE</a><br>

_______________________________________________<br>
PyQt mailing list &nbsp; &nbsp;<a href="mailto:PyQt@riverbankcomputing.com">PyQt@riverbankcomputing.com</a><br>
<a href="http://www.riverbankcomputing.com/mailman/listinfo/pyqt" target="_blank">http://www.riverbankcomputing.com/mailman/listinfo/pyqt</a><br>
</font></blockquote></div><br>