X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=synfig-studio%2Fsrc%2Fgtkmm%2Frender.h;fp=synfig-studio%2Fsrc%2Fgtkmm%2Frender.h;h=0a6263a00c0bdaeb6d9bcd460a7d320a3cd41ef2;hb=a095981e18cc37a8ecc7cd237cc22b9c10329264;hp=0000000000000000000000000000000000000000;hpb=9459638ad6797b8139f1e9f0715c96076dbf0890;p=synfig.git diff --git a/synfig-studio/src/gtkmm/render.h b/synfig-studio/src/gtkmm/render.h new file mode 100644 index 0000000..0a6263a --- /dev/null +++ b/synfig-studio/src/gtkmm/render.h @@ -0,0 +1,104 @@ +/* === S Y N F I G ========================================================= */ +/*! \file gtkmm/render.h +** \brief Template Header +** +** $Id$ +** +** \legal +** Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley +** Copyright (c) 2007 Chris Moore +** +** This package is free software; you can redistribute it and/or +** modify it under the terms of the GNU General Public License as +** published by the Free Software Foundation; either version 2 of +** the License, or (at your option) any later version. +** +** This package 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. +** \endlegal +*/ +/* ========================================================================= */ + +/* === S T A R T =========================================================== */ + +#ifndef __SYNFIG_STUDIO_GTKMM_RENDER_H +#define __SYNFIG_STUDIO_GTKMM_RENDER_H + +/* === H E A D E R S ======================================================= */ + +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include + +#include + +#include "renddesc.h" + +/* === M A C R O S ========================================================= */ + +/* === T Y P E D E F S ===================================================== */ + +/* === C L A S S E S & S T R U C T S ======================================= */ + +namespace studio +{ +class AsyncRenderer; + +class RenderSettings : public Gtk::Dialog +{ + Gtk::Tooltips tooltips; + + etl::handle canvas_interface_; + Widget_RendDesc widget_rend_desc; + + Gtk::Entry entry_filename; + + Gtk::Adjustment adjustment_quality; + Gtk::SpinButton entry_quality; + + Gtk::Adjustment adjustment_antialias; + Gtk::SpinButton entry_antialias; + + Gtk::CheckButton toggle_single_frame; + + Gtk::OptionMenu optionmenu_target; + Gtk::Menu *menu_target; + + synfig::String target_name; + + void set_target(synfig::String name); + + etl::handle async_renderer; + +public: + RenderSettings(Gtk::Window& parent,etl::handle canvas_interface); + ~RenderSettings(); + void set_entry_filename(); + +private: + + void on_rend_desc_changed(); + void on_single_frame_toggle(); + void on_choose_pressed(); + void on_render_pressed(); + void on_cancel_pressed(); + + void on_finished(); +}; // END of class RenderSettings + +}; // END of namespace studio + + +/* === E N D =============================================================== */ + +#endif