2019-09-05 00:26:26 +08:00
|
|
|
#include "pch.h"
|
|
|
|
|
2020-02-10 21:59:51 +08:00
|
|
|
#include "util.h"
|
2019-12-17 16:21:46 +08:00
|
|
|
#include "lib/ZoneSet.h"
|
2020-05-26 22:01:12 +08:00
|
|
|
#include "Settings.h"
|
2020-07-22 16:39:13 +08:00
|
|
|
#include "FancyZonesData.h"
|
|
|
|
#include "FancyZonesDataTypes.h"
|
2019-12-17 16:21:46 +08:00
|
|
|
|
2020-02-10 21:59:51 +08:00
|
|
|
#include <common/dpi_aware.h>
|
|
|
|
|
2020-07-22 16:39:13 +08:00
|
|
|
#include <utility>
|
|
|
|
|
2020-02-10 21:59:51 +08:00
|
|
|
namespace
|
|
|
|
{
|
|
|
|
constexpr int C_MULTIPLIER = 10000;
|
2020-07-22 16:39:13 +08:00
|
|
|
constexpr int MAX_ZONE_COUNT = 50;
|
2020-02-10 21:59:51 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
struct GridLayoutInfo {
|
|
|
|
int rows;
|
|
|
|
int columns;
|
|
|
|
int rowsPercents[MAX_ZONE_COUNT];
|
|
|
|
int columnsPercents[MAX_ZONE_COUNT];
|
|
|
|
int cellChildMap[MAX_ZONE_COUNT][MAX_ZONE_COUNT];
|
|
|
|
};
|
|
|
|
*/
|
|
|
|
|
2020-07-22 16:39:13 +08:00
|
|
|
auto l = FancyZonesDataTypes::GridLayoutInfo(FancyZonesDataTypes::GridLayoutInfo::Minimal{ .rows = 1, .columns = 1 });
|
2020-02-10 21:59:51 +08:00
|
|
|
// PriorityGrid layout is unique for zoneCount <= 11. For zoneCount > 11 PriorityGrid is same as Grid
|
2020-07-22 16:39:13 +08:00
|
|
|
FancyZonesDataTypes::GridLayoutInfo predefinedPriorityGridLayouts[11] = {
|
2020-02-10 21:59:51 +08:00
|
|
|
/* 1 */
|
2020-07-22 16:39:13 +08:00
|
|
|
FancyZonesDataTypes::GridLayoutInfo(FancyZonesDataTypes::GridLayoutInfo::Full{
|
2020-02-10 21:59:51 +08:00
|
|
|
.rows = 1,
|
|
|
|
.columns = 1,
|
|
|
|
.rowsPercents = { 10000 },
|
|
|
|
.columnsPercents = { 10000 },
|
|
|
|
.cellChildMap = { { 0 } } }),
|
|
|
|
/* 2 */
|
2020-07-22 16:39:13 +08:00
|
|
|
FancyZonesDataTypes::GridLayoutInfo(FancyZonesDataTypes::GridLayoutInfo::Full{
|
2020-02-10 21:59:51 +08:00
|
|
|
.rows = 1,
|
|
|
|
.columns = 2,
|
|
|
|
.rowsPercents = { 10000 },
|
|
|
|
.columnsPercents = { 6667, 3333 },
|
|
|
|
.cellChildMap = { { 0, 1 } } }),
|
|
|
|
/* 3 */
|
2020-07-22 16:39:13 +08:00
|
|
|
FancyZonesDataTypes::GridLayoutInfo(FancyZonesDataTypes::GridLayoutInfo::Full{
|
2020-02-10 21:59:51 +08:00
|
|
|
.rows = 1,
|
|
|
|
.columns = 3,
|
|
|
|
.rowsPercents = { 10000 },
|
|
|
|
.columnsPercents = { 2500, 5000, 2500 },
|
|
|
|
.cellChildMap = { { 0, 1, 2 } } }),
|
|
|
|
/* 4 */
|
2020-07-22 16:39:13 +08:00
|
|
|
FancyZonesDataTypes::GridLayoutInfo(FancyZonesDataTypes::GridLayoutInfo::Full{
|
2020-02-10 21:59:51 +08:00
|
|
|
.rows = 2,
|
|
|
|
.columns = 3,
|
|
|
|
.rowsPercents = { 5000, 5000 },
|
|
|
|
.columnsPercents = { 2500, 5000, 2500 },
|
|
|
|
.cellChildMap = { { 0, 1, 2 }, { 0, 1, 3 } } }),
|
|
|
|
/* 5 */
|
2020-07-22 16:39:13 +08:00
|
|
|
FancyZonesDataTypes::GridLayoutInfo(FancyZonesDataTypes::GridLayoutInfo::Full{
|
2020-02-10 21:59:51 +08:00
|
|
|
.rows = 2,
|
|
|
|
.columns = 3,
|
|
|
|
.rowsPercents = { 5000, 5000 },
|
|
|
|
.columnsPercents = { 2500, 5000, 2500 },
|
|
|
|
.cellChildMap = { { 0, 1, 2 }, { 3, 1, 4 } } }),
|
|
|
|
/* 6 */
|
2020-07-22 16:39:13 +08:00
|
|
|
FancyZonesDataTypes::GridLayoutInfo(FancyZonesDataTypes::GridLayoutInfo::Full{
|
2020-02-10 21:59:51 +08:00
|
|
|
.rows = 3,
|
|
|
|
.columns = 3,
|
|
|
|
.rowsPercents = { 3333, 3334, 3333 },
|
|
|
|
.columnsPercents = { 2500, 5000, 2500 },
|
|
|
|
.cellChildMap = { { 0, 1, 2 }, { 0, 1, 3 }, { 4, 1, 5 } } }),
|
|
|
|
/* 7 */
|
2020-07-22 16:39:13 +08:00
|
|
|
FancyZonesDataTypes::GridLayoutInfo(FancyZonesDataTypes::GridLayoutInfo::Full{
|
2020-02-10 21:59:51 +08:00
|
|
|
.rows = 3,
|
|
|
|
.columns = 3,
|
|
|
|
.rowsPercents = { 3333, 3334, 3333 },
|
|
|
|
.columnsPercents = { 2500, 5000, 2500 },
|
|
|
|
.cellChildMap = { { 0, 1, 2 }, { 3, 1, 4 }, { 5, 1, 6 } } }),
|
|
|
|
/* 8 */
|
2020-07-22 16:39:13 +08:00
|
|
|
FancyZonesDataTypes::GridLayoutInfo(FancyZonesDataTypes::GridLayoutInfo::Full{
|
2020-02-10 21:59:51 +08:00
|
|
|
.rows = 3,
|
|
|
|
.columns = 4,
|
|
|
|
.rowsPercents = { 3333, 3334, 3333 },
|
|
|
|
.columnsPercents = { 2500, 2500, 2500, 2500 },
|
|
|
|
.cellChildMap = { { 0, 1, 2, 3 }, { 4, 1, 2, 5 }, { 6, 1, 2, 7 } } }),
|
|
|
|
/* 9 */
|
2020-07-22 16:39:13 +08:00
|
|
|
FancyZonesDataTypes::GridLayoutInfo(FancyZonesDataTypes::GridLayoutInfo::Full{
|
2020-02-10 21:59:51 +08:00
|
|
|
.rows = 3,
|
|
|
|
.columns = 4,
|
|
|
|
.rowsPercents = { 3333, 3334, 3333 },
|
|
|
|
.columnsPercents = { 2500, 2500, 2500, 2500 },
|
|
|
|
.cellChildMap = { { 0, 1, 2, 3 }, { 4, 1, 2, 5 }, { 6, 1, 7, 8 } } }),
|
|
|
|
/* 10 */
|
2020-07-22 16:39:13 +08:00
|
|
|
FancyZonesDataTypes::GridLayoutInfo(FancyZonesDataTypes::GridLayoutInfo::Full{
|
2020-02-10 21:59:51 +08:00
|
|
|
.rows = 3,
|
|
|
|
.columns = 4,
|
|
|
|
.rowsPercents = { 3333, 3334, 3333 },
|
|
|
|
.columnsPercents = { 2500, 2500, 2500, 2500 },
|
|
|
|
.cellChildMap = { { 0, 1, 2, 3 }, { 4, 1, 5, 6 }, { 7, 1, 8, 9 } } }),
|
|
|
|
/* 11 */
|
2020-07-22 16:39:13 +08:00
|
|
|
FancyZonesDataTypes::GridLayoutInfo(FancyZonesDataTypes::GridLayoutInfo::Full{
|
2020-02-10 21:59:51 +08:00
|
|
|
.rows = 3,
|
|
|
|
.columns = 4,
|
|
|
|
.rowsPercents = { 3333, 3334, 3333 },
|
|
|
|
.columnsPercents = { 2500, 2500, 2500, 2500 },
|
|
|
|
.cellChildMap = { { 0, 1, 2, 3 }, { 4, 1, 5, 6 }, { 7, 8, 9, 10 } } }),
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2019-09-05 00:26:26 +08:00
|
|
|
struct ZoneSet : winrt::implements<ZoneSet, IZoneSet>
|
|
|
|
{
|
|
|
|
public:
|
2020-02-10 21:59:51 +08:00
|
|
|
ZoneSet(ZoneSetConfig const& config) :
|
|
|
|
m_config(config)
|
2019-09-05 00:26:26 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
ZoneSet(ZoneSetConfig const& config, std::vector<winrt::com_ptr<IZone>> zones) :
|
|
|
|
m_config(config),
|
|
|
|
m_zones(zones)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2020-02-10 21:59:51 +08:00
|
|
|
IFACEMETHODIMP_(GUID)
|
|
|
|
Id() noexcept { return m_config.Id; }
|
2020-07-22 16:39:13 +08:00
|
|
|
IFACEMETHODIMP_(FancyZonesDataTypes::ZoneSetLayoutType)
|
2020-02-10 21:59:51 +08:00
|
|
|
LayoutType() noexcept { return m_config.LayoutType; }
|
2019-11-19 07:29:42 +08:00
|
|
|
IFACEMETHODIMP AddZone(winrt::com_ptr<IZone> zone) noexcept;
|
2020-04-10 22:09:08 +08:00
|
|
|
IFACEMETHODIMP_(std::vector<int>)
|
|
|
|
ZonesFromPoint(POINT pt) noexcept;
|
2020-05-26 22:01:12 +08:00
|
|
|
IFACEMETHODIMP_(std::vector<int>)
|
|
|
|
GetZoneIndexSetFromWindow(HWND window) noexcept;
|
2020-02-10 21:59:51 +08:00
|
|
|
IFACEMETHODIMP_(std::vector<winrt::com_ptr<IZone>>)
|
|
|
|
GetZones() noexcept { return m_zones; }
|
|
|
|
IFACEMETHODIMP_(void)
|
2020-06-01 22:14:29 +08:00
|
|
|
MoveWindowIntoZoneByIndex(HWND window, HWND zoneWindow, int index) noexcept;
|
2020-04-10 22:09:08 +08:00
|
|
|
IFACEMETHODIMP_(void)
|
2020-06-01 22:14:29 +08:00
|
|
|
MoveWindowIntoZoneByIndexSet(HWND window, HWND windowZone, const std::vector<int>& indexSet) noexcept;
|
2020-03-25 01:50:26 +08:00
|
|
|
IFACEMETHODIMP_(bool)
|
|
|
|
MoveWindowIntoZoneByDirection(HWND window, HWND zoneWindow, DWORD vkCode, bool cycle) noexcept;
|
2020-02-10 21:59:51 +08:00
|
|
|
IFACEMETHODIMP_(void)
|
|
|
|
MoveWindowIntoZoneByPoint(HWND window, HWND zoneWindow, POINT ptClient) noexcept;
|
|
|
|
IFACEMETHODIMP_(bool)
|
2020-08-07 16:06:25 +08:00
|
|
|
CalculateZones(RECT workArea, int zoneCount, int spacing) noexcept;
|
2020-05-26 22:01:12 +08:00
|
|
|
IFACEMETHODIMP_(bool)
|
|
|
|
IsZoneEmpty(int zoneIndex) noexcept;
|
2019-09-05 00:26:26 +08:00
|
|
|
|
|
|
|
private:
|
2020-02-10 21:59:51 +08:00
|
|
|
bool CalculateFocusLayout(Rect workArea, int zoneCount) noexcept;
|
2020-07-22 16:39:13 +08:00
|
|
|
bool CalculateColumnsAndRowsLayout(Rect workArea, FancyZonesDataTypes::ZoneSetLayoutType type, int zoneCount, int spacing) noexcept;
|
|
|
|
bool CalculateGridLayout(Rect workArea, FancyZonesDataTypes::ZoneSetLayoutType type, int zoneCount, int spacing) noexcept;
|
2020-02-10 21:59:51 +08:00
|
|
|
bool CalculateUniquePriorityGridLayout(Rect workArea, int zoneCount, int spacing) noexcept;
|
|
|
|
bool CalculateCustomLayout(Rect workArea, int spacing) noexcept;
|
2020-07-22 16:39:13 +08:00
|
|
|
bool CalculateGridZones(Rect workArea, FancyZonesDataTypes::GridLayoutInfo gridLayoutInfo, int spacing);
|
2020-05-26 22:01:12 +08:00
|
|
|
void StampWindow(HWND window, size_t bitmask) noexcept;
|
2019-09-05 00:26:26 +08:00
|
|
|
|
|
|
|
std::vector<winrt::com_ptr<IZone>> m_zones;
|
2020-05-26 22:01:12 +08:00
|
|
|
std::map<HWND, std::vector<int>> m_windowIndexSet;
|
2019-09-05 00:26:26 +08:00
|
|
|
ZoneSetConfig m_config;
|
|
|
|
};
|
|
|
|
|
2019-11-19 07:29:42 +08:00
|
|
|
IFACEMETHODIMP ZoneSet::AddZone(winrt::com_ptr<IZone> zone) noexcept
|
2019-09-05 00:26:26 +08:00
|
|
|
{
|
2019-11-19 07:29:42 +08:00
|
|
|
m_zones.emplace_back(zone);
|
2019-09-05 00:26:26 +08:00
|
|
|
|
|
|
|
// Important not to set Id 0 since we store it in the HWND using SetProp.
|
|
|
|
// SetProp(0) doesn't really work.
|
|
|
|
zone->SetId(m_zones.size());
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
2020-04-10 22:09:08 +08:00
|
|
|
IFACEMETHODIMP_(std::vector<int>)
|
|
|
|
ZoneSet::ZonesFromPoint(POINT pt) noexcept
|
2019-09-05 00:26:26 +08:00
|
|
|
{
|
2020-04-10 22:09:08 +08:00
|
|
|
const int SENSITIVITY_RADIUS = 20;
|
|
|
|
std::vector<int> capturedZones;
|
|
|
|
std::vector<int> strictlyCapturedZones;
|
|
|
|
for (size_t i = 0; i < m_zones.size(); i++)
|
2019-09-05 00:26:26 +08:00
|
|
|
{
|
2020-04-10 22:09:08 +08:00
|
|
|
auto zone = m_zones[i];
|
|
|
|
RECT newZoneRect = zone->GetZoneRect();
|
|
|
|
if (newZoneRect.left < newZoneRect.right && newZoneRect.top < newZoneRect.bottom) // proper zone
|
2019-09-05 00:26:26 +08:00
|
|
|
{
|
2020-04-10 22:09:08 +08:00
|
|
|
if (newZoneRect.left - SENSITIVITY_RADIUS <= pt.x && pt.x <= newZoneRect.right + SENSITIVITY_RADIUS &&
|
|
|
|
newZoneRect.top - SENSITIVITY_RADIUS <= pt.y && pt.y <= newZoneRect.bottom + SENSITIVITY_RADIUS)
|
2019-09-05 00:26:26 +08:00
|
|
|
{
|
2020-04-10 22:09:08 +08:00
|
|
|
capturedZones.emplace_back(static_cast<int>(i));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (newZoneRect.left <= pt.x && pt.x < newZoneRect.right &&
|
|
|
|
newZoneRect.top <= pt.y && pt.y < newZoneRect.bottom)
|
|
|
|
{
|
|
|
|
strictlyCapturedZones.emplace_back(static_cast<int>(i));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-09-27 01:47:44 +08:00
|
|
|
|
2020-04-10 22:09:08 +08:00
|
|
|
// If only one zone is captured, but it's not strictly captured
|
|
|
|
// don't consider it as captured
|
|
|
|
if (capturedZones.size() == 1 && strictlyCapturedZones.size() == 0)
|
|
|
|
{
|
|
|
|
return {};
|
|
|
|
}
|
2019-09-24 05:48:51 +08:00
|
|
|
|
2020-04-10 22:09:08 +08:00
|
|
|
// If captured zones do not overlap, return all of them
|
|
|
|
// Otherwise, return the smallest one
|
|
|
|
|
|
|
|
bool overlap = false;
|
|
|
|
for (size_t i = 0; i < capturedZones.size(); ++i)
|
|
|
|
{
|
|
|
|
for (size_t j = i + 1; j < capturedZones.size(); ++j)
|
|
|
|
{
|
|
|
|
auto rectI = m_zones[capturedZones[i]]->GetZoneRect();
|
|
|
|
auto rectJ = m_zones[capturedZones[j]]->GetZoneRect();
|
2020-07-14 20:51:24 +08:00
|
|
|
if (max(rectI.top, rectJ.top) + SENSITIVITY_RADIUS < min(rectI.bottom, rectJ.bottom) &&
|
|
|
|
max(rectI.left, rectJ.left) + SENSITIVITY_RADIUS < min(rectI.right, rectJ.right))
|
2020-04-10 22:09:08 +08:00
|
|
|
{
|
|
|
|
overlap = true;
|
|
|
|
i = capturedZones.size() - 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (overlap)
|
|
|
|
{
|
|
|
|
size_t smallestIdx = 0;
|
|
|
|
for (size_t i = 1; i < capturedZones.size(); ++i)
|
|
|
|
{
|
|
|
|
auto rectS = m_zones[capturedZones[smallestIdx]]->GetZoneRect();
|
|
|
|
auto rectI = m_zones[capturedZones[i]]->GetZoneRect();
|
|
|
|
int smallestSize = (rectS.bottom - rectS.top) * (rectS.right - rectS.left);
|
|
|
|
int iSize = (rectI.bottom - rectI.top) * (rectI.right - rectI.left);
|
|
|
|
|
|
|
|
if (iSize <= smallestSize)
|
|
|
|
{
|
|
|
|
smallestIdx = i;
|
2019-09-05 00:26:26 +08:00
|
|
|
}
|
|
|
|
}
|
2020-04-10 22:09:08 +08:00
|
|
|
|
|
|
|
capturedZones = { capturedZones[smallestIdx] };
|
2019-09-05 00:26:26 +08:00
|
|
|
}
|
2019-09-24 05:48:51 +08:00
|
|
|
|
2020-04-10 22:09:08 +08:00
|
|
|
return capturedZones;
|
2019-09-05 00:26:26 +08:00
|
|
|
}
|
|
|
|
|
2020-05-26 22:01:12 +08:00
|
|
|
std::vector<int> ZoneSet::GetZoneIndexSetFromWindow(HWND window) noexcept
|
2019-09-05 00:26:26 +08:00
|
|
|
{
|
2020-05-26 22:01:12 +08:00
|
|
|
auto it = m_windowIndexSet.find(window);
|
|
|
|
if (it == m_windowIndexSet.end())
|
2019-09-05 00:26:26 +08:00
|
|
|
{
|
2020-05-26 22:01:12 +08:00
|
|
|
return {};
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return it->second;
|
2019-09-05 00:26:26 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-10 21:59:51 +08:00
|
|
|
IFACEMETHODIMP_(void)
|
2020-06-01 22:14:29 +08:00
|
|
|
ZoneSet::MoveWindowIntoZoneByIndex(HWND window, HWND windowZone, int index) noexcept
|
2019-09-05 00:26:26 +08:00
|
|
|
{
|
2020-06-01 22:14:29 +08:00
|
|
|
MoveWindowIntoZoneByIndexSet(window, windowZone, { index });
|
2020-04-10 22:09:08 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
IFACEMETHODIMP_(void)
|
2020-06-01 22:14:29 +08:00
|
|
|
ZoneSet::MoveWindowIntoZoneByIndexSet(HWND window, HWND windowZone, const std::vector<int>& indexSet) noexcept
|
2020-04-10 22:09:08 +08:00
|
|
|
{
|
|
|
|
if (m_zones.empty())
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
RECT size;
|
|
|
|
bool sizeEmpty = true;
|
2020-05-26 22:01:12 +08:00
|
|
|
size_t bitmask = 0;
|
|
|
|
|
|
|
|
auto& storedIndexSet = m_windowIndexSet[window];
|
|
|
|
storedIndexSet = {};
|
2020-04-10 22:09:08 +08:00
|
|
|
|
|
|
|
for (int index : indexSet)
|
|
|
|
{
|
|
|
|
if (index < static_cast<int>(m_zones.size()))
|
|
|
|
{
|
|
|
|
RECT newSize = m_zones.at(index)->ComputeActualZoneRect(window, windowZone);
|
|
|
|
if (!sizeEmpty)
|
|
|
|
{
|
|
|
|
size.left = min(size.left, newSize.left);
|
|
|
|
size.top = min(size.top, newSize.top);
|
|
|
|
size.right = max(size.right, newSize.right);
|
|
|
|
size.bottom = max(size.bottom, newSize.bottom);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
size = newSize;
|
|
|
|
sizeEmpty = false;
|
|
|
|
}
|
2020-05-26 22:01:12 +08:00
|
|
|
|
|
|
|
storedIndexSet.push_back(index);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (index < std::numeric_limits<size_t>::digits)
|
|
|
|
{
|
|
|
|
bitmask |= 1ull << index;
|
2020-04-10 22:09:08 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!sizeEmpty)
|
|
|
|
{
|
2020-07-01 21:36:05 +08:00
|
|
|
SaveWindowSizeAndOrigin(window);
|
2020-04-10 22:09:08 +08:00
|
|
|
SizeWindowToRect(window, size);
|
2020-06-01 22:14:29 +08:00
|
|
|
StampWindow(window, bitmask);
|
2019-09-05 00:26:26 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-25 01:50:26 +08:00
|
|
|
IFACEMETHODIMP_(bool)
|
|
|
|
ZoneSet::MoveWindowIntoZoneByDirection(HWND window, HWND windowZone, DWORD vkCode, bool cycle) noexcept
|
2019-09-05 00:26:26 +08:00
|
|
|
{
|
2020-02-10 21:59:51 +08:00
|
|
|
if (m_zones.empty())
|
|
|
|
{
|
2020-03-25 01:50:26 +08:00
|
|
|
return false;
|
2020-02-10 21:59:51 +08:00
|
|
|
}
|
|
|
|
|
2020-05-26 22:01:12 +08:00
|
|
|
auto indexSet = GetZoneIndexSetFromWindow(window);
|
|
|
|
int numZones = static_cast<int>(m_zones.size());
|
2019-09-05 00:26:26 +08:00
|
|
|
|
2020-05-26 22:01:12 +08:00
|
|
|
// The window was not assigned to any zone here
|
|
|
|
if (indexSet.size() == 0)
|
2019-09-05 00:26:26 +08:00
|
|
|
{
|
2020-06-01 22:14:29 +08:00
|
|
|
MoveWindowIntoZoneByIndexSet(window, windowZone, { vkCode == VK_LEFT ? numZones - 1 : 0 });
|
2020-05-26 22:01:12 +08:00
|
|
|
return true;
|
2019-09-05 00:26:26 +08:00
|
|
|
}
|
2020-05-26 22:01:12 +08:00
|
|
|
|
|
|
|
int oldIndex = indexSet[0];
|
|
|
|
|
|
|
|
// We reached the edge
|
|
|
|
if ((vkCode == VK_LEFT && oldIndex == 0) || (vkCode == VK_RIGHT && oldIndex == numZones - 1))
|
2019-09-05 00:26:26 +08:00
|
|
|
{
|
2020-05-26 22:01:12 +08:00
|
|
|
if (!cycle)
|
2019-09-05 00:26:26 +08:00
|
|
|
{
|
2020-06-01 22:14:29 +08:00
|
|
|
MoveWindowIntoZoneByIndexSet(window, windowZone, {});
|
2020-05-26 22:01:12 +08:00
|
|
|
return false;
|
2019-09-05 00:26:26 +08:00
|
|
|
}
|
2020-05-26 22:01:12 +08:00
|
|
|
else
|
2019-09-05 00:26:26 +08:00
|
|
|
{
|
2020-06-01 22:14:29 +08:00
|
|
|
MoveWindowIntoZoneByIndexSet(window, windowZone, { vkCode == VK_LEFT ? numZones - 1 : 0 });
|
2020-05-26 22:01:12 +08:00
|
|
|
return true;
|
2019-09-05 00:26:26 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-26 22:01:12 +08:00
|
|
|
// We didn't reach the edge
|
|
|
|
if (vkCode == VK_LEFT)
|
2019-09-05 00:26:26 +08:00
|
|
|
{
|
2020-06-01 22:14:29 +08:00
|
|
|
MoveWindowIntoZoneByIndexSet(window, windowZone, { oldIndex - 1 });
|
2019-09-05 00:26:26 +08:00
|
|
|
}
|
2020-05-26 22:01:12 +08:00
|
|
|
else
|
|
|
|
{
|
2020-06-01 22:14:29 +08:00
|
|
|
MoveWindowIntoZoneByIndexSet(window, windowZone, { oldIndex + 1 });
|
2020-05-26 22:01:12 +08:00
|
|
|
}
|
|
|
|
return true;
|
2019-09-05 00:26:26 +08:00
|
|
|
}
|
|
|
|
|
2020-02-10 21:59:51 +08:00
|
|
|
IFACEMETHODIMP_(void)
|
|
|
|
ZoneSet::MoveWindowIntoZoneByPoint(HWND window, HWND zoneWindow, POINT ptClient) noexcept
|
2019-09-05 00:26:26 +08:00
|
|
|
{
|
2020-04-10 22:09:08 +08:00
|
|
|
auto zones = ZonesFromPoint(ptClient);
|
2020-06-01 22:14:29 +08:00
|
|
|
MoveWindowIntoZoneByIndexSet(window, zoneWindow, zones);
|
2019-09-05 00:26:26 +08:00
|
|
|
}
|
|
|
|
|
2020-02-10 21:59:51 +08:00
|
|
|
IFACEMETHODIMP_(bool)
|
2020-08-07 16:06:25 +08:00
|
|
|
ZoneSet::CalculateZones(RECT workAreaRect, int zoneCount, int spacing) noexcept
|
2020-02-10 21:59:51 +08:00
|
|
|
{
|
2020-08-07 16:06:25 +08:00
|
|
|
Rect workArea(workAreaRect);
|
2020-02-10 21:59:51 +08:00
|
|
|
//invalid work area
|
|
|
|
if (workArea.width() == 0 || workArea.height() == 0)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
//invalid zoneCount, may cause division by zero
|
2020-07-22 16:39:13 +08:00
|
|
|
if (zoneCount <= 0 && m_config.LayoutType != FancyZonesDataTypes::ZoneSetLayoutType::Custom)
|
2020-02-10 21:59:51 +08:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool success = true;
|
|
|
|
switch (m_config.LayoutType)
|
|
|
|
{
|
2020-07-22 16:39:13 +08:00
|
|
|
case FancyZonesDataTypes::ZoneSetLayoutType::Focus:
|
2020-02-10 21:59:51 +08:00
|
|
|
success = CalculateFocusLayout(workArea, zoneCount);
|
|
|
|
break;
|
2020-07-22 16:39:13 +08:00
|
|
|
case FancyZonesDataTypes::ZoneSetLayoutType::Columns:
|
|
|
|
case FancyZonesDataTypes::ZoneSetLayoutType::Rows:
|
2020-02-10 21:59:51 +08:00
|
|
|
success = CalculateColumnsAndRowsLayout(workArea, m_config.LayoutType, zoneCount, spacing);
|
|
|
|
break;
|
2020-07-22 16:39:13 +08:00
|
|
|
case FancyZonesDataTypes::ZoneSetLayoutType::Grid:
|
|
|
|
case FancyZonesDataTypes::ZoneSetLayoutType::PriorityGrid:
|
2020-02-10 21:59:51 +08:00
|
|
|
success = CalculateGridLayout(workArea, m_config.LayoutType, zoneCount, spacing);
|
|
|
|
break;
|
2020-07-22 16:39:13 +08:00
|
|
|
case FancyZonesDataTypes::ZoneSetLayoutType::Custom:
|
2020-02-10 21:59:51 +08:00
|
|
|
success = CalculateCustomLayout(workArea, spacing);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return success;
|
|
|
|
}
|
|
|
|
|
2020-05-26 22:01:12 +08:00
|
|
|
bool ZoneSet::IsZoneEmpty(int zoneIndex) noexcept
|
|
|
|
{
|
|
|
|
for (auto& [window, zones] : m_windowIndexSet)
|
|
|
|
{
|
|
|
|
if (find(begin(zones), end(zones), zoneIndex) != end(zones))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-02-10 21:59:51 +08:00
|
|
|
bool ZoneSet::CalculateFocusLayout(Rect workArea, int zoneCount) noexcept
|
|
|
|
{
|
|
|
|
bool success = true;
|
|
|
|
|
2020-08-06 22:41:15 +08:00
|
|
|
long left{ 100 };
|
|
|
|
long top{ 100 };
|
|
|
|
long right{ left + long(workArea.width() * 0.4) };
|
|
|
|
long bottom{ top + long(workArea.height() * 0.4) };
|
2020-02-10 21:59:51 +08:00
|
|
|
|
|
|
|
RECT focusZoneRect{ left, top, right, bottom };
|
|
|
|
|
2020-08-06 22:41:15 +08:00
|
|
|
long focusRectXIncrement = (zoneCount <= 1) ? 0 : 50;
|
|
|
|
long focusRectYIncrement = (zoneCount <= 1) ? 0 : 50;
|
2020-02-10 21:59:51 +08:00
|
|
|
|
|
|
|
if (left >= right || top >= bottom || left < 0 || right < 0 || top < 0 || bottom < 0)
|
|
|
|
{
|
|
|
|
success = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (int i = 0; i < zoneCount; i++)
|
|
|
|
{
|
|
|
|
AddZone(MakeZone(focusZoneRect));
|
|
|
|
focusZoneRect.left += focusRectXIncrement;
|
|
|
|
focusZoneRect.right += focusRectXIncrement;
|
|
|
|
focusZoneRect.bottom += focusRectYIncrement;
|
|
|
|
focusZoneRect.top += focusRectYIncrement;
|
|
|
|
}
|
|
|
|
|
|
|
|
return success;
|
|
|
|
}
|
|
|
|
|
2020-07-22 16:39:13 +08:00
|
|
|
bool ZoneSet::CalculateColumnsAndRowsLayout(Rect workArea, FancyZonesDataTypes::ZoneSetLayoutType type, int zoneCount, int spacing) noexcept
|
2020-02-10 21:59:51 +08:00
|
|
|
{
|
|
|
|
bool success = true;
|
|
|
|
|
|
|
|
long totalWidth;
|
|
|
|
long totalHeight;
|
|
|
|
|
2020-07-22 16:39:13 +08:00
|
|
|
if (type == FancyZonesDataTypes::ZoneSetLayoutType::Columns)
|
2020-02-10 21:59:51 +08:00
|
|
|
{
|
|
|
|
totalWidth = workArea.width() - (spacing * (zoneCount + 1));
|
|
|
|
totalHeight = workArea.height() - (spacing * 2);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{ //Rows
|
|
|
|
totalWidth = workArea.width() - (spacing * 2);
|
|
|
|
totalHeight = workArea.height() - (spacing * (zoneCount + 1));
|
|
|
|
}
|
|
|
|
|
|
|
|
long top = spacing;
|
|
|
|
long left = spacing;
|
2020-03-05 22:54:06 +08:00
|
|
|
long bottom;
|
|
|
|
long right;
|
2020-02-10 21:59:51 +08:00
|
|
|
|
2020-03-05 22:54:06 +08:00
|
|
|
// Note: The expressions below are NOT equal to total{Width|Height} / zoneCount and are done
|
|
|
|
// like this to make the sum of all zones' sizes exactly total{Width|Height}.
|
2020-02-10 21:59:51 +08:00
|
|
|
for (int zone = 0; zone < zoneCount; zone++)
|
|
|
|
{
|
2020-07-22 16:39:13 +08:00
|
|
|
if (type == FancyZonesDataTypes::ZoneSetLayoutType::Columns)
|
2020-03-05 22:54:06 +08:00
|
|
|
{
|
|
|
|
right = left + (zone + 1) * totalWidth / zoneCount - zone * totalWidth / zoneCount;
|
2020-03-06 04:51:58 +08:00
|
|
|
bottom = totalHeight + spacing;
|
2020-03-05 22:54:06 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{ //Rows
|
2020-03-06 04:51:58 +08:00
|
|
|
right = totalWidth + spacing;
|
2020-03-05 22:54:06 +08:00
|
|
|
bottom = top + (zone + 1) * totalHeight / zoneCount - zone * totalHeight / zoneCount;
|
|
|
|
}
|
|
|
|
|
2020-02-10 21:59:51 +08:00
|
|
|
if (left >= right || top >= bottom || left < 0 || right < 0 || top < 0 || bottom < 0)
|
|
|
|
{
|
|
|
|
success = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
RECT focusZoneRect{ left, top, right, bottom };
|
|
|
|
AddZone(MakeZone(focusZoneRect));
|
|
|
|
|
2020-07-22 16:39:13 +08:00
|
|
|
if (type == FancyZonesDataTypes::ZoneSetLayoutType::Columns)
|
2020-02-10 21:59:51 +08:00
|
|
|
{
|
2020-03-05 22:54:06 +08:00
|
|
|
left = right + spacing;
|
2020-02-10 21:59:51 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{ //Rows
|
2020-03-05 22:54:06 +08:00
|
|
|
top = bottom + spacing;
|
2020-02-10 21:59:51 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return success;
|
|
|
|
}
|
|
|
|
|
2020-07-22 16:39:13 +08:00
|
|
|
bool ZoneSet::CalculateGridLayout(Rect workArea, FancyZonesDataTypes::ZoneSetLayoutType type, int zoneCount, int spacing) noexcept
|
2020-02-10 21:59:51 +08:00
|
|
|
{
|
2020-07-22 16:39:13 +08:00
|
|
|
const auto count = sizeof(predefinedPriorityGridLayouts) / sizeof(FancyZonesDataTypes::GridLayoutInfo);
|
|
|
|
if (type == FancyZonesDataTypes::ZoneSetLayoutType::PriorityGrid && zoneCount < count)
|
2020-02-10 21:59:51 +08:00
|
|
|
{
|
|
|
|
return CalculateUniquePriorityGridLayout(workArea, zoneCount, spacing);
|
|
|
|
}
|
|
|
|
|
|
|
|
int rows = 1, columns = 1;
|
|
|
|
while (zoneCount / rows >= rows)
|
|
|
|
{
|
|
|
|
rows++;
|
|
|
|
}
|
|
|
|
rows--;
|
|
|
|
columns = zoneCount / rows;
|
|
|
|
if (zoneCount % rows == 0)
|
|
|
|
{
|
|
|
|
// even grid
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
columns++;
|
|
|
|
}
|
|
|
|
|
2020-07-22 16:39:13 +08:00
|
|
|
FancyZonesDataTypes::GridLayoutInfo gridLayoutInfo(FancyZonesDataTypes::GridLayoutInfo::Minimal{ .rows = rows, .columns = columns });
|
2020-02-10 21:59:51 +08:00
|
|
|
|
2020-03-05 22:54:06 +08:00
|
|
|
// Note: The expressions below are NOT equal to C_MULTIPLIER / {rows|columns} and are done
|
|
|
|
// like this to make the sum of all percents exactly C_MULTIPLIER
|
2020-02-10 21:59:51 +08:00
|
|
|
for (int row = 0; row < rows; row++)
|
|
|
|
{
|
2020-03-05 22:54:06 +08:00
|
|
|
gridLayoutInfo.rowsPercents()[row] = C_MULTIPLIER * (row + 1) / rows - C_MULTIPLIER * row / rows;
|
2020-02-10 21:59:51 +08:00
|
|
|
}
|
|
|
|
for (int col = 0; col < columns; col++)
|
|
|
|
{
|
2020-03-05 22:54:06 +08:00
|
|
|
gridLayoutInfo.columnsPercents()[col] = C_MULTIPLIER * (col + 1) / columns - C_MULTIPLIER * col / columns;
|
2020-02-10 21:59:51 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
for (int i = 0; i < rows; ++i)
|
|
|
|
{
|
|
|
|
gridLayoutInfo.cellChildMap()[i] = std::vector<int>(columns);
|
|
|
|
}
|
|
|
|
|
|
|
|
int index = 0;
|
|
|
|
for (int col = columns - 1; col >= 0; col--)
|
|
|
|
{
|
|
|
|
for (int row = rows - 1; row >= 0; row--)
|
|
|
|
{
|
|
|
|
gridLayoutInfo.cellChildMap()[row][col] = index++;
|
|
|
|
if (index == zoneCount)
|
|
|
|
{
|
|
|
|
index--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return CalculateGridZones(workArea, gridLayoutInfo, spacing);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ZoneSet::CalculateUniquePriorityGridLayout(Rect workArea, int zoneCount, int spacing) noexcept
|
|
|
|
{
|
|
|
|
if (zoneCount <= 0 || zoneCount >= sizeof(predefinedPriorityGridLayouts))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return CalculateGridZones(workArea, predefinedPriorityGridLayouts[zoneCount - 1], spacing);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ZoneSet::CalculateCustomLayout(Rect workArea, int spacing) noexcept
|
|
|
|
{
|
2020-05-27 22:55:46 +08:00
|
|
|
wil::unique_cotaskmem_string guidStr;
|
2020-05-29 15:38:29 +08:00
|
|
|
if (SUCCEEDED(StringFromCLSID(m_config.Id, &guidStr)))
|
2020-02-10 21:59:51 +08:00
|
|
|
{
|
2020-05-27 22:55:46 +08:00
|
|
|
const std::wstring guid = guidStr.get();
|
2020-02-17 23:28:49 +08:00
|
|
|
|
2020-07-22 16:39:13 +08:00
|
|
|
const auto zoneSetSearchResult = FancyZonesDataInstance().FindCustomZoneSet(guid);
|
2020-02-17 23:28:49 +08:00
|
|
|
|
|
|
|
if (!zoneSetSearchResult.has_value())
|
2020-02-10 21:59:51 +08:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-02-17 23:28:49 +08:00
|
|
|
const auto& zoneSet = *zoneSetSearchResult;
|
2020-07-22 16:39:13 +08:00
|
|
|
if (zoneSet.type == FancyZonesDataTypes::CustomLayoutType::Canvas && std::holds_alternative<FancyZonesDataTypes::CanvasLayoutInfo>(zoneSet.info))
|
2020-02-10 21:59:51 +08:00
|
|
|
{
|
2020-07-22 16:39:13 +08:00
|
|
|
const auto& zoneSetInfo = std::get<FancyZonesDataTypes::CanvasLayoutInfo>(zoneSet.info);
|
2020-02-10 21:59:51 +08:00
|
|
|
for (const auto& zone : zoneSetInfo.zones)
|
|
|
|
{
|
|
|
|
int x = zone.x;
|
|
|
|
int y = zone.y;
|
|
|
|
int width = zone.width;
|
|
|
|
int height = zone.height;
|
|
|
|
|
|
|
|
if (x < 0 || y < 0 || width < 0 || height < 0)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
DPIAware::Convert(m_config.Monitor, x, y);
|
|
|
|
DPIAware::Convert(m_config.Monitor, width, height);
|
|
|
|
|
|
|
|
AddZone(MakeZone(RECT{ x, y, x + width, y + height }));
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2020-07-22 16:39:13 +08:00
|
|
|
else if (zoneSet.type == FancyZonesDataTypes::CustomLayoutType::Grid && std::holds_alternative<FancyZonesDataTypes::GridLayoutInfo>(zoneSet.info))
|
2020-02-10 21:59:51 +08:00
|
|
|
{
|
2020-07-22 16:39:13 +08:00
|
|
|
const auto& info = std::get<FancyZonesDataTypes::GridLayoutInfo>(zoneSet.info);
|
2020-02-10 21:59:51 +08:00
|
|
|
return CalculateGridZones(workArea, info, spacing);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-07-22 16:39:13 +08:00
|
|
|
bool ZoneSet::CalculateGridZones(Rect workArea, FancyZonesDataTypes::GridLayoutInfo gridLayoutInfo, int spacing)
|
2020-02-10 21:59:51 +08:00
|
|
|
{
|
|
|
|
bool success = true;
|
|
|
|
|
|
|
|
long totalWidth = workArea.width() - (spacing * (gridLayoutInfo.columns() + 1));
|
|
|
|
long totalHeight = workArea.height() - (spacing * (gridLayoutInfo.rows() + 1));
|
|
|
|
struct Info
|
|
|
|
{
|
|
|
|
long Extent;
|
|
|
|
long Start;
|
|
|
|
long End;
|
|
|
|
};
|
2020-03-05 21:59:47 +08:00
|
|
|
std::vector<Info> rowInfo(gridLayoutInfo.rows());
|
|
|
|
std::vector<Info> columnInfo(gridLayoutInfo.columns());
|
2020-02-10 21:59:51 +08:00
|
|
|
|
2020-03-05 22:54:06 +08:00
|
|
|
// Note: The expressions below are carefully written to
|
|
|
|
// make the sum of all zones' sizes exactly total{Width|Height}
|
2020-03-17 00:54:30 +08:00
|
|
|
int totalPercents = 0;
|
2020-02-10 21:59:51 +08:00
|
|
|
for (int row = 0; row < gridLayoutInfo.rows(); row++)
|
|
|
|
{
|
2020-03-05 22:54:06 +08:00
|
|
|
rowInfo[row].Start = totalPercents * totalHeight / C_MULTIPLIER + (row + 1) * spacing;
|
|
|
|
totalPercents += gridLayoutInfo.rowsPercents()[row];
|
|
|
|
rowInfo[row].End = totalPercents * totalHeight / C_MULTIPLIER + (row + 1) * spacing;
|
|
|
|
rowInfo[row].Extent = rowInfo[row].End - rowInfo[row].Start;
|
2020-02-10 21:59:51 +08:00
|
|
|
}
|
|
|
|
|
2020-03-05 22:54:06 +08:00
|
|
|
totalPercents = 0;
|
2020-02-10 21:59:51 +08:00
|
|
|
for (int col = 0; col < gridLayoutInfo.columns(); col++)
|
|
|
|
{
|
2020-03-05 22:54:06 +08:00
|
|
|
columnInfo[col].Start = totalPercents * totalWidth / C_MULTIPLIER + (col + 1) * spacing;
|
|
|
|
totalPercents += gridLayoutInfo.columnsPercents()[col];
|
|
|
|
columnInfo[col].End = totalPercents * totalWidth / C_MULTIPLIER + (col + 1) * spacing;
|
|
|
|
columnInfo[col].Extent = columnInfo[col].End - columnInfo[col].Start;
|
2020-02-10 21:59:51 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
for (int row = 0; row < gridLayoutInfo.rows(); row++)
|
|
|
|
{
|
|
|
|
for (int col = 0; col < gridLayoutInfo.columns(); col++)
|
|
|
|
{
|
|
|
|
int i = gridLayoutInfo.cellChildMap()[row][col];
|
|
|
|
if (((row == 0) || (gridLayoutInfo.cellChildMap()[row - 1][col] != i)) &&
|
|
|
|
((col == 0) || (gridLayoutInfo.cellChildMap()[row][col - 1] != i)))
|
|
|
|
{
|
2020-03-05 22:54:06 +08:00
|
|
|
long left = columnInfo[col].Start;
|
|
|
|
long top = rowInfo[row].Start;
|
2020-02-10 21:59:51 +08:00
|
|
|
|
|
|
|
int maxRow = row;
|
|
|
|
while (((maxRow + 1) < gridLayoutInfo.rows()) && (gridLayoutInfo.cellChildMap()[maxRow + 1][col] == i))
|
|
|
|
{
|
|
|
|
maxRow++;
|
|
|
|
}
|
|
|
|
int maxCol = col;
|
|
|
|
while (((maxCol + 1) < gridLayoutInfo.columns()) && (gridLayoutInfo.cellChildMap()[row][maxCol + 1] == i))
|
|
|
|
{
|
|
|
|
maxCol++;
|
|
|
|
}
|
|
|
|
|
|
|
|
long right = columnInfo[maxCol].End;
|
|
|
|
long bottom = rowInfo[maxRow].End;
|
|
|
|
|
|
|
|
if (left >= right || top >= bottom || left < 0 || right < 0 || top < 0 || bottom < 0)
|
|
|
|
{
|
|
|
|
success = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
AddZone(MakeZone(RECT{ left, top, right, bottom }));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return success;
|
|
|
|
}
|
|
|
|
|
2020-05-26 22:01:12 +08:00
|
|
|
void ZoneSet::StampWindow(HWND window, size_t bitmask) noexcept
|
2019-09-05 00:26:26 +08:00
|
|
|
{
|
2020-05-26 22:01:12 +08:00
|
|
|
SetProp(window, MULTI_ZONE_STAMP, reinterpret_cast<HANDLE>(bitmask));
|
2019-09-05 00:26:26 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
winrt::com_ptr<IZoneSet> MakeZoneSet(ZoneSetConfig const& config) noexcept
|
|
|
|
{
|
|
|
|
return winrt::make_self<ZoneSet>(config);
|
2019-09-24 05:48:51 +08:00
|
|
|
}
|
2020-07-01 21:36:05 +08:00
|
|
|
|