diff options
author | syeyoung <cyoung06@naver.com> | 2023-02-05 02:15:59 +0900 |
---|---|---|
committer | syeyoung <cyoung06@naver.com> | 2023-02-05 02:15:59 +0900 |
commit | eaf7078a48ea04680e3743a1563c581c043fc3c5 (patch) | |
tree | 2cb8cbfc021f03d8c488d6fa93bc9273ed9891e3 /loader/src/main/resources/assets | |
parent | e1fbd8ba4588a36a82614719e1b18718ba0cbf38 (diff) | |
download | Skyblock-Dungeons-Guide-eaf7078a48ea04680e3743a1563c581c043fc3c5.tar.gz Skyblock-Dungeons-Guide-eaf7078a48ea04680e3743a1563c581c043fc3c5.tar.bz2 Skyblock-Dungeons-Guide-eaf7078a48ea04680e3743a1563c581c043fc3c5.zip |
- auto closing tooltip
Signed-off-by: syeyoung <cyoung06@naver.com>
Diffstat (limited to 'loader/src/main/resources/assets')
4 files changed, 117 insertions, 0 deletions
diff --git a/loader/src/main/resources/assets/dungeons_guide_loader/gui/fi b/loader/src/main/resources/assets/dungeons_guide_loader/gui/fi deleted file mode 100644 index e69de29b..00000000 --- a/loader/src/main/resources/assets/dungeons_guide_loader/gui/fi +++ /dev/null diff --git a/loader/src/main/resources/assets/dungeons_guide_loader/gui/tooltips/tooltip.gui b/loader/src/main/resources/assets/dungeons_guide_loader/gui/tooltips/tooltip.gui new file mode 100644 index 00000000..00ac2caf --- /dev/null +++ b/loader/src/main/resources/assets/dungeons_guide_loader/gui/tooltips/tooltip.gui @@ -0,0 +1,48 @@ +<!-- + ~ 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/>. + --> + +<UnconstrainedBox> + <size width="200"> + <padding top="2.5" bottom="2.5" right="5" left="5"> + <bgcolor backgroundColor="#FFFFFFFF"> + <padding left="1" right="1" top="1" bottom="1"> + <bgcolor backgroundColor="#FF111111"> + <padding left="5" right="5" top="5" bottom="5"> + <col crossAlign="START"> + <row crossAlign="END"> + <Text bind:text="title" bind:color="color" size="8"/> + <SelectiveContainer bind:visible="closeVisibility"> + <row slot="show"> + <size height="0" width="5"/> + <size height="10" width="10"> + <RoundButton text="X" on:click="close"/> + </size> + </row> + <size width="0" height="0" slot="hide"/> + </SelectiveContainer> + </row> + <size width="0" height="3"/> + <Text bind:text="description" color="#FFAAAAAA"/> + </col> + </padding> + </bgcolor> + </padding> + </bgcolor> + </padding> + </size> +</UnconstrainedBox>
\ No newline at end of file diff --git a/loader/src/main/resources/assets/dungeons_guide_loader/gui/tooltips/tooltipClosing.gui b/loader/src/main/resources/assets/dungeons_guide_loader/gui/tooltips/tooltipClosing.gui new file mode 100644 index 00000000..d28ff990 --- /dev/null +++ b/loader/src/main/resources/assets/dungeons_guide_loader/gui/tooltips/tooltipClosing.gui @@ -0,0 +1,63 @@ +<!-- + ~ 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/>. + --> + +<UnconstrainedBox> + <size width="200"> + <padding top="2.5" bottom="2.5" right="5" left="5"> + <bgcolor backgroundColor="#FFFFFFFF"> + <padding left="1" right="1" top="1" bottom="1"> + <bgcolor backgroundColor="#FF111111"> + <col crossAlign="STRETCH"> + <padding left="5" right="5" top="5" bottom="5"> + <col crossAlign="START"> + <row crossAlign="END"> + <flexible> + <Text bind:text="title" bind:color="color" size="8"/> + </flexible> + <SelectiveContainer bind:visible="closeVisibility"> + <row slot="show"> + <size height="0" width="5"/> + <size height="10" width="10"> + <RoundButton text="X" on:click="close"/> + </size> + </row> + <size width="0" height="0" slot="hide"/> + </SelectiveContainer> + </row> + <size width="0" height="3"/> + <Text bind:text="description" color="#FFAAAAAA"/> + </col> + </padding> + <measure bind:size="size"> + <size height="3"> + <bgcolor backgroundColor="#FFFFFFFF"> + <align hAlign="START" vAlign="CENTER"> + <size bind:width="width"> + <bgcolor backgroundColor="#FF1E4684"/> + </size> + </align> + </bgcolor> + </size> + </measure> + </col> + </bgcolor> + </padding> + </bgcolor> + </padding> + </size> +</UnconstrainedBox>
\ No newline at end of file diff --git a/loader/src/main/resources/assets/dungeons_guide_loader/gui/tooltips/tooltipHolder.gui b/loader/src/main/resources/assets/dungeons_guide_loader/gui/tooltips/tooltipHolder.gui new file mode 100644 index 00000000..5d4eaf97 --- /dev/null +++ b/loader/src/main/resources/assets/dungeons_guide_loader/gui/tooltips/tooltipHolder.gui @@ -0,0 +1,6 @@ +<align hAlign="END" vAlign="END"> + <padding bottom="2.5"> + <col mainAlign="END" crossAlign="END" bind:api="listApi"> + </col> + </padding> +</align> |