From e58cbc6278737fbf2c9d3e8fd17e267d74f7e5bb Mon Sep 17 00:00:00 2001 From: WarmUpTill Date: Tue, 4 Oct 2016 22:59:47 +0200 Subject: [PATCH] rewrite for UI --- switcher.h | 35 ----------------------------------- 1 file changed, 35 deletions(-) delete mode 100644 switcher.h diff --git a/switcher.h b/switcher.h deleted file mode 100644 index c240703e..00000000 --- a/switcher.h +++ /dev/null @@ -1,35 +0,0 @@ -#pragma once -#include "settings.h" -#include -#include -#include -#include - -using namespace std; - -class Switcher { -public: - bool getIsRunning(); - void firstLoad(); - void load(); - void start(); - void stop(); - void openUI(); - string getSettingsFilePath(); - void setSettingsFilePath(string path); - thread switcherThread; - ~Switcher(); -private: - bool isRunning = true; - Settings settings; - map settingsMap; - pair, vector> sceneRoundTrip; - vector pauseScenes; - vector ignoreNames; - void switcherThreadFunc(); - bool isWindowFullscreen(); - string GetActiveWindowTitle(); - pair getCursorXY(); - mutex mtx; - condition_variable terminate; -};