summaryrefslogtreecommitdiff
path: root/Libraries/LibGfx/ClassicWindowTheme.h
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2020-08-09 19:29:15 +0200
committerAndreas Kling <kling@serenityos.org>2020-08-09 19:29:15 +0200
commite7460b6fb41d61efcb701edbf38a53ebf103c5da (patch)
tree062a74f6a7c0b976ef1f6dae03fb9f1954253ba9 /Libraries/LibGfx/ClassicWindowTheme.h
parenta94be95e27227bd366cec121ef30ccae62513cc6 (diff)
downloadserenity-e7460b6fb41d61efcb701edbf38a53ebf103c5da.zip
WindowServer+LibGfx: Move normal window frame painting to a WindowTheme
This patch introduces the ClassicWindowTheme, which is our default theme implemented as a Gfx::WindowTheme subclass. In this initial cut, we move normal window frame painting and title bar metrics helpers out of WindowServer and into LibGfx. This will eventually allow us much greater flexibility with theming windows, and also makes it easier to build applications that want to render a window with a specific style for some reason. :^)
Diffstat (limited to 'Libraries/LibGfx/ClassicWindowTheme.h')
-rw-r--r--Libraries/LibGfx/ClassicWindowTheme.h58
1 files changed, 58 insertions, 0 deletions
diff --git a/Libraries/LibGfx/ClassicWindowTheme.h b/Libraries/LibGfx/ClassicWindowTheme.h
new file mode 100644
index 0000000000..f425bcfcac
--- /dev/null
+++ b/Libraries/LibGfx/ClassicWindowTheme.h
@@ -0,0 +1,58 @@
+/*
+ * 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 <LibGfx/WindowTheme.h>
+#include <LibGfx/Color.h>
+
+namespace Gfx {
+
+class ClassicWindowTheme final : public WindowTheme {
+public:
+ ClassicWindowTheme();
+ virtual ~ClassicWindowTheme() override;
+
+ virtual void paint_normal_frame(Painter&, WindowState, const IntRect& outer_rect, const IntRect& window_rect, const StringView& title, const Bitmap& icon, const Palette&, const IntRect& leftmost_button_rect) const override;
+ virtual void paint_notification_frame(Painter&, const IntRect&, const Palette&) const override;
+
+ virtual IntRect title_bar_rect(WindowType, const IntRect& window_rect, const Palette&) const override;
+ virtual IntRect title_bar_icon_rect(WindowType, const IntRect& window_rect, const Palette&) const override;
+ virtual IntRect title_bar_text_rect(WindowType, const IntRect& window_rect, const Palette&) const override;
+
+private:
+ struct FrameColors {
+ Color title_color;
+ Color border_color;
+ Color border_color2;
+ Color title_stripes_color;
+ Color title_shadow_color;
+ };
+
+ FrameColors compute_frame_colors(WindowState, const Palette&) const;
+};
+
+}