info: add more ui boilerplate and fixme comments

This commit is contained in:
Stefan Sauer 2010-10-18 17:38:32 +03:00
parent 2448bf8b80
commit 76fb0eafff

View file

@ -38,17 +38,26 @@ public class MediaInfo.Info : VBox
public Info ()
{
Label label;
// configure the view
set_homogeneous (false);
// add widgets
// FIXME: handle aspect ration (AspectFrame.ratio)
// FIXME: paint it black from the start
drawing_area = new DrawingArea ();
drawing_area.set_size_request (300, 150);
pack_start (drawing_area, true, true, 0);
uri = new Label ("");
// FIXME: some alignment issues with the strings
uri = new Label (null);
pack_start (uri, false, false, 0);
label = new Label (null);
label.set_markup("<b>Container</b>");
pack_start (label, false, false, 0);
show_all ();
// set up the gstreamer components