2002-08-15 17:48:53 +00:00
|
|
|
/**
|
2002-09-26 08:57:43 +00:00
|
|
|
* \file frontends/Dialogs.C
|
2002-09-05 15:14:23 +00:00
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
2003-08-19 10:04:35 +00:00
|
|
|
*
|
2002-12-01 22:59:25 +00:00
|
|
|
* \author Angus Leeming
|
2002-09-05 14:10:50 +00:00
|
|
|
*
|
2003-08-23 00:17:00 +00:00
|
|
|
* Full author contact details are available in file CREDITS.
|
2001-04-26 18:58:49 +00:00
|
|
|
*
|
2002-08-15 17:48:53 +00:00
|
|
|
* Common to all frontends' Dialogs
|
2001-04-26 18:58:49 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include "Dialogs.h"
|
2003-09-05 10:55:42 +00:00
|
|
|
|
2003-02-25 14:51:38 +00:00
|
|
|
#include "controllers/Dialog.h"
|
2003-09-05 10:55:42 +00:00
|
|
|
|
2004-09-26 14:19:47 +00:00
|
|
|
#include <boost/signal.hpp>
|
2003-02-25 14:51:38 +00:00
|
|
|
#include <boost/bind.hpp>
|
|
|
|
|
2002-06-18 15:44:30 +00:00
|
|
|
|
2003-10-06 15:43:21 +00:00
|
|
|
using std::string;
|
2004-05-19 15:11:37 +00:00
|
|
|
using lyx::frontend::Dialog;
|
2003-10-06 15:43:21 +00:00
|
|
|
|
|
|
|
|
2002-08-15 17:48:53 +00:00
|
|
|
// Note that static boost signals break some compilers, so this wrapper
|
|
|
|
// initialises the signal dynamically when it is first invoked.
|
|
|
|
template<typename Signal>
|
|
|
|
class BugfixSignal {
|
|
|
|
public:
|
2002-12-01 22:59:25 +00:00
|
|
|
Signal & operator()() { return thesignal(); }
|
|
|
|
Signal const & operator()() const { return thesignal(); }
|
2002-06-18 15:44:30 +00:00
|
|
|
|
2002-08-15 17:48:53 +00:00
|
|
|
private:
|
2002-12-01 22:59:25 +00:00
|
|
|
Signal & thesignal() const
|
|
|
|
{
|
|
|
|
if (!signal_.get())
|
|
|
|
signal_.reset(new Signal);
|
|
|
|
return *signal_;
|
|
|
|
}
|
|
|
|
|
|
|
|
mutable boost::scoped_ptr<Signal> signal_;
|
2002-08-15 17:48:53 +00:00
|
|
|
};
|
2002-06-18 15:44:30 +00:00
|
|
|
|
|
|
|
|
2004-09-26 14:19:47 +00:00
|
|
|
boost::signal<void()> & Dialogs::redrawGUI()
|
2002-06-18 15:44:30 +00:00
|
|
|
{
|
2004-09-26 14:19:47 +00:00
|
|
|
static BugfixSignal<boost::signal<void()> > thesignal;
|
2002-12-01 22:59:25 +00:00
|
|
|
return thesignal();
|
2002-06-18 15:44:30 +00:00
|
|
|
}
|
2003-02-25 14:51:38 +00:00
|
|
|
|
|
|
|
|
2003-03-12 22:17:50 +00:00
|
|
|
namespace {
|
|
|
|
|
2004-09-26 14:19:47 +00:00
|
|
|
BugfixSignal<boost::signal<void(string const &, InsetBase*)> > hideSignal;
|
2003-03-12 22:17:50 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void Dialogs::hide(string const & name, InsetBase* inset)
|
2003-03-10 22:12:07 +00:00
|
|
|
{
|
2003-03-12 22:17:50 +00:00
|
|
|
hideSignal()(name, inset);
|
2003-03-10 22:12:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-02-25 14:51:38 +00:00
|
|
|
Dialogs::Dialogs(LyXView & lyxview)
|
2005-02-22 10:25:42 +00:00
|
|
|
: lyxview_(lyxview), in_show_(false)
|
2003-02-25 14:51:38 +00:00
|
|
|
{
|
|
|
|
// Connect signals
|
|
|
|
redrawGUI().connect(boost::bind(&Dialogs::redraw, this));
|
2005-05-17 15:33:16 +00:00
|
|
|
hideSignal().connect(boost::bind(&Dialogs::hideSlot, this, _1, _2));
|
2003-02-25 14:51:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-09-18 10:39:09 +00:00
|
|
|
Dialog * Dialogs::find_or_build(string const & name)
|
2003-02-25 14:51:38 +00:00
|
|
|
{
|
|
|
|
if (!isValidName(name))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
std::map<string, DialogPtr>::iterator it =
|
|
|
|
dialogs_.find(name);
|
|
|
|
|
2003-09-18 10:39:09 +00:00
|
|
|
if (it != dialogs_.end())
|
|
|
|
return it->second.get();
|
2003-02-25 14:51:38 +00:00
|
|
|
|
2004-03-31 20:55:59 +00:00
|
|
|
dialogs_[name] = build(name);
|
2003-09-18 10:39:09 +00:00
|
|
|
return dialogs_[name].get();
|
2003-02-25 14:51:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-03-12 22:17:50 +00:00
|
|
|
void Dialogs::show(string const & name, string const & data)
|
2003-03-09 20:29:58 +00:00
|
|
|
{
|
2005-02-22 10:25:42 +00:00
|
|
|
if (in_show_) {
|
2003-03-09 20:29:58 +00:00
|
|
|
return;
|
2005-02-22 10:25:42 +00:00
|
|
|
}
|
|
|
|
in_show_ = true;
|
|
|
|
Dialog * dialog = find_or_build(name);
|
|
|
|
if (dialog) {
|
|
|
|
// FIXME! Should check that the dialog is NOT an inset dialog.
|
|
|
|
dialog->show(data);
|
2005-04-26 11:12:20 +00:00
|
|
|
}
|
2005-02-22 10:25:42 +00:00
|
|
|
in_show_ = false;
|
2003-03-09 20:29:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-02-25 14:51:38 +00:00
|
|
|
void Dialogs::show(string const & name, string const & data, InsetBase * inset)
|
|
|
|
{
|
2005-02-22 10:25:42 +00:00
|
|
|
if (in_show_) {
|
2003-02-25 14:51:38 +00:00
|
|
|
return;
|
2005-02-22 10:25:42 +00:00
|
|
|
}
|
|
|
|
in_show_ = true;
|
|
|
|
Dialog * dialog = find_or_build(name);
|
|
|
|
if (dialog) {
|
|
|
|
// FIXME! Should check that the dialog IS an inset dialog.
|
|
|
|
dialog->show(data);
|
|
|
|
open_insets_[name] = inset;
|
|
|
|
}
|
|
|
|
in_show_ = false;
|
2003-02-25 14:51:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-06-06 08:06:24 +00:00
|
|
|
bool Dialogs::visible(string const & name) const
|
|
|
|
{
|
|
|
|
std::map<string, DialogPtr>::const_iterator it =
|
|
|
|
dialogs_.find(name);
|
|
|
|
if (it == dialogs_.end())
|
|
|
|
return false;
|
|
|
|
return it->second.get()->isVisible();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-02-25 14:51:38 +00:00
|
|
|
void Dialogs::update(string const & name, string const & data)
|
|
|
|
{
|
2003-09-18 10:39:09 +00:00
|
|
|
std::map<string, DialogPtr>::const_iterator it =
|
|
|
|
dialogs_.find(name);
|
|
|
|
if (it == dialogs_.end())
|
2003-02-25 14:51:38 +00:00
|
|
|
return;
|
|
|
|
|
2003-09-18 10:39:09 +00:00
|
|
|
Dialog * const dialog = it->second.get();
|
2003-02-25 14:51:38 +00:00
|
|
|
if (dialog->isVisible())
|
|
|
|
dialog->update(data);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-03-10 22:12:07 +00:00
|
|
|
void Dialogs::hideSlot(string const & name, InsetBase * inset)
|
2003-02-25 14:51:38 +00:00
|
|
|
{
|
2003-09-18 10:39:09 +00:00
|
|
|
std::map<string, DialogPtr>::const_iterator it =
|
|
|
|
dialogs_.find(name);
|
|
|
|
if (it == dialogs_.end())
|
2003-02-25 14:51:38 +00:00
|
|
|
return;
|
|
|
|
|
2003-03-10 22:12:07 +00:00
|
|
|
if (inset && inset != getOpenInset(name))
|
|
|
|
return;
|
|
|
|
|
2003-09-18 10:39:09 +00:00
|
|
|
Dialog * const dialog = it->second.get();
|
2003-02-25 14:51:38 +00:00
|
|
|
if (dialog->isVisible())
|
|
|
|
dialog->hide();
|
|
|
|
open_insets_[name] = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void Dialogs::disconnect(string const & name)
|
|
|
|
{
|
|
|
|
if (!isValidName(name))
|
|
|
|
return;
|
|
|
|
|
|
|
|
open_insets_[name] = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
InsetBase * Dialogs::getOpenInset(string const & name) const
|
|
|
|
{
|
|
|
|
if (!isValidName(name))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
std::map<string, InsetBase *>::const_iterator it =
|
|
|
|
open_insets_.find(name);
|
|
|
|
return it == open_insets_.end() ? 0 : it->second;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void Dialogs::hideAll() const
|
|
|
|
{
|
|
|
|
std::map<string, DialogPtr>::const_iterator it = dialogs_.begin();
|
|
|
|
std::map<string, DialogPtr>::const_iterator end = dialogs_.end();
|
|
|
|
|
|
|
|
for(; it != end; ++it) {
|
|
|
|
it->second->hide();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void Dialogs::hideBufferDependent() const
|
|
|
|
{
|
|
|
|
std::map<string, DialogPtr>::const_iterator it = dialogs_.begin();
|
|
|
|
std::map<string, DialogPtr>::const_iterator end = dialogs_.end();
|
|
|
|
|
|
|
|
for(; it != end; ++it) {
|
|
|
|
Dialog * dialog = it->second.get();
|
|
|
|
if (dialog->controller().isBufferDependent())
|
|
|
|
dialog->hide();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void Dialogs::updateBufferDependent(bool switched) const
|
|
|
|
{
|
|
|
|
std::map<string, DialogPtr>::const_iterator it = dialogs_.begin();
|
|
|
|
std::map<string, DialogPtr>::const_iterator end = dialogs_.end();
|
|
|
|
|
|
|
|
for(; it != end; ++it) {
|
|
|
|
Dialog * dialog = it->second.get();
|
|
|
|
if (switched && dialog->controller().isBufferDependent()) {
|
|
|
|
dialog->hide();
|
|
|
|
} else {
|
|
|
|
// A bit clunky, but the dialog will request
|
|
|
|
// that the kernel provides it with the necessary
|
|
|
|
// data.
|
|
|
|
dialog->RestoreButton();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void Dialogs::redraw() const
|
|
|
|
{
|
|
|
|
std::map<string, DialogPtr>::const_iterator it = dialogs_.begin();
|
|
|
|
std::map<string, DialogPtr>::const_iterator end = dialogs_.end();
|
|
|
|
|
|
|
|
for(; it != end; ++it) {
|
|
|
|
it->second->redraw();
|
|
|
|
}
|
|
|
|
}
|
2005-04-13 09:43:58 +00:00
|
|
|
|
|
|
|
|
|
|
|
void Dialogs::checkStatus()
|
|
|
|
{
|
|
|
|
std::map<string, DialogPtr>::const_iterator it = dialogs_.begin();
|
|
|
|
std::map<string, DialogPtr>::const_iterator end = dialogs_.end();
|
|
|
|
|
|
|
|
for(; it != end; ++it) {
|
|
|
|
Dialog * const dialog = it->second.get();
|
|
|
|
if (dialog->isVisible())
|
|
|
|
dialog->checkStatus();
|
|
|
|
}
|
|
|
|
}
|