TweetFollow Us on Twitter

AppMaker v1.2

AppMaker v1.2

Matt Stibbe

The development process known as stepwise refinement-which most developers seem to employ, either formally or informally-assumes that development will use repeated "try, test, improve" steps. Applied to the implementation of a user interface, this has given rise to the idea of prototyping. If the user interface is thought of as the shell around a program's actual function, prototyping is the process of building that shell, before the center even exists.

Of course, in a typical Macintosh application, the distinction between form and substance is blurred. On the one hand, the user interface thought police at Apple constrain our interfaces so they conform to a laid-down standard, and on the other hand, the Mac-a winged horse for a programmer-allows any number of innovations and graphical tricks.

Implementing a user interface that conforms to standards, but has room for innovation, is complicated in some respects by the otherwise helpful requirements of MacApp programming. Anyone who has wrestled with the Rez/Derez/ViewEdit combination to change the size of one button will know what I mean.

AppMaker, from Bowers Development, is an attempt to resolve these problems. It is billed as a program for creating Macintosh applications. In reality, it is a tool for prototyping them.

AppMaker allows you to design, test, and refine a user interface consisting of menus, dialogs, windows, and controls. When the design is complete, it can generate source code for the application in one of a number of programming languages. It also supports MacApp; a special, modified version of the program (that comes with the standard version) is designed for prototyping MacApp code.

In this review, I'll confine myself to evaluating AppMaker's performance with MacApp. Apart from the MacApp-specific features listed in the Using AppMaker with MacApp section below, AppMaker works in the same way for MacApp, the Think Class Library, or conventional, procedural C or Pascal.

Operation

AppMaker has editors for windows, dialogs, alerts and menus. As far as the user is concerned, alerts, dialogs and windows are treated the same way. Under MacApp, the main difference is the root level view type. There are browsers for each type, and when a new project is opened, all the standard windows and menus are present.

For example, a MacApp application has a clipboard window already defined. As with ResEdit or ViewEdit, it requires a menu command to create a new window of any kind. The new window appears on the screen, and can be resized.

Where appropriate, the user can select the type of window; for example, a modeless dialog, or a document window with a go-away box and zoom box. Once a window is on the screen, a menu of control items appears, including static and editable text, radio buttons and check boxes, scrollers, and so on. These correspond to MacApp view descendants (such as TPopup). As with ViewEdit, it is possible to define the characteristics of these objects-for example, changing the id (AppMaker generates a new one for each) or the class of the object, to make a custom descendant of a standard object.

You can group items together, with the conventional bounding box and tag. This is more than decorative: objects grouped this way can be moved about together, by dragging the box which surrounds them; radio buttons confine the mutual exclusivity to their siblings in a given box.

Scrollers are another useful feature. The scrollable area can be resized, and either horizontal or vertical scroll bars deleted or retained. It is possible to create custom controls, such as sliding volume controls or multi-state buttons. Several examples of this are provided with AppMaker. It is simply a matter of importing PICT resources that correspond to the various stages or elements of the controls.

All items, from window contents to a whole menu, can be copied and pasted easily. Being able to open multiple project documents at once allows standard user interface features to be easily copied between projects.

Menus are created using a facsimile of the menu bar in a special window. You can also use the menus you define as pop-up menus in windows or as sub-menus. You can define custom graphic menus such as those used in MacPaint, though they do not tear off. Editing a menu is very simple. Each menu item, command-key equivalent, and MacApp command number is an editable text field, and can be changed simply by retyping the contents.

A number of standard menus that are defined at run time, such as the Apple menu and fonts, are available as are the usual File and Edit menus.

Using AppMaker with MacApp

The main attraction of AppMaker is that it is very quick to produce a standalone program that looks-and in part behaves-like the real thing. Because it comes with a wide variety of language and class library support built in, it is useful to those who are fluent in different languages. Most MacApp programmers know C++ and Object Pascal; many use MPW for large projects, and Think products for smaller, more urgent work. This also means that the investment in AppMaker is not wasted if you change or upgrade your programming environment.

