-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4671e80
commit c611636
Showing
16 changed files
with
96 additions
and
127 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
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,11 +1,10 @@ | ||
<Bindings> | ||
<Layer name="SI_KEYBINDINGS_CATEGORY_GENERAL"> | ||
<Category name="Furniture Catalogue"> | ||
<Action name="FURC_CONCAT_TO_TEXTBOX"> | ||
<Down> | ||
FurnitureCatalogueDevUtility_AddToTextbox() | ||
</Down> | ||
</Action> | ||
</Category> | ||
</Layer> | ||
<Bindings xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:noNamespaceSchemaLocation="http://sir.insidi.at/or/schema/esobindings.xsd"> | ||
<Layer name="SI_KEYBINDINGS_CATEGORY_GENERAL"> | ||
<Category name="Furniture Catalogue"> | ||
<Action name="FURC_CONCAT_TO_TEXTBOX"> | ||
<Down>FurnitureCatalogueDevUtility_AddToTextbox()</Down> | ||
</Action> | ||
</Category> | ||
</Layer> | ||
</Bindings> |
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
7 changes: 4 additions & 3 deletions
7
FurnitureCatalogue_DevUtility/FurnitureCatalogue_DevUtility.txt
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
File renamed without changes.
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,48 +1,48 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<GuiXml xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:noNamespaceSchemaLocation="http://sir.insidi.at/or/schema/esoui.xsd"> | ||
<Controls> | ||
<TopLevelControl name="FurCDevControl" clampedToScreen="true" movable="true" | ||
mouseEnabled="true" hidden="true" resizeHandleSize="10"> | ||
<Dimensions x="600" y="500" /> | ||
<Anchor point="CENTER" relativeTo="GUI_ROOT" relativePoint="CENTER" offsetX="-125" | ||
offsetY="-140" /> | ||
<Controls> | ||
<Backdrop name="$(parent)_BG" inherits="ZO_DefaultBackdrop"> | ||
<AnchorFill /> | ||
</Backdrop> | ||
<Button name="$(parent)_hide" inherits="ZO_ButtonBehaviorClickSound"> | ||
<OnClicked>FurCDevUtility.ToggleEditBox()</OnClicked> | ||
<Dimensions x="30" y="30" /> | ||
<Anchor point="TOPLEFT" relativeTo="$(parent)" relativePoint="TOPLEFT" | ||
offsetX="10" offsetY="10" /> | ||
<Textures | ||
normal="/esoui/art/buttons/decline_up.dds" | ||
pressed="/esoui/art/buttons/decline_down.dds" | ||
mouseOver="/esoui/art/buttons/decline_over.dds" | ||
/> | ||
</Button> | ||
<Button name="$(parent)_clear" inherits="ZO_ButtonBehaviorClickSound"> | ||
<OnClicked>FurCDevUtility.clearControl()</OnClicked> | ||
<Dimensions x="40" y="40" /> | ||
<Anchor point="TOPRIGHT" relativeTo="$(parent)" relativePoint="TOPRIGHT" | ||
offsetX="-10" offsetY="10" /> | ||
<Textures | ||
normal="/esoui/art/help/help_tabicon_feedback_up.dds" | ||
pressed="/esoui/art/help/help_tabicon_feedback_down.dds " | ||
mouseOver="/esoui/art/help/help_tabicon_feedback_over.dds" | ||
/> | ||
</Button> | ||
<EditBox name="$(parent)Box" | ||
inherits="ZO_DefaultEditMultiLine ZO_DefaultEditForDarkBackdrop"> | ||
<Anchor point="TOPLEFT" relativeTo="$(parent)" relativePoint="TOPLEFT" | ||
offsetX="50" offsetY="50" /> | ||
<Anchor point="BOTTOMRIGHT" relativeTo="$(parent)" relativePoint="BOTTOMRIGHT" | ||
offsetX="50" /> | ||
<OnFocusGained>FurCDevUtility.selectEntireTextbox()</OnFocusGained> | ||
<OnTextChanged>FurCDevUtility.onTextboxTextChanged()</OnTextChanged> | ||
</EditBox> | ||
</Controls> | ||
</TopLevelControl> | ||
</Controls> | ||
xsi:noNamespaceSchemaLocation="http://sir.insidi.at/or/schema/esoui.xsd"> | ||
<Controls> | ||
<TopLevelControl name="FurCDevControl" clampedToScreen="true" movable="true" mouseEnabled="true" | ||
hidden="true" resizeHandleSize="10"> | ||
<Dimensions x="600" y="500" /> | ||
<Anchor point="CENTER" relativeTo="GUI_ROOT" relativePoint="CENTER" offsetX="-125" | ||
offsetY="-140" /> | ||
<Controls> | ||
<Backdrop name="$(parent)_BG" inherits="ZO_DefaultBackdrop"> | ||
<AnchorFill /> | ||
</Backdrop> | ||
<Button name="$(parent)_hide" inherits="ZO_ButtonBehaviorClickSound"> | ||
<OnClicked>FurCDev.ToggleEditBox()</OnClicked> | ||
<Dimensions x="30" y="30" /> | ||
<Anchor point="TOPLEFT" relativeTo="$(parent)" relativePoint="TOPLEFT" offsetX="10" | ||
offsetY="10" /> | ||
<Textures | ||
normal="/esoui/art/buttons/decline_up.dds" | ||
pressed="/esoui/art/buttons/decline_down.dds" | ||
mouseOver="/esoui/art/buttons/decline_over.dds" | ||
/> | ||
</Button> | ||
<Button name="$(parent)_clear" inherits="ZO_ButtonBehaviorClickSound"> | ||
<OnClicked>FurCDev.clearControl()</OnClicked> | ||
<Dimensions x="40" y="40" /> | ||
<Anchor point="TOPRIGHT" relativeTo="$(parent)" relativePoint="TOPRIGHT" offsetX="-10" | ||
offsetY="10" /> | ||
<Textures | ||
normal="/esoui/art/help/help_tabicon_feedback_up.dds" | ||
pressed="/esoui/art/help/help_tabicon_feedback_down.dds " | ||
mouseOver="/esoui/art/help/help_tabicon_feedback_over.dds" | ||
/> | ||
</Button> | ||
<EditBox name="$(parent)Box" | ||
inherits="ZO_DefaultEditMultiLine ZO_DefaultEditForDarkBackdrop"> | ||
<Anchor point="TOPLEFT" relativeTo="$(parent)" relativePoint="TOPLEFT" offsetX="50" | ||
offsetY="50" /> | ||
<Anchor point="BOTTOMRIGHT" relativeTo="$(parent)" relativePoint="BOTTOMRIGHT" | ||
offsetX="50" /> | ||
<OnFocusGained>FurCDev.selectEntireTextbox()</OnFocusGained> | ||
<OnTextChanged>FurCDev.onTextboxTextChanged()</OnTextChanged> | ||
</EditBox> | ||
</Controls> | ||
</TopLevelControl> | ||
</Controls> | ||
</GuiXml> |
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
Oops, something went wrong.