kakoune/src/coord.hh

92 lines
2.4 KiB
C++
Raw Normal View History

#ifndef coord_hh_INCLUDED
#define coord_hh_INCLUDED
#include "units.hh"
namespace Kakoune
{
template<typename EffectiveType, typename LineType, typename ColumnType>
struct LineAndColumn
{
LineType line;
ColumnType column;
constexpr LineAndColumn(LineType line = 0, ColumnType column = 0)
: line(line), column(column) {}
2013-07-26 00:44:00 +02:00
constexpr EffectiveType operator+(EffectiveType other) const
{
return EffectiveType(line + other.line, column + other.column);
}
2013-07-26 00:44:00 +02:00
EffectiveType& operator+=(EffectiveType other)
{
line += other.line;
column += other.column;
2011-09-19 23:55:58 +02:00
return *static_cast<EffectiveType*>(this);
}
2013-07-26 00:44:00 +02:00
constexpr EffectiveType operator-(EffectiveType other) const
{
return EffectiveType(line - other.line, column - other.column);
}
2013-07-26 00:44:00 +02:00
EffectiveType& operator-=(EffectiveType other)
{
line -= other.line;
column -= other.column;
2011-09-19 23:55:58 +02:00
return *static_cast<EffectiveType*>(this);
}
2013-07-26 00:44:00 +02:00
constexpr bool operator< (EffectiveType other) const
{
2012-09-04 23:54:10 +02:00
return (line != other.line) ? line < other.line
: column < other.column;
}
2013-07-26 00:44:00 +02:00
constexpr bool operator<= (EffectiveType other) const
{
2012-09-04 23:54:10 +02:00
return (line != other.line) ? line < other.line
: column <= other.column;
}
2013-07-26 00:44:00 +02:00
constexpr bool operator> (EffectiveType other) const
{
2012-09-04 23:54:10 +02:00
return (line != other.line) ? line > other.line
: column > other.column;
}
2013-07-26 00:44:00 +02:00
constexpr bool operator>= (EffectiveType other) const
{
2012-09-04 23:54:10 +02:00
return (line != other.line) ? line > other.line
: column >= other.column;
}
2013-07-26 00:44:00 +02:00
constexpr bool operator== (EffectiveType other) const
{
return line == other.line and column == other.column;
}
2013-07-26 00:44:00 +02:00
constexpr bool operator!= (EffectiveType other) const
{
return line != other.line or column != other.column;
}
};
struct ByteCoord : LineAndColumn<ByteCoord, LineCount, ByteCount>
{
constexpr ByteCoord(LineCount line = 0, ByteCount column = 0)
: LineAndColumn(line, column) {}
};
struct CharCoord : LineAndColumn<CharCoord, LineCount, CharCount>
{
constexpr CharCoord(LineCount line = 0, CharCount column = 0)
: LineAndColumn(line, column) {}
};
}
#endif // coord_hh_INCLUDED