我正在 wxErlang 的帮助下开发 MDI 应用程序。我有一个父框架,实现为 wx_object:
-module(main_frame).
-export([new/0, init/1, handle_call/3, handle_event/2, terminate/2]).
-behaviour(wx_object).
....
我有一个子框架,也实现为 wx_object:
module(child_frame).
-export([new/2, init/1, handle_call/3, handle_event/2, terminate/2]).
-export([save/1]).
-behaviour(wx_object).
% some public API method
save(Frame) ->
wx_object:call(Frame, save).
....
我想为父框架中的活动子框架调用 save/1 。有我的代码:
ActiveChild = wxMDIParentFrame:getActiveChild(Frame),
case wx:is_null(ActiveChild) of
false ->
child_frame:save(ActiveChild);
_ ->
ignore
end
此代码失败,因为 ActiveChild 是 #wx_ref{} 且 state=[],但 wx_object:call/2 需要 #wx_ref{} ,其中 state 设置为我们调用的进程的 pid。这样做的正确方法是什么?我只想在父框架中存储所有创建的子框架及其 pid 的列表,并在此列表中搜索 pid,但这很难看。