It is possible to reconfigure the code generated by AppMaker using resource templates. This allows the core code that AppMaker uses to be changed and upgraded, for example, to match a much-altered MacApp library that has been developed by a large software house. This flexibility is shown in the number of systems that AppMaker supports. It has some major advantages over ViewEdit in terms of ease of use and flexibility, although in practice both would be used, each for different purposes.

AppMaker's interface to MacApp's way of doing things has been well thought out; for example, in constructing view hierarchies and scrollers, or the way that it includes the menu command IDs and then provides a slightly amended MABuild script so there is no need to PostRez the menu definitions. The ability to group items logically together not only helps improve the appearance of the interface, but also makes it work much better.

All in all, it is a well-put-together application that does everything a user might reasonably ask of it.

Weaknesses

That is not to say AppMaker is without faults. It lacks ViewEdit's fine control over the appearance of individual dialog items-for instance, their color, font and style; and it does not provide such explicit control over the arrangement of views and subviews.

In normal circumstances, this does not affect its prototyping capabilities at all, and during full scale development the two programs would be used in tandem. Its main rival, Prototyper, has a "Quicklook" feature which allows the interface to be tested without quitting the program. Given that it may take several minutes to generate the source code and several more to compile it, even on a small project, the ability to test the user interface immediately and interactively within the program is one feature that is sorely lacking in AppMaker.

Prototyper also offers some useful facilities for linking buttons, menus and windows together. For example, a button can be programmed to enable or disable others, another may open a dialog box and so on. In AppMaker, this logic has to be provided by the user's own source code. For creating real applications, Prototyper's link facilities are not very useful as they only provide a limited set of operations, but for prototyping-the creation of testable interface without any code being written-they are very helpful.

Generated Code

The code AppMaker produces seems robust and well structured. It follows Apple's naming conventions, segmentation rules, and takes its guide from Apple's sample programs. Comments are terse, so the student should not expect a running commentary. It separates code and resources-in MacApp, this means it generates a .r file-and this saves having to DeRez resource files, as one has to do with a file created by ViewEdit.

It offers little control over the style of the source code it generates. You can change the style of code by editing the source code templates, but it would have been better to provide routines to set indents and so forth (Prototyper does this). It makes use of a library of core routines which provide common functions. Although the source code for this library is provided, it requires extra learning if the code is to be used in a long term development rather than as a quick prototype.

Documentation

The manual is thorough and concise. It was crammed with version notes, addenda and notes for using the program with MacApp. This information is important and loose notes are better than nothing; however, it gives a sloppy impression. As the manual is comb bound and obviously typeset using regular DTP and laser printer output, it left me wondering why Bowers Development couldn't include these notes directly in the manual.

However, this is a minor niggle. Anyone who has used ResEdit, ViewEdit, another prototyper, or even HyperCard, will find this program easy to use with little help from the manual. It has a thorough tutorial section that walks through a sample AppMaker project, a simple application with a few menus, windows and so on. It also contains a detailed description of the AppMaker library that must be included with any application using AppMaker to generate some of its code.

Conclusions

The actual operation of the program is fast, but its code generation seemed very slow. In some ways, it forces a style on the user, and it still requires some work in order to generate a truly original and graphical interface. There were no noticeable bugs or unwarranted features.

Prototyping and user interface testing are two good things; they help the developer and the end-user, respectively. AppMaker is not going to create finished applications for you. And there is no way that someone is going to learn how to develop good efficient MacApp code simply by using it, and "filling in the blanks." This is like saying that painting by numbers will make you a great master.

Instead, AppMaker is perfect for building bits of user interfaces that work and thus can be tested, experimenting with new ways of presenting a program, or building an experimental skeleton for a new program. As a bonus, it provides a quicker way of cobbling together MacApp view resources, and a way of knocking up "quick and dirty" programs that need a graphical interface, but little application-specific code.

