mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
31059d1741
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18043 a592a061-630c-0410-9148-cb99ea01b6c8
83 lines
1.4 KiB
C++
83 lines
1.4 KiB
C++
/**
|
|
* \file CommandInset.cpp
|
|
* 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 "CommandInset.h"
|
|
#include "MathData.h"
|
|
#include "MathStream.h"
|
|
#include "DispatchResult.h"
|
|
#include "FuncRequest.h"
|
|
|
|
#include <sstream>
|
|
|
|
|
|
namespace lyx {
|
|
|
|
using std::auto_ptr;
|
|
using std::string;
|
|
|
|
CommandInset::CommandInset(docstring const & name)
|
|
: InsetMathNest(2), name_(name), set_label_(false)
|
|
{
|
|
lock_ = true;
|
|
}
|
|
|
|
|
|
auto_ptr<InsetBase> CommandInset::doClone() const
|
|
{
|
|
return auto_ptr<InsetBase>(new CommandInset(*this));
|
|
}
|
|
|
|
|
|
bool CommandInset::metrics(MetricsInfo & mi, Dimension & dim) const
|
|
{
|
|
if (!set_label_) {
|
|
set_label_ = true;
|
|
button_.update(screenLabel(), true);
|
|
}
|
|
button_.metrics(mi, dim);
|
|
if (dim_ == dim)
|
|
return false;
|
|
dim_ = dim;
|
|
return true;
|
|
}
|
|
|
|
|
|
InsetBase * CommandInset::editXY(Cursor & cur, int /*x*/, int /*y*/)
|
|
{
|
|
edit(cur, true);
|
|
return this;
|
|
}
|
|
|
|
|
|
void CommandInset::draw(PainterInfo & pi, int x, int y) const
|
|
{
|
|
button_.draw(pi, x, y);
|
|
setPosCache(pi, x, y);
|
|
}
|
|
|
|
|
|
void CommandInset::write(WriteStream & os) const
|
|
{
|
|
os << '\\' << name_.c_str();
|
|
if (cell(1).size())
|
|
os << '[' << cell(1) << ']';
|
|
os << '{' << cell(0) << '}';
|
|
}
|
|
|
|
|
|
docstring const CommandInset::screenLabel() const
|
|
{
|
|
return name_;
|
|
}
|
|
|
|
} // namespace lyx
|