Added SDL_DISPLAYEVENT_MOVED to detect when display positioning changes

This commit is contained in:
Sam Lantinga 2022-12-08 12:46:13 -08:00
parent cfc7cac3c9
commit 264da8c127
4 changed files with 45 additions and 9 deletions

View file

@ -1,6 +1,14 @@
This is a list of major changes in SDL's version history. This is a list of major changes in SDL's version history.
---------------------------------------------------------------------------
2.28.0:
---------------------------------------------------------------------------
General:
* Added a display event SDL_DISPLAYEVENT_MOVED which is sent when the primary monitor changes or displays change position relative to each other
--------------------------------------------------------------------------- ---------------------------------------------------------------------------
2.26.0: 2.26.0:
--------------------------------------------------------------------------- ---------------------------------------------------------------------------

View file

@ -187,7 +187,8 @@ typedef enum
SDL_DISPLAYEVENT_NONE, /**< Never used */ SDL_DISPLAYEVENT_NONE, /**< Never used */
SDL_DISPLAYEVENT_ORIENTATION, /**< Display orientation has changed to data1 */ SDL_DISPLAYEVENT_ORIENTATION, /**< Display orientation has changed to data1 */
SDL_DISPLAYEVENT_CONNECTED, /**< Display has been added to the system */ SDL_DISPLAYEVENT_CONNECTED, /**< Display has been added to the system */
SDL_DISPLAYEVENT_DISCONNECTED /**< Display has been removed from the system */ SDL_DISPLAYEVENT_DISCONNECTED, /**< Display has been removed from the system */
SDL_DISPLAYEVENT_MOVED /**< Display has changed position */
} SDL_DisplayEventID; } SDL_DisplayEventID;
/** /**

View file

@ -294,9 +294,9 @@ WIN_GetDisplayNameVista_failed:
return NULL; return NULL;
} }
static SDL_bool WIN_AddDisplay(_THIS, HMONITOR hMonitor, const MONITORINFOEXW *info, SDL_bool send_event) static void WIN_AddDisplay(_THIS, HMONITOR hMonitor, const MONITORINFOEXW *info, int *display_index, SDL_bool send_event)
{ {
int i; int i, index = *display_index;
SDL_VideoDisplay display; SDL_VideoDisplay display;
SDL_DisplayData *displaydata; SDL_DisplayData *displaydata;
SDL_DisplayMode mode; SDL_DisplayMode mode;
@ -307,7 +307,7 @@ static SDL_bool WIN_AddDisplay(_THIS, HMONITOR hMonitor, const MONITORINFOEXW *i
#endif #endif
if (!WIN_GetDisplayMode(_this, info->szDevice, ENUM_CURRENT_SETTINGS, &mode, &orientation)) { if (!WIN_GetDisplayMode(_this, info->szDevice, ENUM_CURRENT_SETTINGS, &mode, &orientation)) {
return SDL_FALSE; return;
} }
// Prevent adding duplicate displays. Do this after we know the display is // Prevent adding duplicate displays. Do this after we know the display is
@ -316,22 +316,41 @@ static SDL_bool WIN_AddDisplay(_THIS, HMONITOR hMonitor, const MONITORINFOEXW *i
for (i = 0; i < _this->num_displays; ++i) { for (i = 0; i < _this->num_displays; ++i) {
SDL_DisplayData *driverdata = (SDL_DisplayData *)_this->displays[i].driverdata; SDL_DisplayData *driverdata = (SDL_DisplayData *)_this->displays[i].driverdata;
if (SDL_wcscmp(driverdata->DeviceName, info->szDevice) == 0) { if (SDL_wcscmp(driverdata->DeviceName, info->szDevice) == 0) {
SDL_bool moved = (index != i);
if (moved) {
SDL_VideoDisplay tmp;
SDL_assert(index < _this->num_displays);
SDL_memcpy(&tmp, &_this->displays[index], sizeof(tmp));
SDL_memcpy(&_this->displays[index], &_this->displays[i], sizeof(tmp));
SDL_memcpy(&_this->displays[i], &tmp, sizeof(tmp));
i = index;
}
driverdata->MonitorHandle = hMonitor; driverdata->MonitorHandle = hMonitor;
driverdata->IsValid = SDL_TRUE; driverdata->IsValid = SDL_TRUE;
if (!_this->setting_display_mode) { if (!_this->setting_display_mode) {
SDL_Rect bounds;
SDL_ResetDisplayModes(i); SDL_ResetDisplayModes(i);
SDL_SetCurrentDisplayMode(&_this->displays[i], &mode); SDL_SetCurrentDisplayMode(&_this->displays[i], &mode);
SDL_SetDesktopDisplayMode(&_this->displays[i], &mode); SDL_SetDesktopDisplayMode(&_this->displays[i], &mode);
if (WIN_GetDisplayBounds(_this, &_this->displays[i], &bounds) == 0) {
if (SDL_memcmp(&driverdata->bounds, &bounds, sizeof(bounds)) != 0 || moved) {
SDL_SendDisplayEvent(&_this->displays[i], SDL_DISPLAYEVENT_MOVED, 0);
}
}
SDL_SendDisplayEvent(&_this->displays[i], SDL_DISPLAYEVENT_ORIENTATION, orientation); SDL_SendDisplayEvent(&_this->displays[i], SDL_DISPLAYEVENT_ORIENTATION, orientation);
} }
return SDL_FALSE; goto done;
} }
} }
displaydata = (SDL_DisplayData *)SDL_calloc(1, sizeof(*displaydata)); displaydata = (SDL_DisplayData *)SDL_calloc(1, sizeof(*displaydata));
if (displaydata == NULL) { if (displaydata == NULL) {
return SDL_FALSE; return;
} }
SDL_memcpy(displaydata->DeviceName, info->szDevice, sizeof(displaydata->DeviceName)); SDL_memcpy(displaydata->DeviceName, info->szDevice, sizeof(displaydata->DeviceName));
displaydata->MonitorHandle = hMonitor; displaydata->MonitorHandle = hMonitor;
@ -351,15 +370,21 @@ static SDL_bool WIN_AddDisplay(_THIS, HMONITOR hMonitor, const MONITORINFOEXW *i
display.desktop_mode = mode; display.desktop_mode = mode;
display.current_mode = mode; display.current_mode = mode;
display.orientation = orientation; display.orientation = orientation;
display.device = _this;
display.driverdata = displaydata; display.driverdata = displaydata;
SDL_AddVideoDisplay(&display, send_event); WIN_GetDisplayBounds(_this, &display, &displaydata->bounds);
index = SDL_AddVideoDisplay(&display, send_event);
SDL_assert(index == *display_index);
SDL_free(display.name); SDL_free(display.name);
return SDL_TRUE;
done:
*display_index += 1;
} }
typedef struct _WIN_AddDisplaysData typedef struct _WIN_AddDisplaysData
{ {
SDL_VideoDevice *video_device; SDL_VideoDevice *video_device;
int display_index;
SDL_bool send_event; SDL_bool send_event;
SDL_bool want_primary; SDL_bool want_primary;
} WIN_AddDisplaysData; } WIN_AddDisplaysData;
@ -379,7 +404,7 @@ static BOOL CALLBACK WIN_AddDisplaysCallback(HMONITOR hMonitor,
const SDL_bool is_primary = ((info.dwFlags & MONITORINFOF_PRIMARY) == MONITORINFOF_PRIMARY); const SDL_bool is_primary = ((info.dwFlags & MONITORINFOF_PRIMARY) == MONITORINFOF_PRIMARY);
if (is_primary == data->want_primary) { if (is_primary == data->want_primary) {
WIN_AddDisplay(data->video_device, hMonitor, &info, data->send_event); WIN_AddDisplay(data->video_device, hMonitor, &info, &data->display_index, data->send_event);
} }
} }
@ -391,6 +416,7 @@ static void WIN_AddDisplays(_THIS, SDL_bool send_event)
{ {
WIN_AddDisplaysData callback_data; WIN_AddDisplaysData callback_data;
callback_data.video_device = _this; callback_data.video_device = _this;
callback_data.display_index = 0;
callback_data.send_event = send_event; callback_data.send_event = send_event;
callback_data.want_primary = SDL_TRUE; callback_data.want_primary = SDL_TRUE;

View file

@ -28,6 +28,7 @@ typedef struct
WCHAR DeviceName[32]; WCHAR DeviceName[32];
HMONITOR MonitorHandle; HMONITOR MonitorHandle;
SDL_bool IsValid; SDL_bool IsValid;
SDL_Rect bounds;
} SDL_DisplayData; } SDL_DisplayData;
typedef struct typedef struct