Skip to content
  • Robert M. O'Bara's avatar
    ENH: Adding Path support for Item Views · 7817bd28
    Robert M. O'Bara authored
    - AttributeItemInfo has been renamed to qtAttributeItemInfo
    - You can now refer to items within an Attribute via a path
    
    ```xml
      <Views>
        <View Type="Instanced" Title="Grammar Test" TopLevel="true">
          <InstancedAttributes>
            <Att Name="Test Attribute" Type="test">
              <ItemViews>
                <View Item="a" Type="Default" Option="SpinBox"/>
                <View Path="/b" ReadOnly="true"/>
                <View Path="/c/d" FixedWidth="20"/>
                <View Path="/c/e" Option="SpinBox"/>
                <View Path="/f/f-a" Option="SpinBox"/>
                <View Path="/f/f-b" FixedWidth="10"/>
                <View Path="/f/f-c/f.d" FixedWidth="0"/>
                <View Path="/f/f-c/f.e" Option="SpinBox"/>
              </ItemViews>
            </Att>
          </InstancedAttributes>
        </View>
      </Views>
    ```
    7817bd28