mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-12-16 03:37:59 +01:00
* [Workspaces] Add move functionality * spell checker * [Workspaces] Modify Arranger to move apps without launch * moved ipc helper * removed callback * use LauncherStatus in WindowArranger * wait for launching next app * launch in a separate thread and protect by mutexes * update app version in advance * changed canceling launch * increased waiting time * Fix optional parameter load from json * changed arranger waiting time * additional waiting time for Outlook * added app id * ensure ids before launch * set id in editor * minor updates * [Workspaces] Move: Get the nearest window when moving a window * [Workspaces] convert optional boolean to enum to avoid json problems * Handle case when the new Application Property "moveIfExists" does not exist * Re-implementing app-window pairing for moving feature. * spell checker * XAML formatting * Fixing bug: IPC message not arriving * spell checker * Removing app-level-setting for move app. Also fixed compiler errors due styling. * Updating editor window layout * Re-implementing window positioning UI elements * XAML formatting * Code review findings * Code cleanup * Code cleanup * Code cleanup * code cleanup * Code cleanup * Code cleanup * fix Move attribute after launch and snapshot * Extend WindowArranger with PWA functionality to detect different PWA apps. PwaHelper moved to the common library * fix repeat counter in the editor * Code optimization * code cleanup, optimization * fix double-processing window --------- Co-authored-by: Seraphima <zykovas91@gmail.com> Co-authored-by: donlaci <donlaci@yahoo.com>
42 lines
1.4 KiB
C++
42 lines
1.4 KiB
C++
#pragma once
|
|
|
|
#include <WindowCreationHandler.h>
|
|
|
|
#include <WorkspacesLib/AppUtils.h>
|
|
#include <WorkspacesLib/IPCHelper.h>
|
|
#include <WorkspacesLib/LaunchingStatus.h>
|
|
#include <WorkspacesLib/PwaHelper.h>
|
|
#include <WorkspacesLib/WorkspacesData.h>
|
|
|
|
struct WindowWithDistance
|
|
{
|
|
int distance;
|
|
HWND window;
|
|
};
|
|
|
|
class WindowArranger
|
|
{
|
|
public:
|
|
WindowArranger(WorkspacesData::WorkspacesProject project);
|
|
~WindowArranger() = default;
|
|
|
|
private:
|
|
const WorkspacesData::WorkspacesProject m_project;
|
|
const std::vector<HWND> m_windowsBefore;
|
|
const std::vector<WorkspacesData::WorkspacesProject::Monitor> m_monitors;
|
|
const Utils::Apps::AppList m_installedApps;
|
|
//const WindowCreationHandler m_windowCreationHandler;
|
|
IPCHelper m_ipcHelper;
|
|
LaunchingStatus m_launchingStatus;
|
|
std::optional<WindowWithDistance> GetNearestWindow(const WorkspacesData::WorkspacesProject::Application& app, const std::vector<HWND>& movedWindows, Utils::PwaHelper& pwaHelper);
|
|
bool TryMoveWindow(const WorkspacesData::WorkspacesProject::Application& app, HWND windowToMove);
|
|
|
|
//void onWindowCreated(HWND window);
|
|
void processWindows(bool processAll);
|
|
void processWindow(HWND window);
|
|
bool moveWindow(HWND window, const WorkspacesData::WorkspacesProject::Application& app);
|
|
|
|
void receiveIpcMessage(const std::wstring& message);
|
|
void sendUpdatedState(const WorkspacesData::LaunchingAppState& data) const;
|
|
};
|