lyx_mirror/src/mathed/math_biginset.h
Lars Gullik Bjønnes 2b8ef58dc0 ws cleanup
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3804 a592a061-630c-0410-9148-cb99ea01b6c8
2002-03-21 17:42:56 +00:00

44 lines
718 B
C++

// -*- C++ -*-
#ifndef MATH_BIGINSET_H
#define MATH_BIGINSET_H
#include "math_diminset.h"
#include "LString.h"
#ifdef __GNUG__
#pragma interface
#endif
/** Inset for \bigl & Co.
\author André Pönitz
*/
class MathBigInset : public MathDimInset {
public:
///
MathBigInset(string const & name, string const & delim);
///
MathInset * clone() const;
///
void draw(Painter &, int x, int y) const;
///
void write(WriteStream & os) const;
///
void metrics(MathMetricsInfo const & st) const;
///
void normalize(NormalStream & os) const;
private:
///
size_type size() const;
///
double increase() const;
/// \bigl or what?
string const name_;
/// ( or [ or Vert...
string const delim_;
};
#endif