Remove .gitignore do nothing is ignored.
[synfig.git] / synfig-studio / trunk / src / gtkmm / render.h
index 1d89e9c..0a6263a 100644 (file)
@@ -1,20 +1,22 @@
 /* === S Y N F I G ========================================================= */
-/*!    \file render.h
+/*!    \file gtkmm/render.h
 **     \brief Template Header
 **
-**     $Id: render.h,v 1.2 2005/01/10 08:13:44 darco Exp $
+**     $Id$
 **
 **     \legal
-**     Copyright (c) 2002 Robert B. Quattlebaum Jr.
+**     Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
+**     Copyright (c) 2007 Chris Moore
 **
-**     This software and associated documentation
-**     are CONFIDENTIAL and PROPRIETARY property of
-**     the above-mentioned copyright holder.
+**     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.
 **
-**     You may not copy, print, publish, or in any
-**     other way distribute this software without
-**     a prior written agreement with
-**     the copyright holder.
+**     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
 */
 /* ========================================================================= */
@@ -51,7 +53,7 @@
 namespace studio
 {
 class AsyncRenderer;
-       
+
 class RenderSettings : public Gtk::Dialog
 {
        Gtk::Tooltips tooltips;
@@ -62,10 +64,10 @@ class RenderSettings : public Gtk::Dialog
        Gtk::Entry entry_filename;
 
        Gtk::Adjustment adjustment_quality;
-       Gtk::SpinButton entry_quality;  
+       Gtk::SpinButton entry_quality;
 
        Gtk::Adjustment adjustment_antialias;
-       Gtk::SpinButton entry_antialias;        
+       Gtk::SpinButton entry_antialias;
 
        Gtk::CheckButton toggle_single_frame;
 
@@ -73,7 +75,7 @@ class RenderSettings : public Gtk::Dialog
        Gtk::Menu *menu_target;
 
        synfig::String target_name;
-       
+
        void set_target(synfig::String name);
 
        etl::handle<AsyncRenderer> async_renderer;
@@ -81,6 +83,7 @@ class RenderSettings : public Gtk::Dialog
 public:
        RenderSettings(Gtk::Window& parent,etl::handle<synfigapp::CanvasInterface> canvas_interface);
        ~RenderSettings();
+       void set_entry_filename();
 
 private:
 
@@ -89,10 +92,10 @@ private:
        void on_choose_pressed();
        void on_render_pressed();
        void on_cancel_pressed();
-       
+
        void on_finished();
 }; // END of class RenderSettings
-       
+
 }; // END of namespace studio