mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-20 11:56:12 +00:00
ebe33ffe8e
* Add RFunction struct and get functions from json * Fix QRCore::cmdj * Add Analysis command line argument * Replace MainWindow::current_address with cursur address * Use Cursor Address in MemoryWidget, Change some more String addresses to RVA * FunctionsWidget cleanup * Use QTreeView in FunctionsWidget * Re-enabled Nested Functions Widget * Nested Functions Tree View with Model * FunctionsWidget font, only one function highlighted * Removed explicit font sizes * FunctionsWidget re-enabled sorting and context menu * FunctionWidget Quick Filter * FunctionsWidget show decoration for imports * QRCore lists refactoring, Imports Icon * FunctionModel: Fix emitting dataChanged * Fix some smaller things * Fixes and cleanups * Raise MemoryDock on seek from Omnibar * FunctionsWidget: Remove margins * FunctionWidget: Restore correct Tooltip font * FunctionsWidget: import icon in separate column
91 lines
2.0 KiB
XML
91 lines
2.0 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<ui version="4.0">
|
|
<class>StringsWidget</class>
|
|
<widget class="QDockWidget" name="StringsWidget">
|
|
<property name="geometry">
|
|
<rect>
|
|
<x>0</x>
|
|
<y>0</y>
|
|
<width>400</width>
|
|
<height>300</height>
|
|
</rect>
|
|
</property>
|
|
<property name="windowTitle">
|
|
<string notr="true">Strings</string>
|
|
</property>
|
|
<widget class="QWidget" name="dockWidgetContents">
|
|
<layout class="QVBoxLayout" name="verticalLayout">
|
|
<property name="leftMargin">
|
|
<number>0</number>
|
|
</property>
|
|
<property name="topMargin">
|
|
<number>0</number>
|
|
</property>
|
|
<property name="rightMargin">
|
|
<number>0</number>
|
|
</property>
|
|
<property name="bottomMargin">
|
|
<number>0</number>
|
|
</property>
|
|
<item>
|
|
<widget class="QTreeWidget" name="stringsTreeWidget">
|
|
<property name="sizePolicy">
|
|
<sizepolicy hsizetype="Expanding" vsizetype="Preferred">
|
|
<horstretch>0</horstretch>
|
|
<verstretch>0</verstretch>
|
|
</sizepolicy>
|
|
</property>
|
|
<property name="styleSheet">
|
|
<string notr="true">QTreeWidget::item
|
|
{
|
|
padding-left:10px;
|
|
padding-top: 1px;
|
|
padding-bottom: 1px;
|
|
border-left: 10px;
|
|
}
|
|
|
|
QTreeWidget::item:hover
|
|
{
|
|
background: rgb(242, 246, 248);
|
|
color: black;
|
|
}
|
|
|
|
QTreeWidget::item:selected
|
|
{
|
|
background: gray;
|
|
color: white;
|
|
}</string>
|
|
</property>
|
|
<property name="frameShape">
|
|
<enum>QFrame::NoFrame</enum>
|
|
</property>
|
|
<property name="lineWidth">
|
|
<number>0</number>
|
|
</property>
|
|
<property name="sortingEnabled">
|
|
<bool>true</bool>
|
|
</property>
|
|
<column>
|
|
<property name="text">
|
|
<string>Dummy</string>
|
|
</property>
|
|
</column>
|
|
<column>
|
|
<property name="text">
|
|
<string>Address</string>
|
|
</property>
|
|
</column>
|
|
<column>
|
|
<property name="text">
|
|
<string>Name</string>
|
|
</property>
|
|
</column>
|
|
</widget>
|
|
</item>
|
|
</layout>
|
|
</widget>
|
|
</widget>
|
|
<resources/>
|
|
<connections/>
|
|
</ui>
|