2001-08-08 17:26:30 +00:00
|
|
|
|
// -*- C++ -*-
|
2003-08-19 13:00:56 +00:00
|
|
|
|
/**
|
|
|
|
|
* \file math_fracbase.h
|
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
|
*
|
|
|
|
|
* \author Andr<EFBFBD> P<EFBFBD>nitz
|
|
|
|
|
*
|
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
|
*/
|
|
|
|
|
|
2001-08-08 17:26:30 +00:00
|
|
|
|
#ifndef MATH_FRACBASE_H
|
|
|
|
|
#define MATH_FRACBASE_H
|
|
|
|
|
|
|
|
|
|
#include "math_nestinset.h"
|
|
|
|
|
|
|
|
|
|
|
2006-09-16 18:11:38 +00:00
|
|
|
|
class InsetMathFracBase : public InsetMathNest {
|
2001-08-08 17:26:30 +00:00
|
|
|
|
public:
|
|
|
|
|
///
|
2006-09-16 18:11:38 +00:00
|
|
|
|
InsetMathFracBase();
|
2002-03-21 17:42:56 +00:00
|
|
|
|
///
|
2004-01-26 10:13:15 +00:00
|
|
|
|
bool idxUpDown(LCursor &, bool up) const;
|
2001-08-08 17:26:30 +00:00
|
|
|
|
///
|
2004-01-16 12:36:23 +00:00
|
|
|
|
bool idxLeft(LCursor &) const;
|
2001-08-08 17:26:30 +00:00
|
|
|
|
///
|
2004-01-16 12:36:23 +00:00
|
|
|
|
bool idxRight(LCursor &) const;
|
2001-08-08 17:26:30 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif
|