RedPanda-CPP/RedPandaIDE/qsynedit/Types.h

15 lines
216 B
C
Raw Normal View History

2021-05-03 10:15:40 +08:00
#ifndef TYPES_H
#define TYPES_H
enum class SynSelectionMode {smNormal, smLine, smColumn};
struct BufferCoord {
int Char;
int Line;
};
struct DisplayCoord {
int Column;
int Row;
};
#endif // TYPES_H