lumiera_/src/gui/dialog/render.hpp

71 lines
1.8 KiB
C++
Raw Normal View History

2008-04-09 00:21:05 +02:00
/*
2015-01-07 00:53:03 +01:00
RENDER.hpp - dialog to define render output
2010-12-17 23:28:49 +01:00
Copyright (C) Lumiera.org
2008, Joel Holdsworth <joel@airwebreathe.org.uk>
2010-12-17 23:28:49 +01:00
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License as
2010-12-17 23:28:49 +01:00
published by the Free Software Foundation; either version 2 of
the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
2010-12-17 23:28:49 +01:00
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
2010-12-17 23:28:49 +01:00
*/
/** @file render.hpp
** Dialog to set up a renter process and define output name and format.
**
*/
2008-04-09 00:21:05 +02:00
2015-01-07 00:53:03 +01:00
#ifndef GUI_DIALOG_RENDER_H
#define GUI_DIALOG_RENDER_H
2008-04-10 16:36:21 +02:00
#include "gui/gtk-lumiera.hpp"
namespace gui {
namespace dialog {
2008-12-30 13:35:58 +01:00
2015-01-07 00:53:03 +01:00
/**
* A dialog to choose render output format and name
*/
class Render
: public Gtk::Dialog
{
Gtk::HBox outputFileHBox_;
Gtk::Label outputFileLabel_;
Gtk::Entry outputFilePathEntry_;
2015-01-07 00:53:03 +01:00
Gtk::Image browseButtonImage_;
Gtk::Button outputFileBrowseButton_;
2015-01-07 00:53:03 +01:00
Gtk::HBox containerFormatHBox_;
Gtk::Label containerFormatLabel_;
Gtk::ComboBox containerFormat_;
2015-01-07 00:53:03 +01:00
Gtk::Image renderButtonImage_;
2015-01-07 00:53:03 +01:00
Gtk::Frame audioFrame_;
Gtk::Frame videoFrame_;
2015-01-07 00:53:03 +01:00
public:
Render (Gtk::Window& parent);
private:
void on_button_browse();
};
}} // namespace gui::dialog
#endif /*GUI_DIALOG_RENDER_H*/