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"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class MathFracbaseInset : public MathNestInset {
|
|
|
|
|
public:
|
|
|
|
|
///
|
|
|
|
|
MathFracbaseInset();
|
2002-03-21 17:42:56 +00:00
|
|
|
|
///
|
2002-07-30 13:56:02 +00:00
|
|
|
|
bool idxUpDown(idx_type & idx, pos_type & pos, bool up, int targetx) const;
|
2001-08-08 17:26:30 +00:00
|
|
|
|
///
|
2002-07-26 13:13:20 +00:00
|
|
|
|
bool idxLeft(idx_type & idx, pos_type & pos) const;
|
2001-08-08 17:26:30 +00:00
|
|
|
|
///
|
2002-07-26 13:13:20 +00:00
|
|
|
|
bool idxRight(idx_type & idx, pos_type & pos) const;
|
2001-08-08 17:26:30 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif
|