mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-09-06 05:45:52 +00:00
Add MiniQtHelper functions for scrolling widgets
This commit is contained in:
@@ -182,6 +182,12 @@ struct MiniQtInvoker : UIThreadInvoker<IMiniQtHelper>
|
||||
return InvokeRetFunction<rdcstr>(&IMiniQtHelper::GetWidgetText, widget);
|
||||
}
|
||||
|
||||
void ScrollToTop(QWidget *widget) { InvokeVoidFunction(&IMiniQtHelper::ScrollToTop, widget); }
|
||||
void ScrollToBottom(QWidget *widget)
|
||||
{
|
||||
InvokeVoidFunction(&IMiniQtHelper::ScrollToBottom, widget);
|
||||
}
|
||||
|
||||
void SetWidgetFont(QWidget *widget, const rdcstr &font, int32_t fontSize, bool bold, bool italic)
|
||||
{
|
||||
InvokeVoidFunction(&IMiniQtHelper::SetWidgetFont, widget, font, fontSize, bold, italic);
|
||||
|
||||
Reference in New Issue
Block a user