summaryrefslogtreecommitdiff
path: root/Userland/Applications/Welcome/TextWidget.h
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2021-02-03 09:39:01 +0100
committerAndreas Kling <kling@serenityos.org>2021-02-03 10:20:17 +0100
commitc94392a1cc3eceddacf001bf37ccbd0180c103c1 (patch)
tree737e72eca3a5c08758d6dfe56469c41c7cbe9e82 /Userland/Applications/Welcome/TextWidget.h
parent36f6351edcee67963e80363f9f9f94a1d7db1919 (diff)
downloadserenity-c94392a1cc3eceddacf001bf37ccbd0180c103c1.zip
Applications: Remove "Welcome" application
This was a cute application for its time, but it's far too jokey and non-serious for how I'd like this project to treat itself.
Diffstat (limited to 'Userland/Applications/Welcome/TextWidget.h')
-rw-r--r--Userland/Applications/Welcome/TextWidget.h65
1 files changed, 0 insertions, 65 deletions
diff --git a/Userland/Applications/Welcome/TextWidget.h b/Userland/Applications/Welcome/TextWidget.h
deleted file mode 100644
index c4353096ff..0000000000
--- a/Userland/Applications/Welcome/TextWidget.h
+++ /dev/null
@@ -1,65 +0,0 @@
-/*
- * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are met:
- *
- * 1. Redistributions of source code must retain the above copyright notice, this
- * list of conditions and the following disclaimer.
- *
- * 2. Redistributions in binary form must reproduce the above copyright notice,
- * this list of conditions and the following disclaimer in the documentation
- * and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
- * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
- * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
- * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
- * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
- * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
- * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
- * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#pragma once
-
-#include <AK/String.h>
-#include <AK/Vector.h>
-#include <LibGUI/Frame.h>
-#include <LibGfx/TextAlignment.h>
-
-class TextWidget : public GUI::Frame {
- C_OBJECT(TextWidget);
-
-public:
- virtual ~TextWidget() override;
-
- String text() const { return m_text; }
- void set_text(const StringView&);
-
- Gfx::TextAlignment text_alignment() const { return m_text_alignment; }
- void set_text_alignment(Gfx::TextAlignment text_alignment) { m_text_alignment = text_alignment; }
-
- bool should_wrap() const { return m_should_wrap; }
- void set_should_wrap(bool should_wrap) { m_should_wrap = should_wrap; }
-
- int line_height() const { return m_line_height; }
- void set_line_height(int line_height) { m_line_height = line_height; }
-
- void wrap_and_set_height();
-
-private:
- explicit TextWidget(const StringView& text = {});
-
- virtual void paint_event(GUI::PaintEvent&) override;
- virtual void resize_event(GUI::ResizeEvent&) override;
-
- String m_text;
- Vector<String> m_lines;
- Gfx::TextAlignment m_text_alignment { Gfx::TextAlignment::Center };
- bool m_should_wrap { false };
- int m_line_height { 0 };
-};