2002-08-15 17:48:53 +00:00
|
|
|
/**
|
2007-04-26 03:53:02 +00:00
|
|
|
* \file frontends/Dialogs.cpp
|
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
|
|
|
|
2007-04-28 20:44:46 +00:00
|
|
|
#include "callback.h"
|
2006-09-22 10:03:00 +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>
|
|
|
|
|
2007-07-17 09:20:39 +00:00
|
|
|
using std::string;
|
2002-06-18 15:44:30 +00:00
|
|
|
|
2006-10-21 00:16:43 +00:00
|
|
|
namespace lyx {
|
|
|
|
|
2007-08-14 09:54:59 +00:00
|
|
|
namespace frontend {
|
2003-10-06 15:43:21 +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)
|
2007-09-10 22:32:59 +00:00
|
|
|
{}
|
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
|
|
|
|
2007-09-03 05:59:32 +00:00
|
|
|
dialogs_[name].reset(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
|
|
|
{
|
2007-09-10 22:32:59 +00:00
|
|
|
if (in_show_)
|
2003-03-09 20:29:58 +00:00
|
|
|
return;
|
2007-09-10 22:32:59 +00:00
|
|
|
|
2005-02-22 10:25:42 +00:00
|
|
|
in_show_ = true;
|
|
|
|
Dialog * dialog = find_or_build(name);
|
2007-09-10 22:32:59 +00:00
|
|
|
if (dialog)
|
|
|
|
dialog->showData(data);
|
|
|
|
|
2005-02-22 10:25:42 +00:00
|
|
|
in_show_ = false;
|
2003-03-09 20:29:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-04-29 13:39:47 +00:00
|
|
|
void Dialogs::show(string const & name, string const & data, Inset * inset)
|
2003-02-25 14:51:38 +00:00
|
|
|
{
|
2007-09-10 22:32:59 +00:00
|
|
|
if (in_show_)
|
2003-02-25 14:51:38 +00:00
|
|
|
return;
|
2007-09-10 22:32:59 +00:00
|
|
|
|
2005-02-22 10:25:42 +00:00
|
|
|
in_show_ = true;
|
|
|
|
Dialog * dialog = find_or_build(name);
|
|
|
|
if (dialog) {
|
2007-09-10 22:32:59 +00:00
|
|
|
dialog->showData(data);
|
2005-02-22 10:25:42 +00:00
|
|
|
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;
|
2007-09-10 22:32:59 +00:00
|
|
|
return it->second.get()->isVisibleView();
|
2003-06-06 08:06:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
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();
|
2007-09-10 22:32:59 +00:00
|
|
|
if (dialog->isVisibleView())
|
|
|
|
dialog->updateData(data);
|
2003-02-25 14:51:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-07-17 09:20:39 +00:00
|
|
|
void Dialogs::hide(string const & name, Inset* inset)
|
2003-02-25 14:51:38 +00:00
|
|
|
{
|
2007-07-17 09:20:39 +00:00
|
|
|
// Don't send the signal if we are quitting, because on MSVC it is
|
|
|
|
// destructed before the cut stack in CutAndPaste.cpp, and this method
|
|
|
|
// is called from some inset destructor if the cut stack is not empty
|
|
|
|
// on exit.
|
|
|
|
if (quitting)
|
|
|
|
return;
|
|
|
|
|
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();
|
2007-09-10 22:32:59 +00:00
|
|
|
if (dialog->isVisibleView())
|
2003-02-25 14:51:38 +00:00
|
|
|
dialog->hide();
|
|
|
|
open_insets_[name] = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void Dialogs::disconnect(string const & name)
|
|
|
|
{
|
|
|
|
if (!isValidName(name))
|
|
|
|
return;
|
|
|
|
|
2006-09-04 09:48:51 +00:00
|
|
|
if (open_insets_.find(name) != open_insets_.end())
|
|
|
|
open_insets_[name] = 0;
|
2003-02-25 14:51:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-04-29 13:39:47 +00:00
|
|
|
Inset * Dialogs::getOpenInset(string const & name) const
|
2003-02-25 14:51:38 +00:00
|
|
|
{
|
|
|
|
if (!isValidName(name))
|
|
|
|
return 0;
|
|
|
|
|
2007-04-29 13:39:47 +00:00
|
|
|
std::map<string, Inset *>::const_iterator it =
|
2003-02-25 14:51:38 +00:00
|
|
|
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();
|
|
|
|
|
2007-09-10 22:32:59 +00:00
|
|
|
for(; it != end; ++it)
|
2003-02-25 14:51:38 +00:00
|
|
|
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) {
|
2007-09-10 22:32:59 +00:00
|
|
|
Dialog * dialog = it->second.get();
|
2003-02-25 14:51:38 +00:00
|
|
|
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) {
|
2007-09-10 22:32:59 +00:00
|
|
|
Dialog * dialog = it->second.get();
|
2003-02-25 14:51:38 +00:00
|
|
|
if (switched && dialog->controller().isBufferDependent()) {
|
2007-09-10 22:32:59 +00:00
|
|
|
if (dialog->isVisibleView() && dialog->controller().initialiseParams(""))
|
2007-09-05 20:33:29 +00:00
|
|
|
dialog->updateView();
|
2007-03-12 11:27:47 +00:00
|
|
|
else
|
|
|
|
dialog->hide();
|
2003-02-25 14:51:38 +00:00
|
|
|
} else {
|
|
|
|
// A bit clunky, but the dialog will request
|
|
|
|
// that the kernel provides it with the necessary
|
|
|
|
// data.
|
2007-09-11 17:06:15 +00:00
|
|
|
dialog->slotRestore();
|
2003-02-25 14:51:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void Dialogs::redraw() const
|
|
|
|
{
|
|
|
|
std::map<string, DialogPtr>::const_iterator it = dialogs_.begin();
|
|
|
|
std::map<string, DialogPtr>::const_iterator end = dialogs_.end();
|
|
|
|
|
2007-09-10 22:32:59 +00:00
|
|
|
for(; it != end; ++it)
|
2003-02-25 14:51:38 +00:00
|
|
|
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();
|
2007-09-10 22:32:59 +00:00
|
|
|
if (dialog->isVisibleView())
|
2005-04-13 09:43:58 +00:00
|
|
|
dialog->checkStatus();
|
|
|
|
}
|
|
|
|
}
|
2006-10-21 00:16:43 +00:00
|
|
|
|
2007-08-14 09:54:59 +00:00
|
|
|
} // namespace frontend
|
2006-10-21 00:16:43 +00:00
|
|
|
} // namespace lyx
|