1 /* === S Y N F I G ========================================================= */
2 /*! \file widget_filename.cpp
3 ** \brief Template File
8 ** Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
10 ** This package is free software; you can redistribute it and/or
11 ** modify it under the terms of the GNU General Public License as
12 ** published by the Free Software Foundation; either version 2 of
13 ** the License, or (at your option) any later version.
15 ** This package is distributed in the hope that it will be useful,
16 ** but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 ** General Public License for more details.
21 /* ========================================================================= */
23 /* === H E A D E R S ======================================================= */
32 #include <gtkmm/entry.h>
33 #include <gtkmm/button.h>
34 #include "widget_filename.h"
41 /* === U S I N G =========================================================== */
44 //using namespace etl;
45 //using namespace synfig;
46 using namespace studio;
48 /* === M A C R O S ========================================================= */
50 /* === G L O B A L S ======================================================= */
52 /* === P R O C E D U R E S ================================================= */
54 /* === M E T H O D S ======================================================= */
56 Widget_Filename::Widget_Filename()
58 entry_filename=manage(new Gtk::Entry());
59 button_choose=manage(new Gtk::Button(_("Find")));
61 pack_start(*entry_filename);
62 pack_start(*button_choose);
63 entry_filename->show();
64 button_choose->show();
66 button_choose->signal_clicked().connect(sigc::mem_fun(*this, &studio::Widget_Filename::on_button_choose_pressed));
67 //entry_filename->signal_value_changed().connect(sigc::mem_fun(*this, &studio::Widget_Filename::on_value_changed));
68 entry_filename->signal_activate().connect(sigc::mem_fun(*this, &studio::Widget_Filename::on_value_changed));
71 Widget_Filename::~Widget_Filename()
76 Widget_Filename::set_has_frame(bool x)
78 entry_filename->set_has_frame(x);
83 Widget_Filename::set_value(const std::string &data)
85 entry_filename->set_text(data);
89 Widget_Filename::get_value() const
93 return entry_filename->get_text();
97 throw string("Caught unknown exception");
102 Widget_Filename::on_value_changed()
104 signal_value_changed()();
108 Widget_Filename::on_button_choose_pressed()
110 string filename=entry_filename->get_text();
113 if(App::dialog_open_file(_("Choose File"), filename, MISC_DIR_PREFERENCE))
114 entry_filename->set_text(filename);