aboutsummaryrefslogtreecommitdiff
path: root/mod/src/main/resources/assets
diff options
context:
space:
mode:
Diffstat (limited to 'mod/src/main/resources/assets')
-rw-r--r--mod/src/main/resources/assets/dungeonsguide/gui/config/normalconfig.gui29
-rw-r--r--mod/src/main/resources/assets/dungeonsguide/gui/config/search/fromcategory.gui29
-rw-r--r--mod/src/main/resources/assets/dungeonsguide/gui/config/search/searchpage.gui31
3 files changed, 70 insertions, 19 deletions
diff --git a/mod/src/main/resources/assets/dungeonsguide/gui/config/normalconfig.gui b/mod/src/main/resources/assets/dungeonsguide/gui/config/normalconfig.gui
index 410b3423..3acb0660 100644
--- a/mod/src/main/resources/assets/dungeonsguide/gui/config/normalconfig.gui
+++ b/mod/src/main/resources/assets/dungeonsguide/gui/config/normalconfig.gui
@@ -49,25 +49,16 @@
<Text text=" By syeyoung" color="#FFFFFFFF"/>
</row>
</padding>
-<!-- <size width="5"/>-->
-<!-- <flexible>-->
-<!-- <align hAlign="END">-->
-<!-- <ConstrainedBox maxWidth="150">-->
-<!-- <size height="19">-->
-<!-- <TextField/>-->
-<!-- </size>-->
-<!-- </ConstrainedBox>-->
-<!-- </align>-->
-<!-- </flexible>-->
-<!-- <aspectRatio width="1" height="1">-->
-<!-- <ColorButton on:click="back" hPadding="1"-->
-<!-- backgroundColor="#FF1C376E" textColor="#FFFFFFFF"-->
-<!-- hoveredBackgroundColor="#FF1C5692" hoveredTextColor="#FFFFFFFF"-->
-<!-- disabledBackgroundColor="0" disabledTextColor="0"-->
-<!-- pressedBackgroundColor="#FF1D5F9C" pressedTextColor="#FFFFFFFF"-->
-<!-- text="?"-->
-<!-- />-->
-<!-- </aspectRatio>-->
+ <size width="5"/>
+ <flexible>
+ <align hAlign="END">
+ <ConstrainedBox maxWidth="150">
+ <size height="19">
+ <TextField bind:value="search"/>
+ </size>
+ </ConstrainedBox>
+ </align>
+ </flexible>
</row>
</bgcolor>
</size>
diff --git a/mod/src/main/resources/assets/dungeonsguide/gui/config/search/fromcategory.gui b/mod/src/main/resources/assets/dungeonsguide/gui/config/search/fromcategory.gui
new file mode 100644
index 00000000..d8bc1817
--- /dev/null
+++ b/mod/src/main/resources/assets/dungeonsguide/gui/config/search/fromcategory.gui
@@ -0,0 +1,29 @@
+
+<!--
+ ~ Dungeons Guide - The most intelligent Hypixel Skyblock Dungeons Mod
+ ~ Copyright (C) 2023 cyoung06 (syeyoung)
+ ~
+ ~ This program is free software: you can redistribute it and/or modify
+ ~ it under the terms of the GNU Affero General Public License as published
+ ~ by the Free Software Foundation, either version 3 of the License, or
+ ~ (at your option) any later version.
+ ~
+ ~ This program is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ ~ GNU Affero General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Affero General Public License
+ ~ along with this program. If not, see <https://www.gnu.org/licenses/>.
+ -->
+
+<col>
+ <padding top="5" left="5" right="5">
+ <row>
+ <Text text="From: " size="16" color="#FFFFFFFF"/>
+ <Text bind:text="category" size="16" color="#FFFFFF00"/>
+ </row>
+ </padding>
+ <col mainAlign="START" crossAlign="STRETCH" bind:_="items"/>
+ <size width="0" height="10"/>
+</col> \ No newline at end of file
diff --git a/mod/src/main/resources/assets/dungeonsguide/gui/config/search/searchpage.gui b/mod/src/main/resources/assets/dungeonsguide/gui/config/search/searchpage.gui
new file mode 100644
index 00000000..e21bc8e1
--- /dev/null
+++ b/mod/src/main/resources/assets/dungeonsguide/gui/config/search/searchpage.gui
@@ -0,0 +1,31 @@
+<!--
+ ~ Dungeons Guide - The most intelligent Hypixel Skyblock Dungeons Mod
+ ~ Copyright (C) 2023 cyoung06 (syeyoung)
+ ~
+ ~ This program is free software: you can redistribute it and/or modify
+ ~ it under the terms of the GNU Affero General Public License as published
+ ~ by the Free Software Foundation, either version 3 of the License, or
+ ~ (at your option) any later version.
+ ~
+ ~ This program is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ ~ GNU Affero General Public License for more details.
+ ~
+ ~ You should have received a copy of the GNU Affero General Public License
+ ~ along with this program. If not, see <https://www.gnu.org/licenses/>.
+ -->
+
+<bgcolor backgroundColor="#FF111111">
+ <SelectiveContainer bind:visible="resultShow">
+ <ScrollablePanel direction="VERTICAL" slot="show">
+ <padding top="5" left="5" bottom="5" right="5">
+ <col crossAlign="STRETCH" mainAlign="START" bind:_="items">
+ </col>
+ </padding>
+ </ScrollablePanel>
+ <align vAlign="CENTER" hAlign="CENTER" slot="hide">
+ <Text text="Empty Result" color="#FFFFFFFF" size="16"/>
+ </align>
+ </SelectiveContainer>
+</bgcolor> \ No newline at end of file