1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 21:17:44 +00:00

LibGfx: Rename from LibDraw :^)

This commit is contained in:
Andreas Kling 2020-02-06 12:04:00 +01:00
parent 11580babbf
commit 9ac94d393e
215 changed files with 291 additions and 291 deletions

View file

@ -26,7 +26,7 @@
#pragma once
#include <LibDraw/Size.h>
#include <LibGfx/Size.h>
#include <LibHTML/CSS/LengthBox.h>
class BoxModelMetrics {

View file

@ -26,7 +26,7 @@
#pragma once
#include <LibDraw/FloatRect.h>
#include <LibGfx/FloatRect.h>
#include <LibHTML/Layout/LayoutNode.h>
class LayoutBox : public LayoutNodeWithStyleAndBoxModelMetrics {

View file

@ -24,8 +24,8 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <LibDraw/Font.h>
#include <LibDraw/StylePainter.h>
#include <LibGfx/Font.h>
#include <LibGfx/StylePainter.h>
#include <LibGUI/GPainter.h>
#include <LibHTML/Layout/LayoutImage.h>

View file

@ -28,8 +28,8 @@
#include <AK/NonnullRefPtr.h>
#include <AK/Vector.h>
#include <LibDraw/FloatRect.h>
#include <LibDraw/Rect.h>
#include <LibGfx/FloatRect.h>
#include <LibGfx/Rect.h>
#include <LibHTML/CSS/StyleProperties.h>
#include <LibHTML/Layout/BoxModelMetrics.h>
#include <LibHTML/Layout/LayoutPosition.h>

View file

@ -27,7 +27,7 @@
#include <AK/StringBuilder.h>
#include <AK/Utf8View.h>
#include <LibCore/CDirIterator.h>
#include <LibDraw/Font.h>
#include <LibGfx/Font.h>
#include <LibGUI/GPainter.h>
#include <LibHTML/DOM/Document.h>
#include <LibHTML/Layout/LayoutBlock.h>

View file

@ -24,8 +24,8 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <LibDraw/Font.h>
#include <LibDraw/StylePainter.h>
#include <LibGfx/Font.h>
#include <LibGfx/StylePainter.h>
#include <LibGUI/GPainter.h>
#include <LibGUI/GWidget.h>
#include <LibHTML/Layout/LayoutWidget.h>

View file

@ -26,7 +26,7 @@
#pragma once
#include <LibDraw/FloatRect.h>
#include <LibGfx/FloatRect.h>
class LayoutNode;
class RenderingContext;