1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-23 18:15:06 +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:
Andreas Kling 2020-02-02 15:07:41 +01:00
parent 2d39da5405
commit c5bd9d4ed1
337 changed files with 5400 additions and 4816 deletions

View file

@ -33,11 +33,11 @@
#include <LibGUI/GWindow.h>
#include <stdio.h>
class GraphWidget final : public GWidget {
class GraphWidget final : public GUI::Widget {
C_OBJECT(GraphWidget)
public:
GraphWidget()
: GWidget(nullptr)
: GUI::Widget(nullptr)
{
start_timer(1000);
}
@ -59,9 +59,9 @@ private:
update();
}
virtual void paint_event(GPaintEvent& event) override
virtual void paint_event(GUI::PaintEvent& event) override
{
GPainter painter(*this);
GUI::Painter painter(*this);
painter.add_clip_rect(event.rect());
painter.fill_rect(event.rect(), Color::Black);
int i = m_cpu_history.capacity() - m_cpu_history.size();
@ -74,9 +74,9 @@ private:
}
}
virtual void mousedown_event(GMouseEvent& event) override
virtual void mousedown_event(GUI::MouseEvent& event) override
{
if (event.button() != GMouseButton::Left)
if (event.button() != GUI::MouseButton::Left)
return;
pid_t pid = fork();
if (pid < 0) {
@ -117,15 +117,15 @@ int main(int argc, char** argv)
return 1;
}
GApplication app(argc, argv);
GUI::Application app(argc, argv);
if (pledge("stdio shared_buffer accept proc exec rpath", nullptr) < 0) {
perror("pledge");
return 1;
}
auto window = GWindow::construct();
window->set_window_type(GWindowType::MenuApplet);
auto window = GUI::Window::construct();
window->set_window_type(GUI::WindowType::MenuApplet);
window->resize(30, 16);
auto widget = GraphWidget::construct();