<?xml version="1.0" encoding="UTF-8"?>
<!--
    DBGSKShapeNode.inspector
    DebuggerUI

    Copyright 2017 Apple Inc. All rights reserved.
-->

<slice>
    <section>
        <sliver title="Stroke Texture">
            <property type="dbg-image"
            placeholder="Loading…"
            allowsNilValues="true"
            keyPath="inspectedObjectsController.selection.object.strokeTexture" />
        </sliver>
        <sliver title="Stroke Color">
            <property type="dbg-color"
            keyPath="inspectedObjectsController.selection.object.strokeColor" />
        </sliver>
        <sliver title="Stroke Shader">
            <property type="string"
            placeholder="No shader"
            keyPath="inspectedObjectsController.selection.object.strokeShader"
            allowsNilValues="true"
            editable="false"/>
        </sliver>
    </section>
    <section>
        <sliver title="Fill Texture">
            <property type="dbg-image"
            placeholder="Loading…"
            allowsNilValues="true"
            keyPath="inspectedObjectsController.selection.object.fillTexture" />
        </sliver>
        <sliver title="Fill Color">
            <property type="dbg-color"
            keyPath="inspectedObjectsController.selection.object.fillColor" />
        </sliver>
        <sliver title="Fill Shader">
            <property type="string"
            placeholder="No shader"
            keyPath="inspectedObjectsController.selection.object.fillShader"
            allowsNilValues="true"
            editable="false"/>
        </sliver>
    </section>
    <section>
        <sliver title="Line Width">
            <property type="string"
            formatStyle="decimal"
            keyPath="inspectedObjectsController.selection.object.lineWidth"
            editable="false"/>
        </sliver>
        <sliver title="Glow Width">
            <property type="string"
            formatStyle="decimal"
            keyPath="inspectedObjectsController.selection.object.glowWidth"
            editable="false"/>
        </sliver>
        <sliver title="Blend Mode">
            <property type="dbg-enumeration"
                keyPath="inspectedObjectsController.selection.object.blendMode">
                <option-group>
                    <option title="Alpha" value="0"/>
                    <option title="Add" value="1"/>
                    <option title="Subtract" value="2"/>
                    <option title="Multiply" value="3"/>
                    <option title="MultiplyX2" value="4"/>
                    <option title="Screen" value="5"/>
                    <option title="Replace" value="6"/>
                </option-group>
            </property>
        </sliver>
    </section>
    <section>
        <sliver title="Antialiased">
            <property type="dbg-enumeration" placeholder="Loading…" keyPath="inspectedObjectsController.selection.object.antialiased">
                <option-group>
                    <option title="Yes" value="1" />
                    <option title="No" value="0" />
                </option-group>
            </property>
        </sliver>
    </section>
</slice>
