<Dialog width = "1024" height = "768" template = "Movie/__init__.xml">

    <Text name = "StatusText" style = "StatusText">
        <text> LANG('Persistent Storage') </text>
    </Text>

    <ButtonList name = "buttonList" style = "ButtonList">
        <Item name = "biApply">
            <caption> LANG("Select") </caption>
            <bind event = "Click"> onApply </bind>
        </Item>
        
        <Item name = "biCancel">
            <caption> LANG("Cancel") </caption>
            <bind event = "Click"> onCancel </bind>
        </Item>
    </ButtonList>

    <FileBrowser name = "filebrowser" style = "ThumbBrowser">
        <cellSize> 165, int(165 * 0.75) </cellSize>
        <cellRegion> 30, 45 </cellRegion>
        <position> 380, 160, 1024 - 10, 768 - 120 </position>
        <!--<thumbnailview> True </thumbnailview>-->
        <filter> [] </filter>
        <!--<text_align> 'L' </text_align>
        <text_color>  255, 255, 255, 255  </text_color>
        <text_focus_color>  255, 0, 0, 255  </text_focus_color>
        <dock_side> LEFT, RIGHT, UP, DOWN </dock_side>-->
        <bind event = "Cell Focus Change"> onFileBrowserCellSelect </bind>
        <bind event = "Exceed path scope"> onFileBrowserTop </bind>
    </FileBrowser>

    <Spin name = "spin" style = "BrowserSpin"/>

    <EntryBrowser name = "entrybrowser" style = "FileBrowser">
        <spinCtrl> SELF("spin") </spinCtrl>
        <cellSize> 600, 100 </cellSize>
        <cellRegion> 30, 3 </cellRegion>      
        <bind event = "Cell Focus Change"> onEntryBrowserCellFocusChange </bind>
        <bind event = "Entry Select"> onEntryBrowserEntrySelect </bind>
    </EntryBrowser>


    <dirmap from = "buttonList" right = "filebrowser"/>
    <dirmap from = "filebrowser" left = "buttonList"/>

</Dialog>
