[Summary] Progressing TRACKS specific import dialog.

This commit is contained in:
VKamyshniy 2015-01-30 03:26:07 +02:00
parent 00b61255ac
commit b84591302f

View file

@ -0,0 +1,185 @@
<?xml version="1.0" encoding="UTF-8"?>
<Dialog title="Tracks Live - Add Existing Media" CACHEIT="false">
<style name="generic_control"
winfont ="Arial Bold 10"
macfont ="Helvetica Bold 10"
fgnormal="#6F6F6F"
bgnormal="#6C6C6C"
fgactive="#BFBFBF"
bgactive="#454545"/>
<style name="generic_label"
style="generic_control"
box.expand="true"
box.fill="true"
horzalignment="end"/>
<style name="generic_button"
style="generic_control"
bgnormal="#CACAC5"
fgactive="#EDECE8"
bgactive="#6D6E72"
width="80"
height="22"/>
<style name="generic_dropdown"
style="generic_button"
fgnormal="#C1C1C1"
textcolornormal="#C1C1C1"
bgnormal="#6C6C6C"
normalicon="dropdown_90x20"
activeicon="dropdown_90x20_active"
inactiveicon="dropdown_90x20_inactive"
width="90"
height="20"
horzalignment="start"/>
<style name="generic_dropdown_menu"
style="generic_dropdown"
height="-1"
width="-1"/>
<style name="topbar_dropdown"
bgnormal="#10474b"
fgdisabled="#335b63"
fgnormal="#ffffff"
fgactive="#ffffff"
fghover="#ffffff"
winfont ="Arial 10"
macfont ="Helvetica 10"
width="63"
height="18"/>
<style name="topbar_dropdown_menu"
bgnormal="#43919A"
fgnormal="#ffffff"
fgactive="#ffffff"
fghover="#ffffff"
winfont ="Arial Bold 9"
macfont ="Helvetica 10"/>
<HBox spacing="10" borderwidth="10">
<Dropdown id="display_format_dropdown"
style="topbar_dropdown"
x="200"
y="28"
normalicon="topbar_button"
activeicon="topbar_button_active"
inactiveicon="topbar_button">
<Label style="topbar_dropdown_menu" text="The Drop Down" state="disabled"
baseinactive="#ff0000" usemarkup="true"/>
<DropdownMenu style="topbar_dropdown_menu">
<DropdownItem style="topbar_dropdown_menu"
title="Skip Ruler"
horzalignment="start"/>
<DropdownItem style="topbar_dropdown_menu"
title="Skip Ruler Again"
horzalignment="start"
state="disabled"/>
</DropdownMenu>
</Dropdown>
<Dropdown id="display_format_dropdown"
style="topbar_dropdown"
x="200"
y="28"
normalicon="topbar_button"
activeicon="topbar_button_active"
inactiveicon="topbar_button">
<Label style="topbar_dropdown_menu" text="The Drop Down"/>
<DropdownMenu style="topbar_dropdown_menu">
<DropdownItem style="topbar_dropdown_menu"
title="Skip Ruler"
horzalignment="start"/>
</DropdownMenu>
</Dropdown>
</HBox>
<EventBox bgnormal="#EDECE8">
<VBox borderwidth="10"
spacing="10">
<VBox spacing="10">
<HBox spacing="5">
<Label style="generic_label"
text="Add files as"/>
<Dropdown id="add_as_dropdown"
style="generic_dropdown">
<HBox>
<VBox width="5"/>
<Label style="generic_dropdown_menu"/>
</HBox>
<DropdownMenu style="generic_dropdown_menu">
<DropdownItem style="generic_dropdown_menu" title="new tracks" data="1"/>
<DropdownItem style="generic_dropdown_menu" title="region list" data="2"/>
<DropdownItem style="generic_dropdown_menu" title="new tape tracks" data="3"/>
</DropdownMenu>
</Dropdown>
</HBox>
<HBox spacing="5">
<Label style="generic_label"
text="Insert at"/>
<Dropdown id="insert_at_dropdown"
style="generic_dropdown">
<HBox>
<VBox width="5"/>
<Label style="generic_dropdown_menu"/>
</HBox>
<DropdownMenu style="generic_dropdown_menu">
<DropdownItem style="generic_dropdown_menu" title="file timestamp" data="0"/>
<DropdownItem style="generic_dropdown_menu" title="edit point" data="1"/>
<DropdownItem style="generic_dropdown_menu" title="playhead" data="2"/>
<DropdownItem style="generic_dropdown_menu" title="session start" data="3"/>
</DropdownMenu>
</Dropdown>
</HBox>
<HBox spacing="5">
<Label style="generic_label"
text="Mapping"/>
<Dropdown id="mapping_dropdown"
style="generic_dropdown">
<HBox>
<VBox width="5"/>
<Label style="generic_dropdown_menu"/>
</HBox>
<DropdownMenu style="generic_dropdown_menu">
<DropdownItem style="generic_dropdown_menu" title="new tracks" data="0"/>
<DropdownItem style="generic_dropdown_menu" title="region list" data="2"/>
<DropdownItem style="generic_dropdown_menu" title="new tape tracks" data="3"/>
</DropdownMenu>
</Dropdown>
</HBox>
<HBox spacing="5">
<Label style="generic_label"
text="Conversion quality"/>
<Dropdown id="quality_dropdown"
style="generic_dropdown">
<HBox>
<VBox width="5"/>
<Label style="generic_dropdown_menu"/>
</HBox>
<DropdownMenu style="generic_dropdown_menu">
<DropdownItem style="generic_dropdown_menu" title="Best" data="0"/>
<DropdownItem style="generic_dropdown_menu" title="Good" data="1"/>
<DropdownItem style="generic_dropdown_menu" title="Quick" data="2"/>
<DropdownItem style="generic_dropdown_menu" title="Fast" data="3"/>
<DropdownItem style="generic_dropdown_menu" title="Fastest" data="4"/>
</DropdownMenu>
</Dropdown>
</HBox>
<HBox spacing="5">
<Label style="generic_label"
text="Copy files to session"/>
<HBox style="generic_dropdown">
<Iconbutton id="copy_to_session_button"
width="20"
height="20"
normalicon="waves_darker_check_box"
activeicon="waves_darker_check_box_active"
toggleable="true"/>
</HBox>
</HBox>
</VBox>
<HBox spacing="10" >
<Button id="import_button"
style="generic_button"
box.pack="end"
text="Import"/>
<Button id="cancel_button"
style="generic_button"
box.pack="end"
text="Cancel"/>
</HBox>
</VBox>
</EventBox>
</Dialog>