<Dialog width = "1024" height = "768" template="Movie/__init__.xml">
    <text name = "StatusText" style = "StatusText">
        <text> LANG('Custom TrueTheater Settings') </text>
    </text>

    <ButtonList name = "functionlist" style = "ButtonList">
        <Item name="biApply">
            <imageType> 'Red' </imageType>
            <caption> LANG('Apply') </caption>
            <bind event = "Click"> onApply </bind>
        </Item>
        <Item name="biCancel">
            <imageType> 'Green' </imageType>
            <caption> LANG('Cancel') </caption>
            <bind event = "Click"> onCancel </bind>
        </Item>
        <Item name="biLoadDefault">
            <imageType> 'Yellow' </imageType>
            <caption> LANG('Default settings') </caption>
            <bind event = "Click"> onLoadDefault </bind>
        </Item>
    </ButtonList>

    <ListPanel name = "settingPanel" style="FuncPanel">
    	<dock_side> 'LEFT', 'RIGHT' </dock_side>
    </ListPanel>

    <dirmap from = "functionlist" right = "settingPanel"/>
    <dirmap from = "settingPanel" left = "functionlist"/>    

</Dialog>
