2020-09-17 09:34:47 -03:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
|
*
|
2021-04-22 05:24:48 -03:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-09-17 09:34:47 -03:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "DesktopWidget.h"
|
|
|
|
|
#include <LibGUI/Painter.h>
|
|
|
|
|
|
|
|
|
|
namespace FileManager {
|
|
|
|
|
|
|
|
|
|
DesktopWidget::DesktopWidget()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
DesktopWidget::~DesktopWidget()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void DesktopWidget::paint_event(GUI::PaintEvent& event)
|
|
|
|
|
{
|
|
|
|
|
GUI::Painter painter(*this);
|
|
|
|
|
painter.add_clip_rect(event.rect());
|
|
|
|
|
painter.clear_rect(event.rect(), Color(0, 0, 0, 0));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|