File tree Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -2156,7 +2156,13 @@ extern "C"
2156
2156
// Sidebar colors
2157
2157
SidebarBackgroundColor,
2158
2158
SidebarInactiveIconColor,
2159
+ SidebarHoverIconColor,
2159
2160
SidebarActiveIconColor,
2161
+ SidebarFocusedIconColor,
2162
+ SidebarHoverBackgroundColor,
2163
+ SidebarActiveBackgroundColor,
2164
+ SidebarFocusedBackgroundColor,
2165
+ SidebarActiveIndicatorLineColor,
2160
2166
SidebarHeaderBackgroundColor, // Deprecated, has no effect (paints as QPalette::Window)
2161
2167
SidebarHeaderTextColor,
2162
2168
SidebarWidgetBackgroundColor,
Original file line number Diff line number Diff line change @@ -29,6 +29,10 @@ struct BINARYNINJAUIAPI SidebarIcon
29
29
QImage original;
30
30
QImage active;
31
31
QImage inactive;
32
+ QImage hover;
33
+ QImage focused;
34
+
35
+ const QImage& iconForState (bool isActive, bool isHovered, bool isFocused) const ;
32
36
33
37
static SidebarIcon generate (const QImage& src);
34
38
};
You can’t perform that action at this time.
0 commit comments