mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 00:27:45 +00:00
LibGUI: Put all classes in the GUI namespace and remove the leading G
This took me a moment. Welcome to the new world of GUI::Widget! :^)
This commit is contained in:
parent
2d39da5405
commit
c5bd9d4ed1
337 changed files with 5400 additions and 4816 deletions
|
@ -27,10 +27,13 @@
|
|||
#include <LibGUI/GWidget.h>
|
||||
|
||||
class Document;
|
||||
class GTableView;
|
||||
class GTreeView;
|
||||
|
||||
class InspectorWidget final : public GWidget {
|
||||
namespace GUI {
|
||||
class TableView;
|
||||
class TreeView;
|
||||
}
|
||||
|
||||
class InspectorWidget final : public GUI::Widget {
|
||||
C_OBJECT(InspectorWidget)
|
||||
public:
|
||||
virtual ~InspectorWidget();
|
||||
|
@ -38,10 +41,10 @@ public:
|
|||
void set_document(Document*);
|
||||
|
||||
private:
|
||||
explicit InspectorWidget(GWidget* parent);
|
||||
explicit InspectorWidget(GUI::Widget* parent);
|
||||
|
||||
RefPtr<GTreeView> m_dom_tree_view;
|
||||
RefPtr<GTableView> m_style_table_view;
|
||||
RefPtr<GTableView> m_computed_style_table_view;
|
||||
RefPtr<GUI::TreeView> m_dom_tree_view;
|
||||
RefPtr<GUI::TableView> m_style_table_view;
|
||||
RefPtr<GUI::TableView> m_computed_style_table_view;
|
||||
RefPtr<Document> m_document;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue