2003-08-17 11:28:23 +00:00
|
|
|
/**
|
2007-04-25 01:24:38 +00:00
|
|
|
* \file InsetBranch.cpp
|
2003-08-17 11:28:23 +00:00
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
*
|
|
|
|
* \author Martin Vermeer
|
|
|
|
*
|
2003-08-23 00:17:00 +00:00
|
|
|
* Full author contact details are available in file CREDITS.
|
2003-08-17 11:28:23 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
2007-04-25 01:24:38 +00:00
|
|
|
#include "InsetBranch.h"
|
2003-09-05 09:01:27 +00:00
|
|
|
|
2007-04-26 04:41:58 +00:00
|
|
|
#include "Buffer.h"
|
|
|
|
#include "BufferParams.h"
|
2008-03-27 22:26:24 +00:00
|
|
|
#include "BufferView.h"
|
2003-12-14 16:33:56 +00:00
|
|
|
#include "BranchList.h"
|
2007-11-02 23:42:27 +00:00
|
|
|
#include "Color.h"
|
2007-08-12 21:43:58 +00:00
|
|
|
#include "Counters.h"
|
2007-04-26 14:56:30 +00:00
|
|
|
#include "Cursor.h"
|
2007-04-26 04:41:58 +00:00
|
|
|
#include "DispatchResult.h"
|
|
|
|
#include "FuncRequest.h"
|
2005-04-22 08:57:22 +00:00
|
|
|
#include "FuncStatus.h"
|
2007-04-26 11:30:54 +00:00
|
|
|
#include "Lexer.h"
|
2007-04-26 04:41:58 +00:00
|
|
|
#include "OutputParams.h"
|
2007-11-07 23:25:08 +00:00
|
|
|
#include "TextClass.h"
|
2003-08-17 11:28:23 +00:00
|
|
|
|
2008-03-27 22:26:24 +00:00
|
|
|
#include "support/debug.h"
|
|
|
|
#include "support/gettext.h"
|
|
|
|
|
|
|
|
#include "frontends/Application.h"
|
|
|
|
|
2004-07-24 10:55:30 +00:00
|
|
|
#include <sstream>
|
2003-09-05 09:01:27 +00:00
|
|
|
|
2007-12-12 10:16:00 +00:00
|
|
|
using namespace std;
|
2006-10-21 00:16:43 +00:00
|
|
|
|
2006-09-09 18:52:00 +00:00
|
|
|
|
2008-03-27 22:26:24 +00:00
|
|
|
namespace lyx {
|
2003-08-17 11:28:23 +00:00
|
|
|
|
2008-03-04 22:28:18 +00:00
|
|
|
InsetBranch::InsetBranch(Buffer const & buf, InsetBranchParams const & params)
|
|
|
|
: InsetCollapsable(buf), params_(params)
|
2007-11-03 00:35:07 +00:00
|
|
|
{}
|
2003-08-17 11:28:23 +00:00
|
|
|
|
|
|
|
|
|
|
|
InsetBranch::~InsetBranch()
|
|
|
|
{
|
2008-03-27 22:26:24 +00:00
|
|
|
hideDialogs("branch", this);
|
2003-08-17 11:28:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-27 20:43:16 +00:00
|
|
|
docstring InsetBranch::editMessage() const
|
2003-08-17 11:28:23 +00:00
|
|
|
{
|
2006-09-09 18:52:00 +00:00
|
|
|
return _("Opened Branch Inset");
|
2003-08-17 11:28:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-27 20:43:16 +00:00
|
|
|
void InsetBranch::write(ostream & os) const
|
2003-08-17 11:28:23 +00:00
|
|
|
{
|
|
|
|
params_.write(os);
|
2008-02-27 20:43:16 +00:00
|
|
|
InsetCollapsable::write(os);
|
2003-08-17 11:28:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-27 20:43:16 +00:00
|
|
|
void InsetBranch::read(Lexer & lex)
|
2003-08-17 11:28:23 +00:00
|
|
|
{
|
2003-12-14 16:33:56 +00:00
|
|
|
params_.read(lex);
|
2008-02-27 20:43:16 +00:00
|
|
|
InsetCollapsable::read(lex);
|
2003-08-17 11:28:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-28 01:42:02 +00:00
|
|
|
docstring InsetBranch::toolTip(BufferView const &, int, int) const
|
2008-02-12 09:11:06 +00:00
|
|
|
{
|
|
|
|
return _("Branch: ") + params_.branch;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-08-17 11:28:23 +00:00
|
|
|
void InsetBranch::setButtonLabel()
|
|
|
|
{
|
2006-11-03 15:16:45 +00:00
|
|
|
docstring s = _("Branch: ") + params_.branch;
|
2005-11-02 13:54:33 +00:00
|
|
|
if (!params_.branch.empty()) {
|
2006-11-03 15:16:45 +00:00
|
|
|
// FIXME UNICODE
|
2007-10-25 12:41:02 +00:00
|
|
|
ColorCode c = lcolor.getFromLyXName(to_utf8(params_.branch));
|
|
|
|
if (c == Color_none) {
|
2006-10-08 09:36:16 +00:00
|
|
|
s = _("Undef: ") + s;
|
2005-11-02 13:54:33 +00:00
|
|
|
}
|
2007-06-12 13:45:49 +00:00
|
|
|
}
|
2008-02-22 16:24:55 +00:00
|
|
|
if (decoration() == InsetLayout::Classic)
|
2007-09-02 08:38:09 +00:00
|
|
|
setLabel(isOpen() ? s : getNewLabel(s) );
|
|
|
|
else
|
|
|
|
setLabel(params_.branch + ": " + getNewLabel(s));
|
2003-08-17 11:28:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-10-25 12:41:02 +00:00
|
|
|
ColorCode InsetBranch::backgroundColor() const
|
2007-06-12 13:45:49 +00:00
|
|
|
{
|
|
|
|
if (!params_.branch.empty()) {
|
|
|
|
// FIXME UNICODE
|
2007-10-25 12:41:02 +00:00
|
|
|
ColorCode c = lcolor.getFromLyXName(to_utf8(params_.branch));
|
|
|
|
if (c == Color_none) {
|
|
|
|
c = Color_error;
|
2007-06-12 13:45:49 +00:00
|
|
|
}
|
|
|
|
return c;
|
|
|
|
} else
|
|
|
|
return Inset::backgroundColor();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-08-17 11:28:23 +00:00
|
|
|
bool InsetBranch::showInsetDialog(BufferView * bv) const
|
|
|
|
{
|
2008-03-27 22:26:24 +00:00
|
|
|
bv->showDialog("branch", params2string(params()),
|
|
|
|
const_cast<InsetBranch *>(this));
|
2003-08-17 11:28:23 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-04-26 14:56:30 +00:00
|
|
|
void InsetBranch::doDispatch(Cursor & cur, FuncRequest & cmd)
|
2003-08-17 11:28:23 +00:00
|
|
|
{
|
|
|
|
switch (cmd.action) {
|
2003-11-03 19:52:47 +00:00
|
|
|
case LFUN_INSET_MODIFY: {
|
2003-08-17 11:28:23 +00:00
|
|
|
InsetBranchParams params;
|
2008-03-27 22:26:24 +00:00
|
|
|
InsetBranch::string2params(to_utf8(cmd.argument()), params);
|
2003-08-17 11:28:23 +00:00
|
|
|
params_.branch = params.branch;
|
2007-09-01 17:55:21 +00:00
|
|
|
setLayout(cur.buffer().params());
|
2004-02-16 11:58:51 +00:00
|
|
|
break;
|
2003-11-03 19:52:47 +00:00
|
|
|
}
|
2003-11-04 12:36:59 +00:00
|
|
|
|
|
|
|
case LFUN_MOUSE_PRESS:
|
2003-08-28 07:41:31 +00:00
|
|
|
if (cmd.button() != mouse_button::button3)
|
2004-11-24 21:58:42 +00:00
|
|
|
InsetCollapsable::doDispatch(cur, cmd);
|
2004-02-16 11:58:51 +00:00
|
|
|
else
|
2004-03-01 17:12:09 +00:00
|
|
|
cur.undispatched();
|
2004-02-16 11:58:51 +00:00
|
|
|
break;
|
2003-11-03 19:52:47 +00:00
|
|
|
|
2003-08-17 11:28:23 +00:00
|
|
|
case LFUN_INSET_DIALOG_UPDATE:
|
2008-03-27 22:26:24 +00:00
|
|
|
cur.bv().updateDialog("branch", params2string(params()));
|
2004-02-16 11:58:51 +00:00
|
|
|
break;
|
2003-11-03 19:52:47 +00:00
|
|
|
|
2004-03-30 12:36:33 +00:00
|
|
|
case LFUN_INSET_TOGGLE:
|
2007-06-11 05:12:10 +00:00
|
|
|
if (cmd.argument() == "assign") {
|
2005-05-06 20:00:31 +00:00
|
|
|
// The branch inset uses "assign".
|
2008-02-27 20:43:16 +00:00
|
|
|
if (isBranchSelected()) {
|
2004-03-30 12:36:33 +00:00
|
|
|
if (status() != Open)
|
2005-05-06 20:00:31 +00:00
|
|
|
setStatus(cur, Open);
|
2004-03-30 12:36:33 +00:00
|
|
|
else
|
|
|
|
cur.undispatched();
|
|
|
|
} else {
|
2005-05-06 20:00:31 +00:00
|
|
|
if (status() != Collapsed)
|
|
|
|
setStatus(cur, Collapsed);
|
|
|
|
else
|
2004-03-30 12:36:33 +00:00
|
|
|
cur.undispatched();
|
|
|
|
}
|
|
|
|
}
|
2005-10-24 09:42:20 +00:00
|
|
|
else
|
|
|
|
InsetCollapsable::doDispatch(cur, cmd);
|
2004-03-30 12:36:33 +00:00
|
|
|
break;
|
|
|
|
|
2003-08-17 11:28:23 +00:00
|
|
|
default:
|
2004-11-24 21:58:42 +00:00
|
|
|
InsetCollapsable::doDispatch(cur, cmd);
|
2004-02-16 11:58:51 +00:00
|
|
|
break;
|
2003-08-17 11:28:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-04-26 14:56:30 +00:00
|
|
|
bool InsetBranch::getStatus(Cursor & cur, FuncRequest const & cmd,
|
2005-04-22 08:57:22 +00:00
|
|
|
FuncStatus & flag) const
|
|
|
|
{
|
|
|
|
switch (cmd.action) {
|
|
|
|
case LFUN_INSET_MODIFY:
|
|
|
|
case LFUN_INSET_DIALOG_UPDATE:
|
|
|
|
flag.enabled(true);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LFUN_INSET_TOGGLE:
|
2006-09-01 15:41:38 +00:00
|
|
|
if (cmd.argument() == "open" || cmd.argument() == "close" ||
|
|
|
|
cmd.argument() == "toggle")
|
2005-04-22 08:57:22 +00:00
|
|
|
flag.enabled(true);
|
2008-02-27 20:43:16 +00:00
|
|
|
else if (cmd.argument() == "assign" || cmd.argument().empty()) {
|
|
|
|
if (isBranchSelected())
|
2005-04-22 15:41:29 +00:00
|
|
|
flag.enabled(status() != Open);
|
|
|
|
else
|
|
|
|
flag.enabled(status() != Collapsed);
|
2005-04-22 08:57:22 +00:00
|
|
|
} else
|
|
|
|
flag.enabled(true);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
return InsetCollapsable::getStatus(cur, cmd, flag);
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-27 20:43:16 +00:00
|
|
|
bool InsetBranch::isBranchSelected() const
|
2003-12-14 16:33:56 +00:00
|
|
|
{
|
2008-02-27 20:43:16 +00:00
|
|
|
Buffer const & realbuffer = *buffer().masterBuffer();
|
2005-10-25 15:21:49 +00:00
|
|
|
BranchList const & branchlist = realbuffer.params().branchlist();
|
2003-12-14 16:33:56 +00:00
|
|
|
BranchList::const_iterator const end = branchlist.end();
|
2004-01-05 17:33:57 +00:00
|
|
|
BranchList::const_iterator it =
|
2007-12-12 19:28:07 +00:00
|
|
|
find_if(branchlist.begin(), end,
|
2004-01-05 17:33:57 +00:00
|
|
|
BranchNamesEqual(params_.branch));
|
2003-12-14 16:33:56 +00:00
|
|
|
if (it == end)
|
|
|
|
return false;
|
|
|
|
return it->getSelected();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-27 20:43:16 +00:00
|
|
|
void InsetBranch::updateLabels(ParIterator const & it)
|
2007-08-12 21:43:58 +00:00
|
|
|
{
|
2008-02-27 20:43:16 +00:00
|
|
|
if (isBranchSelected())
|
|
|
|
InsetCollapsable::updateLabels(it);
|
2007-08-12 21:43:58 +00:00
|
|
|
else {
|
2008-02-28 01:42:02 +00:00
|
|
|
DocumentClass const & tclass = buffer().params().documentClass();
|
2007-08-12 21:43:58 +00:00
|
|
|
Counters savecnt = tclass.counters();
|
2008-02-27 20:43:16 +00:00
|
|
|
InsetCollapsable::updateLabels(it);
|
2007-08-12 21:43:58 +00:00
|
|
|
tclass.counters() = savecnt;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-27 20:43:16 +00:00
|
|
|
int InsetBranch::latex(odocstream & os, OutputParams const & runparams) const
|
2003-08-17 11:28:23 +00:00
|
|
|
{
|
2008-02-27 20:43:16 +00:00
|
|
|
return isBranchSelected() ? InsetText::latex(os, runparams) : 0;
|
2003-08-17 11:28:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-27 20:43:16 +00:00
|
|
|
int InsetBranch::plaintext(odocstream & os,
|
2007-05-28 22:27:45 +00:00
|
|
|
OutputParams const & runparams) const
|
2003-08-17 11:28:23 +00:00
|
|
|
{
|
2008-02-27 20:43:16 +00:00
|
|
|
if (!isBranchSelected())
|
2007-02-16 09:28:25 +00:00
|
|
|
return 0;
|
|
|
|
|
2008-02-27 20:43:16 +00:00
|
|
|
os << '[' << buffer().B_("branch") << ' ' << params_.branch << ":\n";
|
|
|
|
InsetText::plaintext(os, runparams);
|
2007-02-16 09:28:25 +00:00
|
|
|
os << "\n]";
|
|
|
|
|
2007-02-20 17:52:41 +00:00
|
|
|
return PLAINTEXT_NEWLINE + 1; // one char on a separate line
|
2003-08-17 11:28:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-27 20:43:16 +00:00
|
|
|
int InsetBranch::docbook(odocstream & os,
|
2007-05-28 22:27:45 +00:00
|
|
|
OutputParams const & runparams) const
|
2003-08-17 11:28:23 +00:00
|
|
|
{
|
2008-02-27 20:43:16 +00:00
|
|
|
return isBranchSelected() ? InsetText::docbook(os, runparams) : 0;
|
2003-08-17 11:28:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-27 20:43:16 +00:00
|
|
|
void InsetBranch::textString(odocstream & os) const
|
2007-01-19 16:23:47 +00:00
|
|
|
{
|
2008-02-27 20:43:16 +00:00
|
|
|
if (isBranchSelected())
|
|
|
|
os << paragraphs().begin()->asString(true);
|
2007-01-19 16:23:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-08-17 11:28:23 +00:00
|
|
|
void InsetBranch::validate(LaTeXFeatures & features) const
|
|
|
|
{
|
2004-03-25 09:16:36 +00:00
|
|
|
InsetText::validate(features);
|
2003-08-17 11:28:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-02-27 20:43:16 +00:00
|
|
|
bool InsetBranch::isMacroScope() const
|
2007-12-21 20:42:46 +00:00
|
|
|
{
|
|
|
|
// Its own scope if not selected by buffer
|
2008-02-27 20:43:16 +00:00
|
|
|
return !isBranchSelected();
|
2007-12-21 20:42:46 +00:00
|
|
|
}
|
|
|
|
|
2003-08-17 11:28:23 +00:00
|
|
|
|
2008-03-27 22:26:24 +00:00
|
|
|
string InsetBranch::params2string(InsetBranchParams const & params)
|
2003-08-17 11:28:23 +00:00
|
|
|
{
|
|
|
|
ostringstream data;
|
2008-03-27 22:26:24 +00:00
|
|
|
data << "branch" << ' ';
|
2003-08-17 11:28:23 +00:00
|
|
|
params.write(data);
|
2003-09-15 11:00:00 +00:00
|
|
|
return data.str();
|
2003-08-17 11:28:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-03-27 22:26:24 +00:00
|
|
|
void InsetBranch::string2params(string const & in, InsetBranchParams & params)
|
2003-08-17 11:28:23 +00:00
|
|
|
{
|
|
|
|
params = InsetBranchParams();
|
|
|
|
if (in.empty())
|
|
|
|
return;
|
|
|
|
|
2003-09-15 11:00:00 +00:00
|
|
|
istringstream data(in);
|
2008-04-02 23:06:22 +00:00
|
|
|
Lexer lex;
|
2003-08-17 11:28:23 +00:00
|
|
|
lex.setStream(data);
|
2003-12-10 14:49:51 +00:00
|
|
|
|
|
|
|
string name;
|
|
|
|
lex >> name;
|
2008-03-27 22:26:24 +00:00
|
|
|
if (name != "branch") {
|
|
|
|
LYXERR0("InsetBranch::string2params(" << in << ")\n"
|
|
|
|
"Expected arg 1 to be \"branch\"\n");
|
|
|
|
return;
|
|
|
|
}
|
2003-12-10 14:49:51 +00:00
|
|
|
|
2003-12-14 16:33:56 +00:00
|
|
|
// This is part of the inset proper that is usually swallowed
|
2007-04-29 23:33:02 +00:00
|
|
|
// by Text::readInset
|
2003-12-14 16:33:56 +00:00
|
|
|
string id;
|
|
|
|
lex >> id;
|
2008-03-27 22:26:24 +00:00
|
|
|
if (!lex || id != "Branch") {
|
|
|
|
LYXERR0("InsetBranch::string2params(" << in << ")\n"
|
|
|
|
"Expected arg 2 to be \"Branch\"\n");
|
|
|
|
return;
|
|
|
|
}
|
2003-12-14 16:33:56 +00:00
|
|
|
|
2003-08-17 11:28:23 +00:00
|
|
|
params.read(lex);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void InsetBranchParams::write(ostream & os) const
|
|
|
|
{
|
2006-11-03 15:16:45 +00:00
|
|
|
os << "Branch " << to_utf8(branch) << '\n';
|
2003-08-17 11:28:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-04-26 11:30:54 +00:00
|
|
|
void InsetBranchParams::read(Lexer & lex)
|
2003-08-17 11:28:23 +00:00
|
|
|
{
|
2003-12-14 16:33:56 +00:00
|
|
|
lex >> branch;
|
2003-08-17 11:28:23 +00:00
|
|
|
}
|
2006-10-21 00:16:43 +00:00
|
|
|
|
|
|
|
} // namespace lyx
|