/** * \file GnomeBase.C * This file is part of LyX, the document processor. * Licence details can be found in the file COPYING. * * \author Baruch Even * * Full author contact details are available in file CREDITS. */ #include #include "GnomeBase.h" #include "debug.h" #include "support/filetools.h" #include "ControlButtons.h" #include #include GnomeBase::GnomeBase(string const & name) : ViewBase(), updating_(false), file_(name + ".glade"), title_(name), widget_name_(name), xml_(0), dialog_(0) { loadXML(); } GnomeBase::~GnomeBase() {} gnomeBC & GnomeBase::bc() { return static_cast(getController().bc()); } void GnomeBase::loadXML() { #ifdef WITH_WARNINGS #warning Change this before declaring it production code! (be 20010325) #endif string const path("src/frontends/gnome/dialogs/;frontends/gnome/dialogs/;"); string const file = FileOpenSearch(path, file_, "glade"); if (file.empty()) { lyxerr << "Cannot find glade file. Aborting." << std::endl; BOOST_ASSERT(true); } lyxerr[Debug::GUI] << "Glade file to open is " << file << endl; xml_ = Gnome::Glade::Xml::create (file, widget_name_); } void GnomeBase::show() { update(); dialog()->show(); } void GnomeBase::hide() { dialog()->hide(); } bool GnomeBase::isValid() { return true; } void GnomeBase::OKClicked() { lyxerr[Debug::GUI] << "GnomeBase::OKClicked()" << endl; getController().OKButton(); } void GnomeBase::CancelClicked() { lyxerr[Debug::GUI] << "GnomeBase::CancelClicked()" << endl; getController().CancelButton(); } void GnomeBase::ApplyClicked() { lyxerr[Debug::GUI] << "GnomeBase::ApplyClicked()" << endl; getController().ApplyButton(); } void GnomeBase::RestoreClicked() { lyxerr[Debug::GUI] << "GnomeBase::RestoreClicked()" << endl; getController().RestoreButton(); } void GnomeBase::InputChanged() { bc().valid(isValid()); } Gtk::Dialog * GnomeBase::dialog() { if (!dialog_) dialog_ = getWidget(widget_name_); return dialog_; } bool GnomeBase::isVisible() const { return dialog_ && dialog_->is_visible(); }