aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/moe/nea/firmament/gui/WFixedPanel.kt
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/kotlin/moe/nea/firmament/gui/WFixedPanel.kt')
-rw-r--r--src/main/kotlin/moe/nea/firmament/gui/WFixedPanel.kt32
1 files changed, 0 insertions, 32 deletions
diff --git a/src/main/kotlin/moe/nea/firmament/gui/WFixedPanel.kt b/src/main/kotlin/moe/nea/firmament/gui/WFixedPanel.kt
deleted file mode 100644
index 0fd724b..0000000
--- a/src/main/kotlin/moe/nea/firmament/gui/WFixedPanel.kt
+++ /dev/null
@@ -1,32 +0,0 @@
-/*
- * SPDX-FileCopyrightText: 2023 Linnea Gräf <nea@nea.moe>
- *
- * SPDX-License-Identifier: GPL-3.0-or-later
- */
-
-package moe.nea.firmament.gui
-
-import io.github.cottonmc.cotton.gui.widget.WPanel
-import io.github.cottonmc.cotton.gui.widget.WWidget
-
-class WFixedPanel() : WPanel() {
- var child: WWidget
- set(value) {
- children.clear()
- setSize(0, 0)
- value.parent = this
- children.add(value)
- }
- get() = children.single()
-
- constructor(child: WWidget) : this() {
- this.child = child
- }
-
- override fun layout() {
- setSize(0, 0)
- super.layout()
- }
-
- override fun canResize(): Boolean = false
-}