awtk/design/default/ui/folder_chooser.xml
2022-12-17 08:19:38 +08:00

25 lines
1.3 KiB
XML

<dialog anim_hint="popup" theme="file_browser" text= "Choose..." w="100%" h="100%">
<file_browser_view x="0" y="0" w="100%" h="100%" init_dir="./" even_item_style="even_clickable" odd_item_style="odd_clickable">
<list_view x="0" y="0" w="100%" h="-60" item_height="40">
<scroll_view name="container" x="0" y="0" w="100%" h="100%">
<list_item name="return_up" style="odd_clickable" children_layout="default(rows=1,cols=0)">
<image name="icon" draw_type="icon" w="30" image="return_up" />
<label name="name" w="30" tr_text="Up" />
</list_item>
<list_item name="file" style="odd_clickable" focusable="true" children_layout="default(rows=1,cols=0)">
<image name="icon" draw_type="icon" w="30" image="file" />
<label name="name" w="-30" text="" />
</list_item>
<list_item name="folder" style="odd_clickable" focusable="true" children_layout="default(rows=1,cols=0)">
<image name="icon" draw_type="icon" w="30" image="folder" />
<label name="name" w="-30" text="" />
</list_item>
</scroll_view>
<scroll_bar_m name="bar" x="right" y="0" w="6" h="100%" value="0" />
</list_view>
<button name="ok" x="c:-80" y="bottom:10" w="80" h="30" text="OK" />
<button name="cancel" x="c:80" y="bottom:10" w="80" h="30" text="Cancel" />
</file_browser_view>
</dialog>