mirror of
https://github.com/TES3MP/TES3MP.git
synced 2025-09-28 15:41:13 -04:00
19 lines
358 B
C++
19 lines
358 B
C++
#ifndef CSV_WIDGET_INSTANCEDRAGMODES_H
|
|
#define CSV_WIDGET_INSTANCEDRAGMODES_H
|
|
|
|
namespace CSVRender
|
|
{
|
|
enum DragMode
|
|
{
|
|
DragMode_None,
|
|
DragMode_Move,
|
|
DragMode_Rotate,
|
|
DragMode_Scale,
|
|
DragMode_Select_Only,
|
|
DragMode_Select_Add,
|
|
DragMode_Select_Remove,
|
|
DragMode_Select_Invert
|
|
};
|
|
}
|
|
#endif
|