Widget for viewing binary data as hexadecimal values.
More...
|
| | __init__ (self, parent=None, *args, **kwargs) |
| | Initialise the BinaryEdit widget.
|
| |
| | get_value (self) |
| | Getter for the value property will return the original value set.
|
| |
| | set_value (self, bytearray value) |
| | Setter for the value property.
|
| |
|
| | value_changed = Signal() |
| | This signal is emitted whenever the value property changes.
|
| |
| | value |
| |
Widget for viewing binary data as hexadecimal values.
◆ __init__()
| gui.binary_edit.BinaryEdit.__init__ |
( |
| self, |
|
|
| parent = None, |
|
|
* | args, |
|
|
** | kwargs ) |
Initialise the BinaryEdit widget.
- Parameters
-
| parent | The optional parent Qt widget object. |
| args | Additional positional arguments passed onto the base class. |
| kwargs | Additional keyword arguments passed onto the base class. |
◆ get_value()
| gui.binary_edit.BinaryEdit.get_value |
( |
| self | ) |
|
Getter for the value property will return the original value set.
◆ set_value()
| gui.binary_edit.BinaryEdit.set_value |
( |
| self, |
|
|
bytearray | value ) |
Setter for the value property.
- Parameters
-
| value | The new value to be displayed by this widget. |
◆ _value
| gui.binary_edit.BinaryEdit._value = bytearray() |
|
protected |
◆ ui
| gui.binary_edit.BinaryEdit.ui = Ui_BinaryEdit() |
◆ value
| gui.binary_edit.BinaryEdit.value |
|
static |
Initial value:= Property(
type=bytearray,
fget=get_value,
fset=set_value,
user=True,
notify=value_changed,
doc="The value being displayed by this widget.",
)
◆ value_changed
| gui.binary_edit.BinaryEdit.value_changed = Signal() |
|
static |
This signal is emitted whenever the value property changes.
The documentation for this class was generated from the following file: