mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-15 12:45:59 +01:00
config/layout: nuke no_gaps_when_only (#8072)
This commit is contained in:
parent
b65773bea9
commit
d655a10381
5 changed files with 9 additions and 66 deletions
|
@ -1446,12 +1446,6 @@ inline static const std::vector<SConfigOptionDescription> CONFIG_OPTIONS = {
|
||||||
.type = CONFIG_OPTION_FLOAT,
|
.type = CONFIG_OPTION_FLOAT,
|
||||||
.data = SConfigOptionDescription::SFloatData{1, 0.1, 3},
|
.data = SConfigOptionDescription::SFloatData{1, 0.1, 3},
|
||||||
},
|
},
|
||||||
SConfigOptionDescription{
|
|
||||||
.value = "dwindle:no_gaps_when_only",
|
|
||||||
.description = "whether to apply gaps when there is only one window on a workspace, aka. smart gaps. (default: disabled - 0) no border - 1, with border - 2 [0/1/2]",
|
|
||||||
.type = CONFIG_OPTION_CHOICE,
|
|
||||||
.data = SConfigOptionDescription::SChoiceData{0, "disabled,no border,with border"},
|
|
||||||
},
|
|
||||||
SConfigOptionDescription{
|
SConfigOptionDescription{
|
||||||
.value = "dwindle:use_active_for_splits",
|
.value = "dwindle:use_active_for_splits",
|
||||||
.description = "whether to prefer the active window or the mouse position for splits",
|
.description = "whether to prefer the active window or the mouse position for splits",
|
||||||
|
@ -1512,12 +1506,6 @@ inline static const std::vector<SConfigOptionDescription> CONFIG_OPTIONS = {
|
||||||
.type = CONFIG_OPTION_STRING_SHORT,
|
.type = CONFIG_OPTION_STRING_SHORT,
|
||||||
.data = SConfigOptionDescription::SStringData{"none"},
|
.data = SConfigOptionDescription::SStringData{"none"},
|
||||||
},
|
},
|
||||||
SConfigOptionDescription{
|
|
||||||
.value = "master:no_gaps_when_only",
|
|
||||||
.description = "whether to apply gaps when there is only one window on a workspace, aka. smart gaps. (default: disabled - 0) no border - 1, with border - 2 [0/1/2]",
|
|
||||||
.type = CONFIG_OPTION_CHOICE,
|
|
||||||
.data = SConfigOptionDescription::SChoiceData{0, "disabled,no border,with border"},
|
|
||||||
},
|
|
||||||
SConfigOptionDescription{
|
SConfigOptionDescription{
|
||||||
.value = "master:orientation",
|
.value = "master:orientation",
|
||||||
.description = "default placement of the master area, can be left, right, top, bottom or center",
|
.description = "default placement of the master area, can be left, right, top, bottom or center",
|
||||||
|
|
|
@ -446,7 +446,6 @@ CConfigManager::CConfigManager() {
|
||||||
m_pConfig->addConfigValue("dwindle:preserve_split", Hyprlang::INT{0});
|
m_pConfig->addConfigValue("dwindle:preserve_split", Hyprlang::INT{0});
|
||||||
m_pConfig->addConfigValue("dwindle:special_scale_factor", {1.f});
|
m_pConfig->addConfigValue("dwindle:special_scale_factor", {1.f});
|
||||||
m_pConfig->addConfigValue("dwindle:split_width_multiplier", {1.0f});
|
m_pConfig->addConfigValue("dwindle:split_width_multiplier", {1.0f});
|
||||||
m_pConfig->addConfigValue("dwindle:no_gaps_when_only", Hyprlang::INT{0});
|
|
||||||
m_pConfig->addConfigValue("dwindle:use_active_for_splits", Hyprlang::INT{1});
|
m_pConfig->addConfigValue("dwindle:use_active_for_splits", Hyprlang::INT{1});
|
||||||
m_pConfig->addConfigValue("dwindle:default_split_ratio", {1.f});
|
m_pConfig->addConfigValue("dwindle:default_split_ratio", {1.f});
|
||||||
m_pConfig->addConfigValue("dwindle:split_bias", Hyprlang::INT{0});
|
m_pConfig->addConfigValue("dwindle:split_bias", Hyprlang::INT{0});
|
||||||
|
@ -459,7 +458,6 @@ CConfigManager::CConfigManager() {
|
||||||
m_pConfig->addConfigValue("master:always_center_master", Hyprlang::INT{0});
|
m_pConfig->addConfigValue("master:always_center_master", Hyprlang::INT{0});
|
||||||
m_pConfig->addConfigValue("master:new_on_active", {"none"});
|
m_pConfig->addConfigValue("master:new_on_active", {"none"});
|
||||||
m_pConfig->addConfigValue("master:new_on_top", Hyprlang::INT{0});
|
m_pConfig->addConfigValue("master:new_on_top", Hyprlang::INT{0});
|
||||||
m_pConfig->addConfigValue("master:no_gaps_when_only", Hyprlang::INT{0});
|
|
||||||
m_pConfig->addConfigValue("master:orientation", {"left"});
|
m_pConfig->addConfigValue("master:orientation", {"left"});
|
||||||
m_pConfig->addConfigValue("master:inherit_fullscreen", Hyprlang::INT{1});
|
m_pConfig->addConfigValue("master:inherit_fullscreen", Hyprlang::INT{1});
|
||||||
m_pConfig->addConfigValue("master:allow_small_split", Hyprlang::INT{0});
|
m_pConfig->addConfigValue("master:allow_small_split", Hyprlang::INT{0});
|
||||||
|
|
|
@ -142,7 +142,6 @@ void CHyprDwindleLayout::applyNodeDataToWindow(SDwindleNodeData* pNode, bool for
|
||||||
PWINDOW->unsetWindowData(PRIORITY_LAYOUT);
|
PWINDOW->unsetWindowData(PRIORITY_LAYOUT);
|
||||||
PWINDOW->updateWindowData();
|
PWINDOW->updateWindowData();
|
||||||
|
|
||||||
static auto PNOGAPSWHENONLY = CConfigValue<Hyprlang::INT>("dwindle:no_gaps_when_only");
|
|
||||||
static auto PGAPSINDATA = CConfigValue<Hyprlang::CUSTOMTYPE>("general:gaps_in");
|
static auto PGAPSINDATA = CConfigValue<Hyprlang::CUSTOMTYPE>("general:gaps_in");
|
||||||
static auto PGAPSOUTDATA = CConfigValue<Hyprlang::CUSTOMTYPE>("general:gaps_out");
|
static auto PGAPSOUTDATA = CConfigValue<Hyprlang::CUSTOMTYPE>("general:gaps_out");
|
||||||
auto* const PGAPSIN = (CCssGapData*)(PGAPSINDATA.ptr())->getData();
|
auto* const PGAPSIN = (CCssGapData*)(PGAPSINDATA.ptr())->getData();
|
||||||
|
@ -156,27 +155,6 @@ void CHyprDwindleLayout::applyNodeDataToWindow(SDwindleNodeData* pNode, bool for
|
||||||
PWINDOW->m_vSize = nodeBox.size();
|
PWINDOW->m_vSize = nodeBox.size();
|
||||||
PWINDOW->m_vPosition = nodeBox.pos();
|
PWINDOW->m_vPosition = nodeBox.pos();
|
||||||
|
|
||||||
const auto NODESONWORKSPACE = getNodesOnWorkspace(PWINDOW->workspaceID());
|
|
||||||
|
|
||||||
if (*PNOGAPSWHENONLY && !PWINDOW->onSpecialWorkspace() && (NODESONWORKSPACE == 1 || PWINDOW->isEffectiveInternalFSMode(FSMODE_MAXIMIZED))) {
|
|
||||||
|
|
||||||
PWINDOW->m_sWindowData.decorate = CWindowOverridableVar(true, PRIORITY_LAYOUT);
|
|
||||||
PWINDOW->m_sWindowData.noBorder = CWindowOverridableVar(*PNOGAPSWHENONLY != 2, PRIORITY_LAYOUT);
|
|
||||||
PWINDOW->m_sWindowData.noRounding = CWindowOverridableVar(true, PRIORITY_LAYOUT);
|
|
||||||
PWINDOW->m_sWindowData.noShadow = CWindowOverridableVar(true, PRIORITY_LAYOUT);
|
|
||||||
|
|
||||||
PWINDOW->updateWindowDecos();
|
|
||||||
|
|
||||||
const auto RESERVED = PWINDOW->getFullWindowReservedArea();
|
|
||||||
|
|
||||||
PWINDOW->m_vRealPosition = PWINDOW->m_vPosition + RESERVED.topLeft;
|
|
||||||
PWINDOW->m_vRealSize = PWINDOW->m_vSize - (RESERVED.topLeft + RESERVED.bottomRight);
|
|
||||||
|
|
||||||
g_pXWaylandManager->setWindowSize(PWINDOW, PWINDOW->m_vRealSize.goal());
|
|
||||||
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
PWINDOW->updateWindowDecos();
|
PWINDOW->updateWindowDecos();
|
||||||
|
|
||||||
auto calcPos = PWINDOW->m_vPosition;
|
auto calcPos = PWINDOW->m_vPosition;
|
||||||
|
|
|
@ -631,7 +631,6 @@ void CHyprMasterLayout::applyNodeDataToWindow(SMasterNodeData* pNode) {
|
||||||
PWINDOW->unsetWindowData(PRIORITY_LAYOUT);
|
PWINDOW->unsetWindowData(PRIORITY_LAYOUT);
|
||||||
PWINDOW->updateWindowData();
|
PWINDOW->updateWindowData();
|
||||||
|
|
||||||
static auto PNOGAPSWHENONLY = CConfigValue<Hyprlang::INT>("master:no_gaps_when_only");
|
|
||||||
static auto PANIMATE = CConfigValue<Hyprlang::INT>("misc:animate_manual_resizes");
|
static auto PANIMATE = CConfigValue<Hyprlang::INT>("misc:animate_manual_resizes");
|
||||||
static auto PGAPSINDATA = CConfigValue<Hyprlang::CUSTOMTYPE>("general:gaps_in");
|
static auto PGAPSINDATA = CConfigValue<Hyprlang::CUSTOMTYPE>("general:gaps_in");
|
||||||
static auto PGAPSOUTDATA = CConfigValue<Hyprlang::CUSTOMTYPE>("general:gaps_out");
|
static auto PGAPSOUTDATA = CConfigValue<Hyprlang::CUSTOMTYPE>("general:gaps_out");
|
||||||
|
@ -649,25 +648,6 @@ void CHyprMasterLayout::applyNodeDataToWindow(SMasterNodeData* pNode) {
|
||||||
PWINDOW->m_vSize = pNode->size;
|
PWINDOW->m_vSize = pNode->size;
|
||||||
PWINDOW->m_vPosition = pNode->position;
|
PWINDOW->m_vPosition = pNode->position;
|
||||||
|
|
||||||
if (*PNOGAPSWHENONLY && !PWINDOW->onSpecialWorkspace() && (getNodesOnWorkspace(PWINDOW->workspaceID()) == 1 || PWINDOW->isEffectiveInternalFSMode(FSMODE_MAXIMIZED))) {
|
|
||||||
|
|
||||||
PWINDOW->m_sWindowData.decorate = CWindowOverridableVar(true, PRIORITY_LAYOUT);
|
|
||||||
PWINDOW->m_sWindowData.noBorder = CWindowOverridableVar(*PNOGAPSWHENONLY != 2, PRIORITY_LAYOUT);
|
|
||||||
PWINDOW->m_sWindowData.noRounding = CWindowOverridableVar(true, PRIORITY_LAYOUT);
|
|
||||||
PWINDOW->m_sWindowData.noShadow = CWindowOverridableVar(true, PRIORITY_LAYOUT);
|
|
||||||
|
|
||||||
PWINDOW->updateWindowDecos();
|
|
||||||
|
|
||||||
const auto RESERVED = PWINDOW->getFullWindowReservedArea();
|
|
||||||
|
|
||||||
PWINDOW->m_vRealPosition = PWINDOW->m_vPosition + RESERVED.topLeft;
|
|
||||||
PWINDOW->m_vRealSize = PWINDOW->m_vSize - (RESERVED.topLeft + RESERVED.bottomRight);
|
|
||||||
|
|
||||||
g_pXWaylandManager->setWindowSize(PWINDOW, PWINDOW->m_vRealSize.goal());
|
|
||||||
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
PWINDOW->updateWindowDecos();
|
PWINDOW->updateWindowDecos();
|
||||||
|
|
||||||
auto calcPos = PWINDOW->m_vPosition;
|
auto calcPos = PWINDOW->m_vPosition;
|
||||||
|
|
|
@ -39,7 +39,6 @@ void CInputManager::onTouchDown(ITouch::SDownEvent e) {
|
||||||
const auto PWORKSPACE = PMONITOR->activeWorkspace;
|
const auto PWORKSPACE = PMONITOR->activeWorkspace;
|
||||||
const bool VERTANIMS = PWORKSPACE->m_vRenderOffset.getConfig()->pValues->internalStyle == "slidevert" ||
|
const bool VERTANIMS = PWORKSPACE->m_vRenderOffset.getConfig()->pValues->internalStyle == "slidevert" ||
|
||||||
PWORKSPACE->m_vRenderOffset.getConfig()->pValues->internalStyle.starts_with("slidefadevert");
|
PWORKSPACE->m_vRenderOffset.getConfig()->pValues->internalStyle.starts_with("slidefadevert");
|
||||||
// TODO: support no_gaps_when_only?
|
|
||||||
const double TARGETLEFT = ((VERTANIMS ? gapsOut.top : gapsOut.left) + *PBORDERSIZE) / (VERTANIMS ? PMONITOR->vecSize.y : PMONITOR->vecSize.x);
|
const double TARGETLEFT = ((VERTANIMS ? gapsOut.top : gapsOut.left) + *PBORDERSIZE) / (VERTANIMS ? PMONITOR->vecSize.y : PMONITOR->vecSize.x);
|
||||||
const double TARGETRIGHT = 1 - (((VERTANIMS ? gapsOut.bottom : gapsOut.right) + *PBORDERSIZE) / (VERTANIMS ? PMONITOR->vecSize.y : PMONITOR->vecSize.x));
|
const double TARGETRIGHT = 1 - (((VERTANIMS ? gapsOut.bottom : gapsOut.right) + *PBORDERSIZE) / (VERTANIMS ? PMONITOR->vecSize.y : PMONITOR->vecSize.x));
|
||||||
const double POSITION = (VERTANIMS ? e.pos.y : e.pos.x);
|
const double POSITION = (VERTANIMS ? e.pos.y : e.pos.x);
|
||||||
|
|
Loading…
Reference in a new issue