So who should buy it? This program is for anyone who regularly has to design user interfaces for MacApp-based applications, or who has to prototype a large MacApp program rapidly. For these people, it will be a godsend.

Version tested

I tested version 1.2 on a Mac IIcx under System 7, with MPW 3.2, MacApp 2, and C++. According to the Bowers, there is a new version (1.5) due soon that will support MacApp 3, System 7 source code generation and the new Think Class Library. Apparently, those who buy the current version from August 1991 onwards will be upgraded free of charge when the new version is released. Bowers claims compatibility with Mac Plus, SE, SE/30 or II series computers using System 5 or later.

Market data

AppMaker is published by Bowers Development. List price is $295. Bowers Development can be reached at (508) 369-8175 or AppleLink D1721. No license fees are required for applications using code generated by AppMaker.

 

Community Search:
MacTech Search:

Software Updates via MacUpdate

Latest Forum Discussions

See All

Tokkun Studio unveils alpha trailer for...
We are back on the MMORPG news train, and this time it comes from the sort of international developers Tokkun Studio. They are based in France and Japan, so it counts. Anyway, semantics aside, they have released an alpha trailer for the upcoming... | Read more »
Win a host of exclusive in-game Honor of...
To celebrate its latest Jujutsu Kaisen crossover event, Honor of Kings is offering a bounty of login and achievement rewards kicking off the holiday season early. [Read more] | Read more »
Miraibo GO comes out swinging hard as it...
Having just launched what feels like yesterday, Dreamcube Studio is wasting no time adding events to their open-world survival Miraibo GO. Abyssal Souls arrives relatively in time for the spooky season and brings with it horrifying new partners to... | Read more »
Ditch the heavy binders and high price t...
As fun as the real-world equivalent and the very old Game Boy version are, the Pokemon Trading Card games have historically been received poorly on mobile. It is a very strange and confusing trend, but one that The Pokemon Company is determined to... | Read more »
Peace amongst mobile gamers is now shatt...
Some of the crazy folk tales from gaming have undoubtedly come from the EVE universe. Stories of spying, betrayal, and epic battles have entered history, and now the franchise expands as CCP Games launches EVE Galaxy Conquest, a free-to-play 4x... | Read more »
Lord of Nazarick, the turn-based RPG bas...
Crunchyroll and A PLUS JAPAN have just confirmed that Lord of Nazarick, their turn-based RPG based on the popular OVERLORD anime, is now available for iOS and Android. Starting today at 2PM CET, fans can download the game from Google Play and the... | Read more »
Digital Extremes' recent Devstream...
If you are anything like me you are impatiently waiting for Warframe: 1999 whilst simultaneously cursing the fact Excalibur Prime is permanently Vault locked. To keep us fed during our wait, Digital Extremes hosted a Double Devstream to dish out a... | Read more »
The Frozen Canvas adds a splash of colou...
It is time to grab your gloves and layer up, as Torchlight: Infinite is diving into the frozen tundra in its sixth season. The Frozen Canvas is a colourful new update that brings a stylish flair to the Netherrealm and puts creativity in the... | Read more »
Back When AOL WAS the Internet – The Tou...
In Episode 606 of The TouchArcade Show we kick things off talking about my plans for this weekend, which has resulted in this week’s show being a bit shorter than normal. We also go over some more updates on our Patreon situation, which has been... | Read more »
Creative Assembly's latest mobile p...
The Total War series has been slowly trickling onto mobile, which is a fantastic thing because most, if not all, of them are incredibly great fun. Creative Assembly's latest to get the Feral Interactive treatment into portable form is Total War:... | Read more »

Price Scanner via MacPrices.net

