mirror of
https://github.com/WarmUpTill/SceneSwitcher.git
synced 2026-04-15 22:27:00 -05:00
Moving files from the "src/" folder into "src/legacy", "src/macro-core", and "src/utils" was necessary as it was becoming a bit too cluttered.
20 lines
594 B
C++
20 lines
594 B
C++
#pragma once
|
|
#include "hotkey.hpp"
|
|
|
|
#include <vector>
|
|
#include <string>
|
|
#include <QStringList>
|
|
|
|
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, int duration);
|
|
void PlatformInit();
|
|
void PlatformCleanup();
|