mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-06 01:50:38 +00:00
Normalise terminology in UI code - don't call captures 'logs'
* Log is an overloaded term since it can also mean the debug log. We now consistently refer to capture files as capture files or just captures for short. The log is just for log messages and diagnostics. * The user-facing UI was mostly already consistent, but many of the public interfaces exposed to python needed to be renamed, and it made more sense just to make everything consistent.
This commit is contained in:
@@ -37,7 +37,7 @@ class QMenu;
|
||||
class DebugMessageItemModel;
|
||||
class DebugMessageFilterModel;
|
||||
|
||||
class DebugMessageView : public QFrame, public IDebugMessageView, public ILogViewer
|
||||
class DebugMessageView : public QFrame, public IDebugMessageView, public ICaptureViewer
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
@@ -47,9 +47,9 @@ public:
|
||||
|
||||
// IDebugMessageView
|
||||
QWidget *Widget() override { return this; }
|
||||
// ILogViewerForm
|
||||
void OnLogfileLoaded() override;
|
||||
void OnLogfileClosed() override;
|
||||
// ICaptureViewer
|
||||
void OnCaptureLoaded() override;
|
||||
void OnCaptureClosed() override;
|
||||
void OnSelectedEventChanged(uint32_t eventID) override {}
|
||||
void OnEventChanged(uint32_t eventID) override {}
|
||||
void RefreshMessageList();
|
||||
|
||||
Reference in New Issue
Block a user