We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fecc4c7 commit 7b2e1fcCopy full SHA for 7b2e1fc
ui/splitter.h
@@ -74,6 +74,7 @@ class BINARYNINJAUIAPI Splitter: public QWidget
74
75
Qt::Orientation m_orientation;
76
int m_handleSize;
77
+ int m_minimumWidgetSize;
78
79
std::vector<SplitterWidget> m_widgets;
80
std::map<QString, SplitterWidgetSizing> m_sizing;
@@ -106,6 +107,9 @@ class BINARYNINJAUIAPI Splitter: public QWidget
106
107
Qt::Orientation orientation() const { return m_orientation; }
108
void setOrientation(Qt::Orientation orientation);
109
110
+ int minimumWidgetSize() const { return m_minimumWidgetSize; }
111
+ void setMinimumWidgetSize(int minimumSize);
112
+
113
QList<int> sizes() const;
114
void setSizes(const QList<int>& sizes);
115
0 commit comments