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
|
|
|
|
2003-03-12 22:17:50 +00:00
|
|
|
#include <boost/signals/signal2.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;
|
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
2002-08-15 17:48:53 +00:00
|
|
|
boost::signal0<void> & Dialogs::redrawGUI()
|
2002-06-18 15:44:30 +00:00
|
|
|
{
|
2002-12-01 22:59:25 +00:00
|
|
|
static BugfixSignal<boost::signal0<void> > thesignal;
|
|
|
|
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 {
|
|
|
|
|
|
|
|
BugfixSignal<boost::signal2<void, string const &, InsetBase*> > hideSignal;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
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)
|
|
|
|
: lyxview_(lyxview)
|
|
|
|
{
|
|
|
|
// Connect signals
|
|
|
|
redrawGUI().connect(boost::bind(&Dialogs::redraw, this));
|
2003-03-12 22:17:50 +00:00
|
|
|
hideSignal().connect(boost::bind(&Dialogs::hideSlot, this, _1, _2));
|
2003-02-25 14:51:38 +00:00
|
|
|
|
|
|
|
// All this is slated to go
|
|
|
|
init_pimpl();
|
|
|
|
// reduce the number of connections needed in
|
|
|
|
// dialogs by a simple connection here.
|
|
|
|
hideAllSignal.connect(hideBufferDependentSignal);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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
|
|
|
|
2003-09-18 10:39:09 +00:00
|
|
|
dialogs_[name] = DialogPtr(build(name));
|
|
|
|
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
|
|
|
{
|
2003-09-18 10:39:09 +00:00
|
|
|
Dialog * dialog = find_or_build(name);
|
2003-03-09 20:29:58 +00:00
|
|
|
if (!dialog)
|
|
|
|
return;
|
|
|
|
|
2003-06-17 00:30:47 +00:00
|
|
|
// FIXME! Should check that the dialog is NOT an inset dialog.
|
2003-03-12 22:17:50 +00:00
|
|
|
dialog->show(data);
|
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)
|
|
|
|
{
|
2003-09-18 10:39:09 +00:00
|
|
|
Dialog * dialog = find_or_build(name);
|
2003-02-25 14:51:38 +00:00
|
|
|
if (!dialog)
|
|
|
|
return;
|
|
|
|
|
2003-06-17 00:30:47 +00:00
|
|
|
// FIXME! Should check that the dialog IS an inset dialog.
|
2003-02-25 14:51:38 +00:00
|
|
|
dialog->show(data);
|
|
|
|
open_insets_[name] = inset;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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();
|
|
|
|
}
|
|
|
|
hideAllSignal();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
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();
|
|
|
|
}
|
|
|
|
hideBufferDependentSignal();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
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();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
updateBufferDependentSignal(switched);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
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();
|
|
|
|
}
|
|
|
|
}
|