Added 2 frames to the render dialog

This commit is contained in:
Joel Holdsworth 2008-04-16 22:59:46 +01:00
parent e59d3b6e35
commit a3bd7c35fa
2 changed files with 10 additions and 1 deletions

View file

@ -38,7 +38,9 @@ namespace dialogs {
containerFormatLabel(_("Container Format:")),
cancelButton(Stock::CANCEL),
renderButtonImage(StockID(Stock::APPLY), ICON_SIZE_BUTTON),
renderButtonLabel(_("_Render"), true)
renderButtonLabel(_("_Render"), true),
audioFrame(_("Audio")),
videoFrame(_("Video"))
{
VBox *v_box = get_vbox();
g_assert(v_box != NULL);
@ -61,6 +63,9 @@ namespace dialogs {
containerFormatHBox.set_spacing(4);
v_box->pack_start(containerFormatHBox, PACK_SHRINK);
v_box->pack_start(audioFrame);
v_box->pack_start(videoFrame);
// Configure the dialog
v_box->set_spacing(4);
set_border_width(5);

View file

@ -62,6 +62,10 @@ namespace dialogs {
Label containerFormatLabel;
ComboBox containerFormat;
Frame audioFrame;
Frame videoFrame;
Button cancelButton;
HBox renderButtonHBox;