mirror of
https://gitea.msk.dinamika-avia.ru/Constanta-Design/RRJClient.git
synced 2026-03-28 05:25:39 +03:00
14 lines
220 B
C
14 lines
220 B
C
#ifndef MONITORINFO_H
|
|
#define MONITORINFO_H
|
|
|
|
#include <qrect.h>
|
|
#include <qstring.h>
|
|
|
|
struct monitorInfo {
|
|
QString deviceName;
|
|
QRect geometry;
|
|
bool isPrimary;
|
|
int displayIndex;
|
|
};
|
|
#endif // MONITORINFO_H
|