2008-04-09 00:21:05 +02:00
|
|
|
/*
|
2008-04-12 18:46:32 +02:00
|
|
|
render.hpp - Definition of the render output dialog
|
2010-12-17 23:28:49 +01:00
|
|
|
|
2008-04-11 23:04:39 +02:00
|
|
|
Copyright (C) Lumiera.org
|
|
|
|
|
2008, Joel Holdsworth <joel@airwebreathe.org.uk>
|
2010-12-17 23:28:49 +01:00
|
|
|
|
2008-04-11 23:04:39 +02: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.
|
|
|
|
|
|
2008-04-11 23:04:39 +02:00
|
|
|
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
|
|
|
|
2008-04-11 23:04:39 +02: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
|
|
|
|
2008-04-12 18:46:32 +02:00
|
|
|
*/
|
|
|
|
|
/** @file render.hpp
|
|
|
|
|
** This file contains the definition of the render output dialog
|
|
|
|
|
**
|
|
|
|
|
*/
|
2008-04-09 00:21:05 +02:00
|
|
|
|
2008-11-24 22:39:47 +01:00
|
|
|
#ifndef RENDER_HPP
|
|
|
|
|
#define RENDER_HPP
|
2008-04-10 16:36:21 +02:00
|
|
|
|
2008-11-24 18:38:26 +01:00
|
|
|
#include "../gtk-lumiera.hpp"
|
2008-04-11 23:04:39 +02:00
|
|
|
|
2008-04-12 18:46:32 +02:00
|
|
|
namespace gui {
|
|
|
|
|
namespace dialogs {
|
2008-04-09 00:21:05 +02:00
|
|
|
|
2008-11-24 18:12:47 +01:00
|
|
|
/**
|
|
|
|
|
* The defintion of render output dialog class
|
|
|
|
|
*/
|
2008-11-24 18:38:26 +01:00
|
|
|
class Render : public Gtk::Dialog
|
2008-11-24 18:12:47 +01:00
|
|
|
{
|
|
|
|
|
public:
|
2008-11-24 18:38:26 +01:00
|
|
|
Render(Gtk::Window &parent);
|
2008-04-16 23:50:01 +02:00
|
|
|
|
2008-11-24 18:12:47 +01:00
|
|
|
protected:
|
|
|
|
|
void on_button_browse();
|
2008-04-16 23:50:01 +02:00
|
|
|
|
2008-11-24 18:12:47 +01:00
|
|
|
protected:
|
2008-11-24 18:38:26 +01:00
|
|
|
Gtk::HBox outputFileHBox;
|
|
|
|
|
Gtk::Label outputFileLabel;
|
|
|
|
|
Gtk::Entry outputFilePathEntry;
|
2008-04-16 23:50:01 +02:00
|
|
|
|
2008-11-24 18:38:26 +01:00
|
|
|
Gtk::Image browseButtonImage;
|
|
|
|
|
Gtk::Button outputFileBrowseButton;
|
2008-04-16 23:50:01 +02:00
|
|
|
|
2008-11-24 18:38:26 +01:00
|
|
|
Gtk::HBox containerFormatHBox;
|
|
|
|
|
Gtk::Label containerFormatLabel;
|
|
|
|
|
Gtk::ComboBox containerFormat;
|
2008-12-30 13:35:58 +01:00
|
|
|
|
|
|
|
|
Gtk::Image renderButtonImage;
|
2008-04-16 23:50:01 +02:00
|
|
|
|
2008-11-24 18:38:26 +01:00
|
|
|
Gtk::Frame audioFrame;
|
|
|
|
|
Gtk::Frame videoFrame;
|
2008-11-24 18:12:47 +01:00
|
|
|
};
|
2008-04-10 16:36:21 +02:00
|
|
|
|
2008-04-12 18:46:32 +02:00
|
|
|
} // namespace dialogs
|
|
|
|
|
} // namespace gui
|
2008-04-11 23:04:39 +02:00
|
|
|
|
2008-11-24 22:39:47 +01:00
|
|
|
#endif // RENDER_HPP
|