You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
libcutefish/screen/output.h

19 lines
200 B
C++

#pragma once
#include <QObject>
class Output
{
Q_GADGET
public:
enum Rotation {
None = 1,
Left = 2,
Inverted = 4,
Right = 8,
};
Q_ENUM(Rotation)
};