Introducing (in this Chapter):
- Keeping user interface and application objects separate: separation of concerns,
- Mimicking RAD user interface objects in programmer defined application classes,
- Steps in using a programmer defined object:
- define the class,
- allocate a name (reference),
- instantiate the object,
- assign it to the name.
Introduction
One way to make a computer program more robust and more amenable to change is to build it in layers. One might have a user interface layer that takes care of the interaction between the user and the program, an application layer that implements the operations required by the application, and a persistence layer that takes care of permanent storage of the data. This approach is sometimes called "The Three Layer" model and is one implementation of a principle called the "Separation of Concerns principle.Delphis GUI generator addresses the user interface layer very effectively. But what about the application layer? To begin we look at defining and instantiating our own classes to provide application logic. While it is possible to add application logic to the RAD generated user interface objects, it is good programming practice instead to separate the user interface from the application and it is from this perspective that we will develop our own classes.
Creating a Simple Non-Visual Class
When we create a new form in Delphi, we reuse a number of existing classes, such as a TForm, TButton and TLabel, and combine them to create a single, new, visual user interface class. Our early programs consist of single form objects and the entire program operation occurs within these self-contained objects. However, an object oriented program is a system of cooperating objects, and we soon move on to programs with several form objects. Each of these has a separate user interface object that communicates and cooperates with other user interface objects in the program.But a realistic program does not consist only of user interface objects. It also contains application objects and these are the focus for this chapter. Application objects are programmer generated since the RAD support for generating user interface objects is not possible in the same way for application objects.
To establish a context for programming an application object, well use the example of a conveyor belt that moves items in a warehouse from storage to a despatch area. To keep track of the number of items, an Add Item button is clicked as each item goes past on the conveyor belt. A supervisor displays the total number of items by clicking and holding down a Display button. When the button is released, the display is cleared. At the end of each shift, the total is reset to zero.
The user interface appears in figure 1 and the Object Tree View, which is available in Delphi 7 and shows the components on the form, appears in figure 2. (Delphi 2006+ has the Model View, which is a bit more sophisticated.) Well develop the program in stages to help clarify some of the important characteristics of OO programming. First well create a non-OO program, where we use a simple variable to keep track of the number of items. Then well make the item count part of the form, which leads to a combined user interface / application object. Finally, well create an application object separate from the user interface object.


