layout management of snappy's clutter controls
----------------------------------------------

ui->control_box (fixed alignment bin)
[
	ui->control_bg
	main_box (vertical alignment box)
	[
		ui->control_title
		info_box (horizontal alignment box)
		[
			ui->control_play_toggle
			ui->pos_n_vol_box (vertical alignment box)
			[
				ui->control_seekbar (clutter actor draw_progressbar())

				middle_box (horizontal alignment box)
				[
					volume_box (horizontal alignment box)
					[
						ui->volume_low
						ui->vol_int (clutter actor draw_progressbar())
						ui->volume_high
					]

					ui->control_pos
				]

				bottom_box (horizontal alignment box)
				[
					ui->video_stream_toggle
					ui->audio_stream_toggle
				]
			]
			right_box (horizontal alignment box)
			[
				ui->subtitle_toggle
				ui->fullscreen_button
			]
		]
	]
]





for more information read:
http://docs.clutter-project.org/docs/clutter-cookbook/stable/layouts.html
