mirror of
https://github.com/WarmUpTill/SceneSwitcher.git
synced 2026-04-10 11:16:05 -05:00
16 lines
520 B
C++
16 lines
520 B
C++
#pragma once
|
|
#include "hotkey.hpp"
|
|
|
|
void GetWindowList(std::vector<std::string> &windows);
|
|
void GetWindowList(QStringList &windows);
|
|
void GetCurrentWindowTitle(std::string &title);
|
|
bool isFullscreen(const std::string &title);
|
|
bool isMaximized(const std::string &title);
|
|
std::pair<int, int> getCursorPos();
|
|
int secondsSinceLastInput();
|
|
void GetProcessList(QStringList &processes);
|
|
bool isInFocus(const QString &executable);
|
|
void PressKeys(const std::vector<HotkeyType> keys);
|
|
void PlatformInit();
|
|
void PlatformCleanup();
|