A few days ago I wrote a tutorial about how to create a CLI program in Erlang using a new code utility called ZX that makes launching Erlang a little bit more familiar for people accustomed to modern dynamic language tooling.
Today I want to do another one in the same spirit, but with a simple GUI program as the example.
In the previous tutorial I did a CLI utility that converts files containing JSON to files containing Erlang terms. It accepts two arguments: the input file path and the desired output file path.
Today we’ll do a slightly more interesting version of this: a GUI utility that allows hand creation/editing of both the input before conversion and the output before writing. The program will have a simple interface with just three buttons at the top: “Read File”, “Convert” and “Save File”; and two text editing frames as the main body of the window: one on the left with a text control for JSON input, and one on the right a text control for Erlang terms after conversion.
First things, first: We have to choose a name and create the project. Since we did “Termifier” with a package and module name “termifier” before, today we’ll make it called “Termifier GUI” with a package and appmod “termifierg” and a project prefix “tg_”. I’ve clipped out the creation prompt output for brevity like before, but it can be found here: zx_gui_creation.txt.
ceverett@okonomiyaki:~/vcs$ zx create project ### --snip snip-- ### Prompts for project meta ### --snip snip-- Writing app file: ebin/termifierg.app Project otpr-termifierg-0.1.0 initialized. ceverett@okonomiyaki:~/vcs$
If we run this using ZX’s zx rundir
command we see a GUI window appear and some stuff happen in the terminal (assuming you’re using a GUI desktop and WX is built into the Erlang runtime you’re using).
The default templated window we see is a GUI version of a “Hello, World!”:

If we try the same again with some command line arguments we will see the change in the text frame:

The output occurring in the terminal is a mix of ZX writing to stdout about what it is building and WX’s GTK bindings warning that it can’t find an optional style module (which isn’t a big deal and happens on various systems).
So we start out with a window that contains a single multi-line text field and accepts the “close window” event from the window manager. A modest, but promising start.
What we want to do from here is make two editable text fields side by side, which will probably require increasing the main window’s size for comfort, and adding a single sizer with our three utility buttons at the top for ease of use (and our main frame, of course, being derived from the wxEvtHandler, will need to connect to the button click events to make them useful!). The text fields themselves we probably want to make have fixed-width fonts since the user will be staring at indented lines of declarative code, and it might even be handy to have a more natural “code editor” feel to the text field interface, so we can’t do any better than to use the Scintilla-type text control widget for the text controls.
Now that we know basically what we want to do, we need to figure out where to do it! To see where to make these changes we need to take a little tour of the program. It is four modules, which means it is a far different beast than our previous single-module CLI program was.
Like any project, the best way to figure out what is going on is to establish two things:
- How is the code structured (or is there even a clear structure)?
- What is called to kick things off? (“Why does anything do anything?”)
When I go into termifierg/src/
I see some very different things than before, but there is a clear pattern occurring (though it is somewhat different than the common Erlang server-side “service -> worker” pattern):
ceverett@okonomiyaki:~/vcs$ cd termifierg/src/ ceverett@okonomiyaki:~/vcs/termifierg/src$ ls -l 合計 16 -rw-rw-r-- 1 ceverett ceverett 1817 12月 27 12:50 termifierg.erl -rw-rw-r-- 1 ceverett ceverett 3166 12月 27 12:50 tg_con.erl -rw-rw-r-- 1 ceverett ceverett 3708 12月 27 12:50 tg_gui.erl -rw-rw-r-- 1 ceverett ceverett 1298 12月 27 12:50 tg_sup.erl
We have the main application module termifierg.erl
, the name of which we chose during the creation process, and then we also have three more modules that use the tg_
prefix we chose during creation: tg_con
, tg_gui
and tg_sup
. As any erlanger knows, anything named *_sup.erl
is going to be a supervisor, so it is logical to assume that tg_sup.erl is the top (in this case the only) supervisor for the application. It looks like there are only two “living” modules, the *_con
one, which seems short for a “control” module, and the *_gui
one, which seems likely to be just the code or process that controls the actual window itself.
We know that we picked termifierg
as the appmod for the project, so it should be the place to find the typical OTP AppMod:start/2
function… and sure enough, there it is: termifierg:start/2
is simply call to start things by calling tg_sup:start_link/0
. So next we should see what tg_sup
does. Being a supervisor its entire definition should be a very boring declaration of what children the supervisor has, how they depend on one another (order), and what restart strategy is being employed by that supervisor.
(Protip: magical supervision is evil; boring, declarative supervision is good.)
init([]) -> RestartStrategy = {one_for_one, 0, 60}, Clients = {tg_con, {tg_con, start_link, []}, permanent, 5000, worker, [tg_con]}, Children = [Clients], {ok, {RestartStrategy, Children}}.
Here we see only one thing is defined: the “control” module called tg_con
. Easy enough. Knowing that we have a GUI module as well, we should expect that the tg_con
module probably links to the GUI process instead of monitoring it, though it is possible that it might monitor it or maybe even use the GUI code module as a library of callback functions that the control process itself uses to render a GUI on its own.
[NOTE: Any of these approaches is valid, but which one makes the most sense depends entirely on the situation and type of program that is being written. Is the GUI a single, simple interface to a vast and complex system underneath? Does each core control component of the system have its own window or special widget or tab to render its data? Are there lots of rendered “views” on the program data, or a single view on lots of different program data? Is it OK for updates to the GUI to block on data retrieval or processing? etc.]
Here we see a program that is split between interface code and operation code. Hey! That sounds a lot like the “View” and “Control” from the classic “MVC” paradigm! And, of course, this is exactly the case. The “Model” part in this particular program being the data we are handling which is defined by the Erlang syntax on the one hand and JSON’s definition on the other (and so are implicit, not explicit, in our program).
The tg_con
process is the operation code that does things, and it is spawn_link
ing the interface that is defined by tg_gui
. If either one crashes it will take the other one down with it — easy cleanup! For most simple programs this is a good model to start with, so we’ll leave things as they are.
The tg_gui process is the one that interfaces with the back-end. In this simple of a program we could easily glom them all together without getting confused, but if we add even just a few interesting features we would bury our core logic under the enormous amounts of verbose, somewhat complex code inherent in GUI applications — and that becomes extremely frustrating to separate out later (so most people don’t do it and their single-module-per-thingy WX code becomes a collection of balls of mud that are difficult to refactor later, and that stinks!).
Since we already know what we want to do with the program and we already proved the core code necessary to accomplish it in the previous tutorial, we can move on to building an interface for it.
This is what the final program looks like, using the same example.json
from the CLI example:

At this point we are going to leave the blog and I will direct you instead to the repository code, and in particular, the commit that shows the diff between the original template code generated by ZX and the modified commit that implements the program described at the beginning of this tutorial. The commit has been heavily commented to explain every part in detail — if you are curious about how this Wx program works I strongly recommend reading the code commit and comments!
A very interesting project for those of us who are learning to program in Erlang.
I made some videos about implementing a simple telnet chat server and a Tetris GUI game from scratch. Both of those explain a bit about the structure of the project and how things talk to each other. Hopefully you’ll find those useful as well.