view dep/animia/src/win.cc @ 166:54c5d80a737e

dep/animia: add libutil method I changed the "linux" method to be "proc", because it isn't exactly Linux specific this commit also has some changes to the x11 stuff: instead of enumerating over only top-level windows, we iterate over ALL of them this is because many X11 apps actually use multiple windows for some reason, I still can't get it to work with VLC, but it picks up Firefox...
author paper@DavesDouble.local
date Sun, 19 Nov 2023 04:21:56 -0500
parents 80d6b28eb29f
children 2d5823df870f
line wrap: on
line source

#include "animia/win.h"

#ifdef WIN32
#	include "animia/win/win32.h"
#elif MACOSX
#	include "animia/win/quartz.h"
#elif X11
#	include "animia/win/x11.h"
#endif

namespace animia::internal {

#ifdef WIN32
win32::Win32WinTools os_win;
#elif MACOSX
quartz::QuartzWinTools os_win;
#elif X11
x11::X11WinTools os_win;
#else
BaseWinTools os_win;
#endif

BaseWinTools& win = os_win;

} // namespace animia::internal