From a3bd7c35fae3006bf4e00466f70aa42548a49d70 Mon Sep 17 00:00:00 2001 From: Joel Holdsworth Date: Wed, 16 Apr 2008 22:59:46 +0100 Subject: [PATCH] Added 2 frames to the render dialog --- gui/src/dialogs/render.cpp | 7 ++++++- gui/src/dialogs/render.hpp | 4 ++++ 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/gui/src/dialogs/render.cpp b/gui/src/dialogs/render.cpp index 958b2d229..af6c5b631 100644 --- a/gui/src/dialogs/render.cpp +++ b/gui/src/dialogs/render.cpp @@ -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); diff --git a/gui/src/dialogs/render.hpp b/gui/src/dialogs/render.hpp index e1a501573..4e7a57d50 100644 --- a/gui/src/dialogs/render.hpp +++ b/gui/src/dialogs/render.hpp @@ -62,6 +62,10 @@ namespace dialogs { Label containerFormatLabel; ComboBox containerFormat; + Frame audioFrame; + + Frame videoFrame; + Button cancelButton; HBox renderButtonHBox;