Created
April 15, 2015 12:59
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-module('spare'). | |
-export([start/0]). | |
-include_lib("wx/include/wx.hrl"). | |
start() -> | |
_WX = wx:new(), | |
Frame = wxFrame:new(wx:null(), ?wxID_ANY, "Spare"), | |
wxFrame:connect(Frame, close_window), | |
wxFrame:show(Frame), | |
% No obvious equivalent to wxApp.SetTopWindow(Frame) found in wxErlang 0.98.2 | |
loop(Frame), | |
wx:destroy(). | |
loop(Frame) -> | |
receive | |
#wx{event=#wxClose{type=close_window}} -> | |
ok % this is not needed --> wxWindow:close(Frame,[]) | |
end. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment