aboutsummaryrefslogtreecommitdiff
path: root/src/main/resources/assets/firmament/gui/config/main.xml
blob: a5fc245c5df22577425a8d3e64b33057e6921082 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?xml version="1.0" encoding="UTF-8" ?>

<!--
SPDX-FileCopyrightText: 2023 Linnea Gräf <nea@nea.moe>

SPDX-License-Identifier: GPL-3.0-or-later
-->

<Root xmlns="http://notenoughupdates.org/moulconfig"
      xmlns:firm="http://firmament.nea.moe/moulconfig">
    <Center>
        <Panel background="VANILLA" insets="10">
            <Column>
                <Text text="Firmament Config"/>
                <ScrollPanel width="400" height="300">
                    <Array data="@configs">
                        <firm:Fixed width="380" height="30">
                            <Panel background="VANILLA">
                                <Center>
                                    <Row>
                                        <Center>
                                            <Text text="@name"/>
                                        </Center>
                                        <firm:Button onClick="@openEditor">
                                            <Text text="Edit"/>
                                        </firm:Button>
                                    </Row>
                                </Center>
                            </Panel>
                        </firm:Fixed>
                    </Array>
                </ScrollPanel>
            </Column>
        </Panel>
    </Center>
</Root>