2003-11-12 14:38:26 +00:00
|
|
|
|
/**
|
|
|
|
|
* \file insetcharstyle.C
|
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
|
*
|
|
|
|
|
* \author Angus Leeming
|
|
|
|
|
* \author Martin Vermeer
|
|
|
|
|
* \author J<EFBFBD>rgen Spitzm<EFBFBD>ller
|
|
|
|
|
*
|
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
|
|
#include "insetcharstyle.h"
|
|
|
|
|
|
|
|
|
|
#include "BufferView.h"
|
|
|
|
|
#include "dispatchresult.h"
|
|
|
|
|
#include "funcrequest.h"
|
|
|
|
|
#include "gettext.h"
|
|
|
|
|
#include "LaTeXFeatures.h"
|
|
|
|
|
#include "LColor.h"
|
|
|
|
|
#include "lyxlex.h"
|
|
|
|
|
#include "lyxtext.h"
|
|
|
|
|
#include "metricsinfo.h"
|
|
|
|
|
#include "paragraph.h"
|
|
|
|
|
|
|
|
|
|
#include "support/std_sstream.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
using std::string;
|
|
|
|
|
using std::auto_ptr;
|
|
|
|
|
using std::istringstream;
|
|
|
|
|
using std::ostream;
|
|
|
|
|
using std::ostringstream;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void InsetCharStyle::init()
|
|
|
|
|
{
|
|
|
|
|
setInsetName("CharStyle");
|
|
|
|
|
setButtonLabel();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-11-22 14:44:59 +00:00
|
|
|
|
InsetCharStyle::InsetCharStyle(BufferParams const & bp,
|
2003-11-12 14:38:26 +00:00
|
|
|
|
CharStyles::iterator cs)
|
|
|
|
|
: InsetCollapsable(bp)
|
|
|
|
|
{
|
|
|
|
|
params_.type = cs->name;
|
|
|
|
|
params_.latextype = cs->latextype;
|
|
|
|
|
params_.latexname = cs->latexname;
|
2003-12-01 16:01:50 +00:00
|
|
|
|
params_.latexparam = cs->latexparam;
|
2003-11-12 14:38:26 +00:00
|
|
|
|
params_.font = cs->font;
|
|
|
|
|
params_.labelfont = cs->labelfont;
|
|
|
|
|
init();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
InsetCharStyle::InsetCharStyle(InsetCharStyle const & in)
|
|
|
|
|
: InsetCollapsable(in), params_(in.params_)
|
|
|
|
|
{
|
|
|
|
|
init();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
auto_ptr<InsetBase> InsetCharStyle::clone() const
|
|
|
|
|
{
|
|
|
|
|
return auto_ptr<InsetBase>(new InsetCharStyle(*this));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
string const InsetCharStyle::editMessage() const
|
|
|
|
|
{
|
|
|
|
|
return _("Opened CharStyle Inset");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void InsetCharStyle::write(Buffer const & buf, ostream & os) const
|
|
|
|
|
{
|
|
|
|
|
params_.write(os);
|
|
|
|
|
InsetCollapsable::write(buf, os);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void InsetCharStyle::read(Buffer const & buf, LyXLex & lex)
|
|
|
|
|
{
|
|
|
|
|
InsetCollapsable::read(buf, lex);
|
|
|
|
|
setButtonLabel();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void InsetCharStyle::setButtonLabel()
|
|
|
|
|
{
|
|
|
|
|
LyXFont font(params_.labelfont);
|
|
|
|
|
font.realize(LyXFont(LyXFont::ALL_SANE));
|
2003-12-01 14:51:52 +00:00
|
|
|
|
string const s = "Style: " + params_.type;
|
|
|
|
|
setLabel(isOpen() ? s : getNewLabel(s) );
|
2003-11-12 14:38:26 +00:00
|
|
|
|
setLabelFont(font);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void InsetCharStyle::metrics(MetricsInfo & mi, Dimension & dim) const
|
|
|
|
|
{
|
|
|
|
|
InsetCollapsable::metrics(mi, dim);
|
|
|
|
|
dim_ = dim;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void InsetCharStyle::getDrawFont(LyXFont & font) const
|
|
|
|
|
{
|
|
|
|
|
font = params_.font;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
DispatchResult
|
|
|
|
|
InsetCharStyle::priv_dispatch(FuncRequest const & cmd,
|
|
|
|
|
idx_type & idx, pos_type & pos)
|
|
|
|
|
{
|
|
|
|
|
DispatchResult dr = InsetCollapsable::priv_dispatch(cmd, idx, pos);
|
|
|
|
|
setButtonLabel();
|
|
|
|
|
return dr;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
|
|
int outputVerbatim(std::ostream & os, InsetText inset)
|
|
|
|
|
{
|
|
|
|
|
int lines = 0;
|
2003-12-01 13:35:49 +00:00
|
|
|
|
ParagraphList::iterator par = inset.paragraphs().begin();
|
|
|
|
|
ParagraphList::iterator end = inset.paragraphs().end();
|
2003-11-12 14:38:26 +00:00
|
|
|
|
while (par != end) {
|
|
|
|
|
lyx::pos_type siz = par->size();
|
|
|
|
|
for (lyx::pos_type i = 0; i < siz; ++i) {
|
|
|
|
|
if (par->isNewline(i)) {
|
|
|
|
|
os << '\n';
|
|
|
|
|
++lines;
|
|
|
|
|
} else {
|
|
|
|
|
os << par->getChar(i);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
++par;
|
|
|
|
|
if (par != end) {
|
|
|
|
|
os << "\n";
|
|
|
|
|
lines ++;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return lines;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace anon
|
|
|
|
|
|
|
|
|
|
|
2003-11-20 01:22:51 +00:00
|
|
|
|
int InsetCharStyle::latex(Buffer const &, ostream & os,
|
|
|
|
|
OutputParams const &) const
|
2003-11-12 14:38:26 +00:00
|
|
|
|
{
|
2003-12-01 16:01:50 +00:00
|
|
|
|
os << "%\n\\" << params_.latexname;
|
|
|
|
|
if (!params_.latexparam.empty())
|
|
|
|
|
os << params_.latexparam;
|
|
|
|
|
os << "{";
|
2003-11-12 14:38:26 +00:00
|
|
|
|
int i = outputVerbatim(os, inset);
|
|
|
|
|
os << "}%\n";
|
|
|
|
|
i += 2;
|
|
|
|
|
return i;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-11-20 01:22:51 +00:00
|
|
|
|
int InsetCharStyle::linuxdoc(Buffer const &, std::ostream & os,
|
|
|
|
|
OutputParams const &) const
|
2003-11-12 14:38:26 +00:00
|
|
|
|
{
|
2003-12-01 16:01:50 +00:00
|
|
|
|
os << "<" << params_.latexname;
|
|
|
|
|
if (!params_.latexparam.empty())
|
|
|
|
|
os << " " << params_.latexparam;
|
|
|
|
|
os << ">";
|
2003-11-12 14:38:26 +00:00
|
|
|
|
int const i = outputVerbatim(os, inset);
|
|
|
|
|
os << "</" << params_.latexname << ">";
|
|
|
|
|
return i;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-11-20 01:22:51 +00:00
|
|
|
|
int InsetCharStyle::docbook(Buffer const &, std::ostream & os,
|
|
|
|
|
OutputParams const &) const
|
2003-11-12 14:38:26 +00:00
|
|
|
|
{
|
2003-12-01 16:01:50 +00:00
|
|
|
|
os << "<" << params_.latexname;
|
|
|
|
|
if (!params_.latexparam.empty())
|
|
|
|
|
os << " " << params_.latexparam;
|
|
|
|
|
os << ">";
|
2003-11-12 14:38:26 +00:00
|
|
|
|
int const i = outputVerbatim(os, inset);
|
|
|
|
|
os << "</" << params_.latexname << ">";
|
|
|
|
|
return i;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2003-11-20 01:22:51 +00:00
|
|
|
|
int InsetCharStyle::plaintext(Buffer const &, std::ostream & os,
|
|
|
|
|
OutputParams const & runparams) const
|
2003-11-12 14:38:26 +00:00
|
|
|
|
{
|
|
|
|
|
return outputVerbatim(os, inset);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void InsetCharStyle::validate(LaTeXFeatures & features) const
|
|
|
|
|
{
|
|
|
|
|
features.require(params_.type);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void InsetCharStyleParams::write(ostream & os) const
|
|
|
|
|
{
|
2003-11-28 10:12:04 +00:00
|
|
|
|
os << "CharStyle " << type << "\n";
|
2003-11-12 14:38:26 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void InsetCharStyleParams::read(LyXLex & lex)
|
|
|
|
|
{
|
|
|
|
|
if (lex.isOK()) {
|
|
|
|
|
lex.next();
|
|
|
|
|
string token = lex.getString();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (lex.isOK()) {
|
|
|
|
|
lex.next();
|
|
|
|
|
type = lex.getString();
|
|
|
|
|
}
|
|
|
|
|
}
|