cutter/src/dialogs/GlibcHeapInfoDialog.ui
2021-07-16 13:48:10 +00:00

204 lines
5.6 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>GlibcHeapInfoDialog</class>
<widget class="QDialog" name="GlibcHeapInfoDialog">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>453</width>
<height>263</height>
</rect>
</property>
<property name="windowTitle">
<string>Dialog</string>
</property>
<layout class="QVBoxLayout" name="verticalLayout">
<item>
<layout class="QFormLayout" name="formLayout">
<item row="0" column="0">
<widget class="QLabel" name="label">
<property name="text">
<string>Base</string>
</property>
</widget>
</item>
<item row="0" column="1">
<widget class="QLineEdit" name="baseEdit">
<property name="toolTip">
<string>Base address of the chunk</string>
</property>
<property name="readOnly">
<bool>true</bool>
</property>
</widget>
</item>
<item row="1" column="0">
<widget class="QLabel" name="label_4">
<property name="text">
<string>Size</string>
</property>
</widget>
</item>
<item row="1" column="1">
<widget class="QLineEdit" name="sizeEdit">
<property name="toolTip">
<string>Size of the heap chunk including metadata</string>
</property>
<property name="readOnly">
<bool>false</bool>
</property>
</widget>
</item>
<item row="3" column="0">
<widget class="QLabel" name="label_2">
<property name="text">
<string>Fd</string>
</property>
</widget>
</item>
<item row="3" column="1">
<widget class="QLineEdit" name="fdEdit">
<property name="toolTip">
<string>Link to next free chunk in bin's linked list</string>
</property>
<property name="readOnly">
<bool>false</bool>
</property>
</widget>
</item>
<item row="4" column="0">
<widget class="QLabel" name="label_5">
<property name="text">
<string>Bk</string>
</property>
</widget>
</item>
<item row="4" column="1">
<widget class="QLineEdit" name="bkEdit">
<property name="toolTip">
<string>Link to previous free chunk in bin's linked list</string>
</property>
<property name="readOnly">
<bool>false</bool>
</property>
</widget>
</item>
<item row="5" column="1">
<widget class="QLineEdit" name="fdnsEdit">
<property name="toolTip">
<string>Link to next larger free chunk (only for large chunks)</string>
</property>
<property name="readOnly">
<bool>false</bool>
</property>
</widget>
</item>
<item row="5" column="0">
<widget class="QLabel" name="label_3">
<property name="text">
<string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Fd-nextsize&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
</property>
</widget>
</item>
<item row="6" column="0">
<widget class="QLabel" name="label_6">
<property name="text">
<string>Bk-nextsize</string>
</property>
</widget>
</item>
<item row="6" column="1">
<widget class="QLineEdit" name="bknsEdit">
<property name="toolTip">
<string>Link to next smaller free chunk (for large chunks)</string>
</property>
<property name="readOnly">
<bool>false</bool>
</property>
</widget>
</item>
<item row="2" column="1">
<widget class="QLineEdit" name="prevSizeEdit">
<property name="toolTip">
<string>Size of previous chunk (if free)</string>
</property>
<property name="readOnly">
<bool>false</bool>
</property>
</widget>
</item>
<item row="2" column="0">
<widget class="QLabel" name="label_7">
<property name="text">
<string>PrevSize</string>
</property>
</widget>
</item>
</layout>
</item>
<item>
<layout class="QHBoxLayout" name="horizontalLayout_2">
<item>
<widget class="QRadioButton" name="rbNMA">
<property name="toolTip">
<string>If the chunk was obtained from a non-main arena</string>
</property>
<property name="text">
<string>NON_MAIN_ARENA</string>
</property>
<property name="checkable">
<bool>true</bool>
</property>
<property name="autoExclusive">
<bool>false</bool>
</property>
</widget>
</item>
<item>
<widget class="QRadioButton" name="rbIM">
<property name="toolTip">
<string>The chunk was obtained with mmap()</string>
</property>
<property name="text">
<string>IS_MMAPED</string>
</property>
<property name="checkable">
<bool>true</bool>
</property>
<property name="autoExclusive">
<bool>false</bool>
</property>
</widget>
</item>
<item>
<widget class="QRadioButton" name="rbPI">
<property name="toolTip">
<string>Previous adjacent chunk is in use</string>
</property>
<property name="text">
<string>PREV_INUSE</string>
</property>
<property name="checkable">
<bool>true</bool>
</property>
<property name="autoExclusive">
<bool>false</bool>
</property>
</widget>
</item>
</layout>
</item>
<item>
<widget class="QPushButton" name="saveButton">
<property name="text">
<string>Save</string>
</property>
</widget>
</item>
</layout>
</widget>
<resources/>
<connections/>
</ui>