-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #850 from dscarpac/doom-helper
Added color / font to Doom counter XML
- Loading branch information
Showing
3 changed files
with
33 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,26 @@ | ||
<Defaults> | ||
<Panel rotation="0 0 180"></Panel> | ||
<ToggleButton class="optionButton" colors="#50e610|#f2d82e|#f2d82e" fontSize="45" isOn="0" textAlignment="MiddleLeft" padding="30 30 0 0"></ToggleButton> | ||
<Button class="optionButton" fontSize="64" isOn="0" textAlignment="MiddleLeft" padding="20 20 0 0"></Button> | ||
<Button font="font_teutonic-arkham" colors="#88e3cf|#4f8478|#303836"></Button> | ||
</Defaults> | ||
|
||
<Panel id="Buttons" offsetXY="0 285"> | ||
<TableLayout height="150" width="500" cellSpacing="10"> | ||
<TableLayout height="150" width="545" cellSpacing="10"> | ||
<Row> | ||
<Cell columnSpan="3"> | ||
<Button onClick="startReset" fontSize="80">Reset</Button> | ||
<Button onClick="startReset" fontSize="125">Reset</Button> | ||
</Cell> | ||
<Cell> | ||
<ToggleButton onClick="toggleOptions" fontSize="55">☰</ToggleButton> | ||
<Button onClick="toggleOptions" fontSize="65">☰</Button> | ||
</Cell> | ||
</Row> | ||
</TableLayout> | ||
</Panel> | ||
|
||
<Panel id="Options" offsetXY="0 535" active="false" showAnimation="Grow" hideAnimation="Shrink"> | ||
<VerticalLayout height="300" width="500" spacing="10" childAlignment="MiddleCenter"> | ||
<ToggleButton class="optionButton" id="optionAgenda" onClick="optionClick(Agenda)">Doom on Agenda</ToggleButton> | ||
<ToggleButton class="optionButton" id="optionPlayarea" onClick="optionClick(Playarea)">Doom in Playarea</ToggleButton> | ||
<ToggleButton class="optionButton" id="optionPlayermats" onClick="optionClick(Playermats)">Doom on Playermats</ToggleButton> | ||
<Panel id="Options" offsetXY="0 545" active="false" showAnimation="Grow" hideAnimation="Shrink"> | ||
<VerticalLayout height="300" width="545" spacing="10" childAlignment="MiddleCenter"> | ||
<Button class="optionButton" id="optionAgenda" text="☑ Doom on Agenda" onClick="optionClick(Agenda)"></Button> | ||
<Button class="optionButton" id="optionPlayarea" text="☑ Doom in Play Area" onClick="optionClick(Playarea)"></Button> | ||
<Button class="optionButton" id="optionPlayermats" text="☑ Doom on Playermats" onClick="optionClick(Playermats)"></Button> | ||
</VerticalLayout> | ||
</Panel> |