wxPHP 中是否有 AUI 窗格移动(或停靠)事件?

Is there a AUI pane move (or dock) event in wxPHP?

我一直在尝试捕获 AUI 窗格配置,以便在关闭任何窗格时可以恢复它。 wxPHP 的文档有些受限,wxWidgets 的上游文档有些受限,所以我主要是摸索着走。

我已经意识到 SavePaneInfo 将帮助我捕获窗格的状态 - 它输出一个 透视字符串 表示窗格在某个位置的位置和选项给定的时刻。因此,我需要做的就是捕获窗格何时更改并更新它的内部表示。

为了兴趣,一个透视图是这样的:

name=auiPane3;caption=Caption 3;state=2099196;dir=3;layer=0;row=0;pos=1;prop=100000;bestw=90;besth=25;minw=-1;minh=-1;maxw=-1;maxh=-1;floatx=-1;floaty=-1;floatw=-1;floath=-1

然而,捕获 move/dock 事件并非易事。我可以看到与 AUI 相关的六个事件:

wxEVT_AUI_FIND_MANAGER
wxEVT_AUI_PANE_BUTTON
wxEVT_AUI_PANE_CLOSE
wxEVT_AUI_PANE_MAXIMISE
wxEVT_AUI_PANE_RESTORE
wxEVT_AUI_PANE_RENDER

我已经能够捕捉到还原和关闭事件,而 find_manager 似乎没有做任何事情。我已经在 window 上尝试了 wxEVT_ANY,它似乎也没有捕捉到任何东西。我也在个别窗格上尝试过,但无济于事(据我所知没有调用):

$managedWindow->getWindowByIndex(0)->Connect(wxEVT_ANY, array($this, "onAny"));

上游库 wxWidgets 的文档提到了这个事件:

EVT_AUI_PANE_ACTIVATED

然而,这似乎并没有在 wxPHP 中实现——这就是我想要的吗?听起来不太对,但如果我可以在没有常量的情况下访问它,我肯定会尝试它。

我想我可以将 wxAuiManager::SetArtProvider 与标准艺术提供者对象一起使用,修改为捕获窗格状态,但这感觉就像是用大锤来敲开坚果。我还可以捕获关闭事件并更改返回的透视字符串,这样就不会设置 'closed' 位,但这也不是特别优雅。

我想做的事情感觉很琐​​碎,而且会与 wxWidgets 的其他部分保持一致,但事实并非如此。有什么尝试的建议吗?

我有办法。我希望从 wxAuiManagerEvent 中检测到哪个窗格正在关闭,这样我就可以在窗格关闭时记录它的透视字符串。然而,这似乎是不可能的:

  • 来自 $event->GetEventObject() 的引用是 NULL - 这可能是一个 wxPHP 错误;
  • $event->GetPane() 返回的窗格没有 属性 或读取窗格名称的方法。

因此,我采取了在一个窗格关闭时保存所有透视字符串的方法。

我发现透视字符串包含一个位来表示窗格的关闭状态,因此在存储这些字符串时我确保未设置该位。重新组装透视字符串并不是最优雅的事情,但它确实有效,并且比取消停靠和重新停靠要好得多(请参阅原始 post 中的链接问题)。

下面是一些循环遍历我的窗格、获取透视字符串、取消设置关闭标志并将透视保存在 window 列表中的代码:

public function onPaneClose(wxAuiManagerEvent $event)
{
    for($i = 0; $i <= 7; $i++)
    {
        $pi = $this->getPaneInfoByIndex($i);
        $persp = $this->getManagedWindow()->getAuiManager()->SavePaneInfo($pi);

        // Split perspective string into pieces, get the second one (state)
        $items = explode(';', $persp);
        $state = $items[2];

        // Decode the bitfield within
        $stateItems = explode('=', $state);
        $stateBitfield = (int) $stateItems[1];

        // Set up bitmask to ignore closed state
        $bitMask = (-1 ^ 2);

        // Reset the perspective string minus the closed state bit
        $replacementBitfield = $stateBitfield & $bitMask;
        $items[2] = "state=" . $replacementBitfield;
        $newPersp = implode(';', $items);

        // Finally save the perspective
        $this->windowSaves[$i] = $newPersp;
    }
}

我找到了另一种解决方案,我认为我比较喜欢它。事实证明 可以从 wxAuiPaneInfo 对象获取窗格名称 - 透视图包含它!这允许我简化算法 - 我只是将名称转换为序数,然后单独保存窗格透视图。

由于窗格关闭事件总是在关闭之前触发(即当它们仍然可以否决时),它们不会设置关闭位,所以很高兴我不必修改它。这是我的新事件处理程序:

public function onPaneClose(wxAuiManagerEvent $event)
{
    // In the absence of being able to read the pane name from a paneinfo
    // method, we can parse it out from the perpective string
    $info = $event->GetPane();
    $persp = $this->getManagedWindow()->getAuiManager()->SavePaneInfo($info);

    // Fish out the number, which represents the pane ordinal
    $matches = [];
    preg_match('#name=auiPane(\d+)#', $persp, $matches);
    if ($matches)
    {
        $index = $matches[1];
        $this->windowSaves[$index] = $persp;
    }
}

我刚刚在与我的 auiPane<index>.

命名格式相匹配的透视字符串上使用了正则表达式