#pragma once #include "hotkey.hpp" void GetWindowList(std::vector &windows); void GetWindowList(QStringList &windows); void GetCurrentWindowTitle(std::string &title); bool isFullscreen(const std::string &title); bool isMaximized(const std::string &title); std::pair getCursorPos(); int secondsSinceLastInput(); void GetProcessList(QStringList &processes); bool isInFocus(const QString &executable); void PressKeys(const std::vector keys); void PlatformInit(); void PlatformCleanup();