コード例 #1
0
 def _onRestore(self):
     widgets = getWidgetsOfType(self, TangoConfigLineEdit)
     for w in widgets:
         param = str(w.text())
         if w.getValue() != param:
             w.setText(param)
コード例 #2
0
 def _onRestore(self):
     widgets = getWidgetsOfType(self, TangoConfigLineEdit)
     for w in widgets:
         param = str(w.text())
         if w.getValue() != param:
             w.setText(param)
コード例 #3
0
 def _onApply(self):
     widgets = getWidgetsOfType(self, TangoConfigLineEdit)
     for w in widgets:
         param = str(w.text())
         if w.getValue() != param:
             w.writeValue()
コード例 #4
0
 def _onApply(self):
     widgets = getWidgetsOfType(self, TangoConfigLineEdit)
     for w in widgets:
         param = str(w.text())
         if w.getValue() != param:
             w.writeValue()