Early Black Friday Deal: Apple’s newly upgrad...
Amazon has Apple 13″ MacBook Airs with M2 CPUs and 16GB of RAM on early Black Friday sale for $200 off MSRP, only $799. Their prices are the lowest currently available for these newly upgraded 13″ M2... Read more
13-inch 8GB M2 MacBook Airs for $749, $250 of...
Best Buy has Apple 13″ MacBook Airs with M2 CPUs and 8GB of RAM in stock and on sale on their online store for $250 off MSRP. Prices start at $749. Their prices are the lowest currently available for... Read more
Amazon is offering an early Black Friday $100...
Amazon is offering early Black Friday discounts on Apple’s new 2024 WiFi iPad minis ranging up to $100 off MSRP, each with free shipping. These are the lowest prices available for new minis anywhere... Read more
Price Drop! Clearance 14-inch M3 MacBook Pros...
Best Buy is offering a $500 discount on clearance 14″ M3 MacBook Pros on their online store this week with prices available starting at only $1099. Prices valid for online orders only, in-store... Read more
Apple AirPods Pro with USB-C on early Black F...
A couple of Apple retailers are offering $70 (28%) discounts on Apple’s AirPods Pro with USB-C (and hearing aid capabilities) this weekend. These are early AirPods Black Friday discounts if you’re... Read more
Price drop! 13-inch M3 MacBook Airs now avail...
With yesterday’s across-the-board MacBook Air upgrade to 16GB of RAM standard, Apple has dropped prices on clearance 13″ 8GB M3 MacBook Airs, Certified Refurbished, to a new low starting at only $829... Read more
Price drop! Apple 15-inch M3 MacBook Airs now...
With yesterday’s release of 15-inch M3 MacBook Airs with 16GB of RAM standard, Apple has dropped prices on clearance Certified Refurbished 15″ 8GB M3 MacBook Airs to a new low starting at only $999.... Read more
Apple has clearance 15-inch M2 MacBook Airs a...
Apple has clearance, Certified Refurbished, 15″ M2 MacBook Airs now available starting at $929 and ranging up to $410 off original MSRP. These are the cheapest 15″ MacBook Airs for sale today at... Read more
Apple drops prices on 13-inch M2 MacBook Airs...
Apple has dropped prices on 13″ M2 MacBook Airs to a new low of only $749 in their Certified Refurbished store. These are the cheapest M2-powered MacBooks for sale at Apple. Apple’s one-year warranty... Read more
Clearance 13-inch M1 MacBook Airs available a...
Apple has clearance 13″ M1 MacBook Airs, Certified Refurbished, now available for $679 for 8-Core CPU/7-Core GPU/256GB models. Apple’s one-year warranty is included, shipping is free, and each... Read more

Jobs Board

Seasonal Cashier - *Apple* Blossom Mall - J...
Seasonal Cashier - Apple Blossom Mall Location:Winchester, VA, United States (https://jobs.jcp.com/jobs/location/191170/winchester-va-united-states) - Apple Read more
Seasonal Fine Jewelry Commission Associate -...
…Fine Jewelry Commission Associate - Apple Blossom Mall Location:Winchester, VA, United States (https://jobs.jcp.com/jobs/location/191170/winchester-va-united-states) Read more
Seasonal Operations Associate - *Apple* Blo...
Seasonal Operations Associate - Apple Blossom Mall Location:Winchester, VA, United States (https://jobs.jcp.com/jobs/location/191170/winchester-va-united-states) - Read more
Hair Stylist - *Apple* Blossom Mall - JCPen...
Hair Stylist - Apple Blossom Mall Location:Winchester, VA, United States (https://jobs.jcp.com/jobs/location/191170/winchester-va-united-states) - Apple Blossom Read more
Cashier - *Apple* Blossom Mall - JCPenney (...
Cashier - Apple Blossom Mall Location:Winchester, VA, United States (https://jobs.jcp.com/jobs/location/191170/winchester-va-united-states) - Apple Blossom Mall Read more
All contents are Copyright 1984-2011 by Xplain Corporation. All rights reserved. Theme designed by Icreon.