コード例 #1
0
ファイル: text.py プロジェクト: Kleijwegt/odemis
 def _display_pretty(self):
     if self._number_value is None:
         str_val = u""
     elif self._number_value == 0 and self.unit not in units.IGNORE_UNITS:
         # Special case with 0: readable_str return just "0 unit", without
         # prefix. This is technically correct, but quite inconvenient and
         # a little strange when the typical value has a prefix (eg, nm, kV).
         # => use prefix of key_step (as it's a "small value")
         if self.key_step:
             _, prefix = units.get_si_scale(self.key_step)
         elif self.key_step_min:
             _, prefix = units.get_si_scale(self.key_step_min)
         else:
             prefix = ""
         str_val = "0 %s%s" % (prefix, self.unit)
     else:
         str_val = units.readable_str(self._number_value, self.unit,
                                      self.accuracy)
     # Get the length of the number, without the unit (number and unit are separated by a space)
     number_length = str_val.find(" ")
     if number_length < 0:  # No space found -> only numbers
         number_length = len(str_val)
     wx.TextCtrl.ChangeValue(self, str_val)
     # Select the number value
     wx.CallAfter(self.SetSelection, number_length, number_length)
コード例 #2
0
ファイル: text.py プロジェクト: delmic/odemis
 def _display_pretty(self):
     if self._number_value is None:
         str_val = u""
     elif self._number_value == 0 and self.key_step and self.unit not in units.IGNORE_UNITS:
         # Special case with 0: readable_str return just "0 unit", without
         # prefix. This is technically correct, but quite inconvenient and
         # a little strange when the typical value has a prefix (eg, nm, kV).
         # => use prefix of key_step (as it's a "small value")
         _, prefix = units.get_si_scale(self.key_step)
         str_val = "0 %s%s" % (prefix, self.unit)
     else:
         str_val = units.readable_str(self._number_value, self.unit, self.accuracy)
     # Get the length of the number (string length, minus the unit length)
     number_length = len(str_val.rstrip(string.ascii_letters + u" µ"))
     wx.TextCtrl.ChangeValue(self, str_val)
     # Select the number value
     wx.CallAfter(self.SetSelection, number_length, number_length)
コード例 #3
0
ファイル: text.py プロジェクト: thomasaarholt/odemis
 def _display_pretty(self):
     if self._number_value is None:
         str_val = u""
     elif self._number_value == 0 and self.key_step and self.unit not in units.IGNORE_UNITS:
         # Special case with 0: readable_str return just "0 unit", without
         # prefix. This is technically correct, but quite inconvenient and
         # a little strange when the typical value has a prefix (eg, nm, kV).
         # => use prefix of key_step (as it's a "small value")
         _, prefix = units.get_si_scale(self.key_step)
         str_val = "0 %s%s" % (prefix, self.unit)
     else:
         str_val = units.readable_str(self._number_value, self.unit,
                                      self.accuracy)
     # Get the length of the number (string length, minus the unit length)
     number_length = len(str_val.rstrip(string.ascii_letters + u" µ"))
     wx.TextCtrl.ChangeValue(self, str_val)
     # Select the number value
     wx.CallAfter(self.SetSelection, number_length, number_length)