mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-13 06:20:28 +00:00
fda98080cc
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2353 a592a061-630c-0410-9148-cb99ea01b6c8
30 lines
501 B
C++
30 lines
501 B
C++
// -*- C++ -*-
|
|
#ifndef MATH_SQRTINSET_H
|
|
#define MATH_SQRTINSET_H
|
|
|
|
#include "math_inset.h"
|
|
|
|
#ifdef __GNUG__
|
|
#pragma interface
|
|
#endif
|
|
|
|
/** The square root inset.
|
|
\author Alejandro Aguilar Siearra
|
|
*/
|
|
class MathSqrtInset : public MathInset {
|
|
public:
|
|
///
|
|
MathSqrtInset();
|
|
///
|
|
MathInset * clone() const;
|
|
///
|
|
void draw(Painter &, int x, int baseline);
|
|
///
|
|
void write(std::ostream &, bool fragile) const;
|
|
///
|
|
void writeNormal(std::ostream &) const;
|
|
///
|
|
void metrics(MathStyles st);
|
|
};
|
|
#endif
|