2001-08-08 17:26:30 +00:00
|
|
|
// -*- C++ -*-
|
|
|
|
#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
|