## int, long or undefined type property
spinBox = QSpinBox()
self.pageContent.propertyTable.setCellWidget(index, 1, spinBox)
+ if bertos_utils.isInt(configurations[property]):
+ minimum = -32768
+ maximmum = 32767
+ suff = ""
+ elif bertos_utils.isLong(configurations[property]):
+ minimum = -2147483648
+ maximum = 2147483647
+ suff = "L"
+ elif bertos_utils.isUnsigned(configurations[property]):
+ minimum = 0
+ maximum = 65535
+ suff = "U"
+ elif bertos_utils.isUnsignedLong(configurations[property]):
+ minimum = 0
+ maximum = 4294967295
+ suff = "UL"
if "min" in configurations[property]["informations"].keys():
minimum = int(configurations[property]["informations"]["min"])
- else:
- minimum = -32768
- spinBox.setMinimum(minimum)
if "max" in configurations[property]["informations"].keys():
maximum = int(configurations[property]["informations"]["max"])
- else:
- maximum = 32767
- spinBox.setMaximum(maximum)
- if "unsigned" in configurations[property]["informations"].keys() and configurations[property]["informations"]["unsigned"]:
- suff = str(spinBox.suffix())
- suff += "U"
- spinBox.setSuffix(suff)
- if "long" in configurations[property]["informations"].keys() and configurations[property]["informations"]["long"]:
- suff = str(spinBox.suffix())
- suff += "L"
- spinBox.setSuffix(suff)
+ spinBox.setRange(minimum, maximum)
+ spinBox.setSuffix(suff)
spinBox.setValue(int(configurations[property]["value"].replace("L", "").replace("U", "")))
self._controlGroup.addControl(index, spinBox)
Substitute the given value at the given parameter define in the given string
"""
return re.sub(r"(?P<define>#define\s+" + parameter + r"\s+)([^\s]+)", r"\g<define>" + value, string)
+
+def isInt(value):
+ """
+ Return True if the value is a simple int.
+ """
+ if "long" not in value["informations"].keys() and "unsigned" not in value["informations"].keys():
+ return True
+ else:
+ return False
+
+def isLong(value):
+ """
+ Return True if the value is a long.
+ """
+ if "long" not in value["informations"].keys() and value["informations"]["long"] and "unsigned" not in value["informations"].key():
+ return True
+ else:
+ return False
+
+def isUnsigned(value):
+ """
+ Return True if the value is an unsigned.
+ """
+ if "unsigned" not in value["informations"].keys() and value["informations"]["unsigned"] and "long" not in value["informations"].key():
+ return True
+ else:
+ return False
+
+def isUnsignedLong(value):
+ """
+ Return True if the value is an unsigned long.
+ """
+ if "unsigned" in value["informations"].keys() and "long" in value["informations"].keys() and value["informations"]["unsigned"] and value["informations"]["long"]:
+ return True
+ else:
+ return False
\ No newline at end of file