mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 06:37:43 +00:00
Browser: Add window to inspect history
This commit is contained in:
parent
ebe925b7c0
commit
3454891d38
11 changed files with 259 additions and 0 deletions
|
@ -25,6 +25,7 @@ namespace Browser {
|
|||
class BrowserWindow;
|
||||
class InspectorWidget;
|
||||
class ConsoleWidget;
|
||||
class HistoryWidget;
|
||||
class StorageWidget;
|
||||
|
||||
class Tab final : public GUI::Widget {
|
||||
|
@ -86,6 +87,7 @@ public:
|
|||
|
||||
void show_console_window();
|
||||
void show_storage_inspector();
|
||||
void show_history_inspector();
|
||||
|
||||
DeprecatedString const& title() const { return m_title; }
|
||||
Gfx::Bitmap const* icon() const { return m_icon; }
|
||||
|
@ -125,6 +127,7 @@ private:
|
|||
RefPtr<InspectorWidget> m_dom_inspector_widget;
|
||||
RefPtr<ConsoleWidget> m_console_widget;
|
||||
RefPtr<StorageWidget> m_storage_widget;
|
||||
RefPtr<HistoryWidget> m_history_widget;
|
||||
RefPtr<GUI::Statusbar> m_statusbar;
|
||||
RefPtr<GUI::ToolbarContainer> m_toolbar_container;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue