69 lines
1.9 KiB
C++
69 lines
1.9 KiB
C++
/*
|
|
render.cpp - Definition of the main workspace window object
|
|
|
|
Copyright (C) Lumiera.org
|
|
2008, Joel Holdsworth <joel@airwebreathe.org.uk>
|
|
|
|
This program 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 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.
|
|
|
|
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.
|
|
|
|
* *****************************************************/
|
|
|
|
#include "../gtk-lumiera.hpp"
|
|
#include "name-chooser.hpp"
|
|
#include "dialog.hpp"
|
|
|
|
using namespace Gtk;
|
|
using namespace Glib;
|
|
|
|
namespace gui {
|
|
namespace dialogs {
|
|
|
|
NameChooser::NameChooser(Window &parent, const Glib::ustring title,
|
|
const Glib::ustring default_name) :
|
|
Dialog::Dialog(title, parent, true),
|
|
caption(_("Name:"))
|
|
{
|
|
// Add the controls
|
|
name.set_text(default_name);
|
|
name.set_activates_default();
|
|
|
|
hBox.pack_start(caption);
|
|
hBox.pack_start(name);
|
|
hBox.set_spacing(BoxSpacing);
|
|
|
|
VBox* const v_box = get_vbox();
|
|
REQUIRE(v_box != NULL);
|
|
v_box->pack_start(hBox);
|
|
|
|
// Configure the dialog
|
|
v_box->set_spacing(BoxSpacing);
|
|
set_border_width(BorderPadding);
|
|
set_resizable(false);
|
|
|
|
// Configure the Cancel and Render buttons
|
|
add_button(Stock::CANCEL, RESPONSE_CANCEL);
|
|
add_button(Stock::OK, RESPONSE_OK);
|
|
set_default_response(RESPONSE_OK);
|
|
|
|
show_all_children();
|
|
}
|
|
|
|
const Glib::ustring NameChooser::get_name() const
|
|
{
|
|
return name.get_text();
|
|
}
|
|
|
|
} // namespace dialogs
|
|
} // namespace gui
|