diff options
author | Stefan Sauer <ensonic@users.sf.net> | 2011-01-04 14:56:40 +0200 |
---|---|---|
committer | Stefan Sauer <ensonic@users.sf.net> | 2013-09-15 19:50:30 +0200 |
commit | 5e2ad304eb27017c53119b35a8d632469f3fc0f7 (patch) | |
tree | b826ab81b15bcfe44c8a4093e51f51d7838efb46 /mediainfo | |
parent | ba86fd992a250d23f344269f7d4f8f3c35d31635 (diff) |
mi-info: more ui layout planning
Diffstat (limited to 'mediainfo')
-rw-r--r-- | mediainfo/src/mi-info.vala | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/mediainfo/src/mi-info.vala b/mediainfo/src/mi-info.vala index 1b418e5..bb51b1d 100644 --- a/mediainfo/src/mi-info.vala +++ b/mediainfo/src/mi-info.vala @@ -116,7 +116,11 @@ public class MediaInfo.Info : VPaned table = new Table (8, 3, false); sw.add_with_viewport (table); - + + /* TODO: also use tabs for containers + * - this is needed for e.g. mpeg-ts or mp3 inside ape + * - we should move duration and mime-type out of the tabs + */ label = new Label (null); label.set_markup("<b>Container</b>"); label.set_alignment (0.0f, 0.5f); @@ -153,6 +157,10 @@ public class MediaInfo.Info : VPaned table.attach (duration, 1, 2, row, row+1, fill_exp, 0, 3, 1); row++; + /* TODO: if screen-height<600 use a *single* notebook for both audio and + * video streams + * - this needs a bit of cleverness when switching streams + */ label = new Label (null); label.set_markup("<b>Video Streams</b>"); label.set_alignment (0.0f, 0.5f); |