mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
cc719fe0ce
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@8013 a592a061-630c-0410-9148-cb99ea01b6c8
93 lines
1.7 KiB
C
93 lines
1.7 KiB
C
/**
|
|
* \file command_inset.C
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author André Pönitz
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#include "command_inset.h"
|
|
#include "math_data.h"
|
|
#include "math_mathmlstream.h"
|
|
#include "dispatchresult.h"
|
|
#include "funcrequest.h"
|
|
#include "support/std_sstream.h"
|
|
|
|
|
|
using std::string;
|
|
using std::auto_ptr;
|
|
using std::ostringstream;
|
|
|
|
|
|
CommandInset::CommandInset(string const & name)
|
|
: MathNestInset(2),
|
|
name_(name),
|
|
set_label_(false)
|
|
{
|
|
lock_ = true;
|
|
}
|
|
|
|
|
|
auto_ptr<InsetBase> CommandInset::clone() const
|
|
{
|
|
return auto_ptr<InsetBase>(new CommandInset(*this));
|
|
}
|
|
|
|
|
|
void CommandInset::metrics(MetricsInfo & mi, Dimension & dim) const
|
|
{
|
|
if (!set_label_) {
|
|
set_label_ = true;
|
|
button_.update(screenLabel(), true);
|
|
}
|
|
button_.metrics(mi, dim);
|
|
}
|
|
|
|
|
|
void CommandInset::draw(PainterInfo & pi, int x, int y) const
|
|
{
|
|
button_.draw(pi, x, y);
|
|
}
|
|
|
|
|
|
DispatchResult
|
|
CommandInset::priv_dispatch(FuncRequest const & cmd,
|
|
idx_type & idx, pos_type & pos)
|
|
{
|
|
switch (cmd.action) {
|
|
default:
|
|
return MathNestInset::priv_dispatch(cmd, idx, pos);
|
|
}
|
|
return DispatchResult(false);
|
|
}
|
|
|
|
|
|
void CommandInset::write(WriteStream & os) const
|
|
{
|
|
os << '\\' << name_.c_str();
|
|
if (cell(1).size())
|
|
os << '[' << cell(1) << ']';
|
|
os << '{' << cell(0) << '}';
|
|
}
|
|
|
|
|
|
string const CommandInset::screenLabel() const
|
|
{
|
|
return name_;
|
|
}
|
|
|
|
|
|
string const CommandInset::createDialogStr(string const & name) const
|
|
{
|
|
ostringstream data;
|
|
data << name << " LatexCommand ";
|
|
WriteStream wsdata(data);
|
|
write(wsdata);
|
|
wsdata << "\n\\end_inset\n\n";
|
|
return data.str();
|
|
}
|