* src/mathed/math_biginset.[Ch]

(infoize2): Implement to show name if the cursor is to the right


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@13757 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Georg Baum 2006-04-27 07:55:25 +00:00
parent 4d71376ec0
commit 850346d996
2 changed files with 8 additions and 0 deletions

View File

@ -98,6 +98,12 @@ void MathBigInset::normalize(NormalStream & os) const
} }
void MathBigInset::infoize2(std::ostream & os) const
{
os << name_;
}
bool MathBigInset::isBigInsetDelim(string const & delim) bool MathBigInset::isBigInsetDelim(string const & delim)
{ {
// mathed_draw_deco must handle these // mathed_draw_deco must handle these

View File

@ -32,6 +32,8 @@ public:
/// ///
void normalize(NormalStream & os) const; void normalize(NormalStream & os) const;
/// ///
void infoize2(std::ostream & os) const;
///
static bool isBigInsetDelim(std::string const &); static bool isBigInsetDelim(std::string const &);
private: private: