[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

3. GNUstep Applications

The AppKit provides services to develop complex and modern GUI applications. Some of these services include generic controls and displays, pasteboard and true drag-and-drop, separated interface and code files, etc.

Compared to other platforms and development toolkits, GNUstep takes a slightly different paradigm to development. Operating systems such as Microsoft Windows treat applications in a more window-centric manner, e.g. each document starts a new instance of the application, in a new window with its own menu.

In GNUstep, applications are treated in an application centric manner. This means that there is one menu for the application, and documents and other windows are associated with this menu instance. This probably requires a different attitude to development, but the AppKit is quite well integrated and logical to convey some of the ideas it introduces.


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

3.1 Components

A GNUstep application has various components that are assembled (from a developer’s perspective) into an app wrapper. An app (application) wrapper is a directory with the extension ‘.app’ that holds the application’s executable and resource files, as noted below.


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

3.1.1 Interface File(s)

An application has one or more interface files. These are separate file entities that are used to display the graphical interface that your application has. They are comparable to .glade interface files used in GNOME or those used in Qt, however they go a bit further, permitting easy linking against your objects, so that you are freed from writing wrapper code. They are created using Gorm, GNUstep’s application modelling programme. It allows real drag and drop GUI assembly and direct control editing.

Most applications take one interface file, which contains their main menu and their main window, presented to the user. They will also take you preferences and other auxilliary windows that you application requires. They take no Objective-C code (being strictly interface only), but generic class templates are able to be generated for outlets and actions that you set Gorm to integrate with.

Interface files are commonly referred to as "nib" files or "gorm" files, taken from the name of programmes used to generate them. They appear as a directory on your filesystem, and often take the name of your application with the extension ‘.gorm’.


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

3.1.2 Application property list

This file is a property list, containing the defaults and some information used to load your application, include the main interface file, supported document types and interapplication services. It usually takes the name ‘Info-gnustep.plist’. See the base manual for more details about the syntax and structure of property lists. We will provide the details of application property lists through this manual.


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

3.1.3 Makefile

Like GNUstep tools, applications have a file, ‘GNUmakefile’, for easy application compilation, linking and assembly into an app wrapper. It includes the name and version of your application, source code file, required libraries and frameworks and your resource files (detailed below).


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

3.1.4 Resource Files

Resource Files are any sorts of resources that your application will need to operate, including interface files and any icons, images, data, etc. that your application uses. They are stored in the ‘Resources’ directory in your application’s app wrapper.

You will most likely ever need only two resources: your interface file, and your application’s property list (Info-gnustep.plist).


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

3.2 Constructing an application

Below, we have listed the main steps required in the building of an application from scratch. These steps are listed in a general, but you will generally need to come back to them again e.g. if you add new source or interface files to your application, you will need to come back and modify the makefile. See the chapters on Makefile creation, Interface files and Application property lists for more details on the construction of these various files.

  1. GNUmakefile

    You will need to create a GNUmakefile to build your application. A generic template is shown in the chapter entitled see Application Makefiles.

  2. Interface Files

    You will need at least one interface file (‘.gorm’) for your application, however, you can create your interface programatically if necessary (although this is rarely recommended).

  3. Application Property List

    This is generally necessary, especially if you want to define your main interface file, however it is possible to let the make application generate it for you.

  4. Other Resource Files

    These may include icons, images, other property lists, application-specific data files. You can add whatever resource files you like, including directories (which should be added recursively).


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

3.3 Building a First Application

This section attempts to run you through the steps that you would usually go through to assemble an application from scratch. We expect that you have some experience programming with Objective-C, especially with GNUstep, and that you at least have it installed and running with some applications installed.

Apart from helping you setup the infrastructure for a basic application, we’ve provided instructions for a basic control and event handler as an example. You may wish to ignore these steps, but they’re useful reminders if you use these instructions in the future.

A checklist includes:

  1. GNUstep Make sure that you have gnustep-make, gnustep-base, gnustep-gui and gnustep-back installed and running on your system. There system-specific instructions for installing GNUstep on different systems at the website, http://www.gnustep.org. We also expect that you have some experience using it, such as sourcing the GNUstep startup shell file and starting applications. There are various tutorials and instructions available on the internet for getting GNUstep up and running.
  2. Gorm.app Gorm, as mentioned above, is the GNUstep interface builder. It’s available as an application from the GNUstep web site, and is the recommended means to build interfaces for applications. Make sure that it will startup and operate correctly on your system. We will use it to build the interface for our application.
  3. A text editor Depending on what platform your working on and whether or not you’re using a GUI, an editor could be anything simple from vim to a good quality free editor like gedit or kate. You will need it to edit the source code files and makefiles we will use to build the application.
  4. A shell GNUstep’s makefile system depends heavily on the shell environment that make commands are invoked in. On Unix, this could be ‘sh’, ‘bash’, ‘ksh’, ‘csh’ or whatever you prefer to work with. On Windows, you will want to use MSYS which comes with a minimal Unix-like shell (a port of bash) which is sufficient for use with GNUstep. If you use the installable binary version of GNUstep for Windows, you should have a copy of MSYS installed.

    We will assume somewhat that you know your way around your filesystem using it, and that you know most basic commands for creating files, starting programmes, manipulating directory structures, etc.


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

3.3.1 Setup

Startup your shell and source GNUstep.sh from your GNUstep installation (if it’s not sourced by default). Create a directory for your application sources to be created in. For example:

 
> cd ~
> mkdir firstapp
> cd firstapp
> . /usr/lib/GNUstep/System/Library/Makefiles/GNUstep.sh
>

In the above, we simply created a new directory under our home directory called ‘firstapp’, changed into it and sourced our GNUstep installation (which in this case is under ‘/usr/lib(1)).

Next we will create our makefile. Using your favourite editor, create a file called ‘GNUmakefile’ (the case is important). In this case we’re using vim:

 
touch GNUmakefile
vim GNUmakefile

And in the makefile, add the following:

 
include $(GNUSTEP_MAKEFILES)/common.make

APP_NAME = FirstApp

FirstApp_OBJC FILES =  main.m  \
  MyController.m 

FirstApp_MAIN_MODEL_FILE = FirstApp.gorm

FirstApp_RESOURCE_FILES = FirstApp.gorm

include $(GNUSTEP_MAKEFILES)/application.make

The first line of the makefile includes some declarations common to all makefiles (tools, bundles, etc).

APP_NAME contains a space-separated list of the applications to build. In this case we’re only building one (FirstApp). The application wrapper that is outputted will be called ‘FirstApp.app’. This name also is used to prefix each of the following variables. If you were to change this value, you would have to change the value of _OBJC_FILES, _MAIN_MODEL_FILE, etc. accordingly.

FirstApp_OBJC_FILES contains a list of each of the Objective-C files that will be compiled into this programme. Note that like normal makefiles, you can split a variable declaration like this over a number of lines by using the "\" delimeter.

FirstApp_MAIN_MODEL_FILE is the main interface file wrapper.

FirstApp_RESOURCE_FILES contains a list of all the resources, including interface files, icons, property lists etc.

The final line lets the makefile system know we want to build an application.


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

3.3.2 Interface File

Make sure you are familiar with Gorm before using this. Refer to the Gorm Manual, a link to which should be at http://www.gnustep.org/experience/Gorm.html.

Load up Gorm.app and create a "New Application". A window should appear with the title and a project called "UNTITLED".

 
openapp Gorm.app

From the menu, select Document->New Application

Save your project as "FirstApp.gorm" by going to Document->Save, navigating to the project directory, typing in "FirstApp" as the filename and clicking "OK".

Select your window in the project pane. Switch to the Inspector and give it a new name such as "My First Application".

Switch back to the project pane. Select "Classes" from the toolbar. From the class view, select "NSObject", goto the main menu and select Classes->Create Subclass.

Double-click the new class in the class view, and double-click to rename it to "MyController" (case is important). Click "OK" if prompted. We’re going to use this class as our application’s main controller, but you can create as many "controller" classes as you like with whatever names you choose. It just so happens that we’ve decided to create a file with the name "MyController.m" that will contain the implementation of this class. Note that GNUstep doesn’t enforce a strict MVC pattern on your classes; it merely separates the view part into it’s own classes which you configure in Gorm.app, and lets you handle data and behaviour (Model and Controller) in your code as you like.

Select the button in the "Action" column for "MyController" then goto Classes->Add Outlet/Action. Rename the action to "myAction:". Select the class again, and goto Classes->Instantiate. Again, we could call this action whatever we like, just make sure that it’s not something generic like "click:", which are used by the NSResponder class. The name of the button in method name form is often a good choice.

For the MyController class, goto the main menu and select Classes->Create Class Files. Save them as "MyController.h" and "MyController.m". Gorm.app fills out the basic details for this class (including the action). If you modify the actions and/or outlets on the class in Gorm.app in the future, you will want to add them to your class interface and implementation manually. Gorm.app will override your modifications to files if you tell it to create the class files at some time in the future.(2)

Goto the palette, click the third toolbar button and then click and drag a new button object onto the window. Double-click the button to rename it and call it "My Action".

We now want to connect the button to the action on MyController. First switch to the "Objects" pane in the project view. Note that our MyController class is listed as an object instance, as we instantiated it before. Select it, switch to the Inspector and then select "Connections" from the drop-down box.

Now, make sure that the application window with the button on it and the project window are both visible at the same time. Hold down your first control key (usually left-Ctrl), click the button on the window, and drag the icon to the MyController object in the Objects pane and release. While you are dragging the mouse, you will note that the icon looks like a small circle with a "T" in it. The source object (the button) will continue to contain the "S" circle while the target object (the MyController instance) contains the "T" circle.

Goto File->Save to save your interface file and then quit Gorm.app.


[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

3.3.3 Code

Although we have got Gorm.app to autogenerate our class files, we will want to modify them so that they do something (marginally) useful. Open "MyController.m". At the moment it should look something like:

 
#import "MyController.h"
#import <AppKit/AppKit.h>

@implementation MyController

- (void) myAction:(id) sender
{
}

@end


[ << ] [ >> ]           [Top] [Contents] [Index] [ ? ]

This document was generated by Adam Fedor on December 24, 2013 using texi2html 1.82.