The mode changing math insets already provide the needed info, so

this is definitely better.


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@25284 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Enrico Forestieri 2008-06-16 20:25:44 +00:00
parent 8db9fcfcb9
commit 4781794e4e

View File

@ -73,11 +73,6 @@ using cap::cutSelection;
using cap::replaceSelection; using cap::replaceSelection;
using cap::selClearOrDel; using cap::selClearOrDel;
string const text_commands[] =
{ "text", "textrm", "textsf", "texttt", "textmd", "textbf", "textup", "textit",
"textsl", "textsc", "textnormal" };
int const num_text_commands = sizeof(text_commands) / sizeof(*text_commands);
InsetMathNest::InsetMathNest(idx_type nargs) InsetMathNest::InsetMathNest(idx_type nargs)
: cells_(nargs), lock_(false), mouse_hover_(false) : cells_(nargs), lock_(false), mouse_hover_(false)
@ -342,13 +337,8 @@ MathData InsetMathNest::glue() const
void InsetMathNest::write(WriteStream & os) const void InsetMathNest::write(WriteStream & os) const
{ {
bool textmode = os.textMode(); bool textmode = os.textMode();
string const latex_name = to_ascii(name()); os.textMode(currentMode() == TEXT_MODE);
for (int i = 0; i < num_text_commands; ++i) { docstring const latex_name = name().c_str();
if (latex_name == text_commands[i]) {
os.textMode(true);
break;
}
}
os << '\\' << latex_name.c_str(); os << '\\' << latex_name.c_str();
for (size_t i = 0; i < nargs(); ++i) for (size_t i = 0; i < nargs(); ++i)
os << '{' << cell(i) << '}'; os << '{' << cell(i) << '}';