Difference between revisions of "Developer Guides"

From GNUstepWiki
Jump to navigation Jump to search
(added "Introduction to GNUstep Libraries and Tools")
Line 4: Line 4:
  
 
{{Stub}}
 
{{Stub}}
 +
 +
=== [[GNUstep Suite|Introduction to GNUstep Libraries and Tools]] ===
 +
 +
A general overview of GNUstep.
  
 
=== [http://www.gnustep.org/resources/documentation/Developer/Base/ProgrammingManual/manual_toc.html Introduction to GNUstep (Foundation) Programming] ===
 
=== [http://www.gnustep.org/resources/documentation/Developer/Base/ProgrammingManual/manual_toc.html Introduction to GNUstep (Foundation) Programming] ===
 +
 
The aim of this manual is to introduce you to the Objective-C language and the GNUstep development environment, in particular the Base library. The manual is organised to give you a tutorial introduction to the language and APIs, by using examples whenever possible, rather than providing a lengthy abstract description.  
 
The aim of this manual is to introduce you to the Objective-C language and the GNUstep development environment, in particular the Base library. The manual is organised to give you a tutorial introduction to the language and APIs, by using examples whenever possible, rather than providing a lengthy abstract description.  
  
Line 11: Line 16:
  
 
=== [[Writing Makefiles]] ===
 
=== [[Writing Makefiles]] ===
 +
 
The Makefile package is a system of make commands that is designed to encapsulate all the complex details of building and installing various types of projects from libraries to applications to documentation. This frees the developer to focus on the details of their particular project. Only a fairly simple main makefile need to be written which specifies the type of project and files involved in the project.
 
The Makefile package is a system of make commands that is designed to encapsulate all the complex details of building and installing various types of projects from libraries to applications to documentation. This frees the developer to focus on the details of their particular project. Only a fairly simple main makefile need to be written which specifies the type of project and files involved in the project.
  
 
=== [ftp://ftp.gnustep.org/pub/gnustep/core/gnustep-examples-1.1.0.tar.gz Sample GNUstep Programs] ===
 
=== [ftp://ftp.gnustep.org/pub/gnustep/core/gnustep-examples-1.1.0.tar.gz Sample GNUstep Programs] ===
 +
 
This isn't really an article but rather a collection of small "codified guides" for the pragmatic programmer who wants to explore GNUstep by looking at and messing around with example code. This is best done while reading about basic concepts of OpenStep or Cocoa with the API documentation ([[Foundation]], [[AppKit]]) open in the background.
 
This isn't really an article but rather a collection of small "codified guides" for the pragmatic programmer who wants to explore GNUstep by looking at and messing around with example code. This is best done while reading about basic concepts of OpenStep or Cocoa with the API documentation ([[Foundation]], [[AppKit]]) open in the background.
  
 
== General ==
 
== General ==
 +
 
=== [[Writing portable code|Coding for Portability]] ===
 
=== [[Writing portable code|Coding for Portability]] ===
Writing code that will compile and then run on different platforms can be surprisingly easy. This guide describes some straight-forward steps to take to make your program easy to port to new platforms.
+
 
 +
Writing code that will compile and then run on different platforms can be surprisingly easy. This guide describes  
 +
some straight-forward steps to take to make your program easy to port to new platforms.
  
 
=== [[Property Lists|Using Property Lists]] ===
 
=== [[Property Lists|Using Property Lists]] ===
 +
 
A regular issue that programmers face is storing structured configuration information, and reading it back. GNUstep has a standard mechanism that can be used for this task, amongst others: Property Lists.
 
A regular issue that programmers face is storing structured configuration information, and reading it back. GNUstep has a standard mechanism that can be used for this task, amongst others: Property Lists.
  
 +
== Graphical Applications ==
  
 
== Graphical Applications ==
 
 
=== Simple Graphical Application Design ===
 
=== Simple Graphical Application Design ===
 
GNUstep includes several sophisticated development tools. GNUstep GUI interfaces are designed using [[Gorm]] (Graphical Object Relationship Modeler), an elegant application developed by Gregory Casamento. (See his [http://heronsperch.blogspot.com/ blog] for the latest news on GORM.) There are two proto-IDEs, [[ProjectCenter]] and [[ProjectManager]].
 
GNUstep includes several sophisticated development tools. GNUstep GUI interfaces are designed using [[Gorm]] (Graphical Object Relationship Modeler), an elegant application developed by Gregory Casamento. (See his [http://heronsperch.blogspot.com/ blog] for the latest news on GORM.) There are two proto-IDEs, [[ProjectCenter]] and [[ProjectManager]].
Line 34: Line 44:
  
 
=== [[Document based applications|Document-based Application Design]] ===
 
=== [[Document based applications|Document-based Application Design]] ===
 +
 
One of the most common use-patterns of applications on modern platforms is that of document-based applications --- applications which can have several active user-controlled contexts. Some familar examples might be a word processor where the user may have multiple document windows concurrently, or a web browser which allows a user to have a number of different browser windows open at the same time. This guide provides information and tips on how to code this style of application.
 
One of the most common use-patterns of applications on modern platforms is that of document-based applications --- applications which can have several active user-controlled contexts. Some familar examples might be a word processor where the user may have multiple document windows concurrently, or a web browser which allows a user to have a number of different browser windows open at the same time. This guide provides information and tips on how to code this style of application.
  
Line 39: Line 50:
  
 
== Other Information ==
 
== Other Information ==
 +
 
=== Developer sites ===
 
=== Developer sites ===
:''' [[For_Developers | GNUstep for Developers]] ''' - Information useful to all developers.
+
 
:''' [http://www.roard.com/docs/ GNUstep HelpCenter] '''
+
* [http://www.roard.com/docs/ GNUstep HelpCenter]
  
  
 
[[Category:Development]]
 
[[Category:Development]]

Revision as of 16:42, 12 September 2006

This page is intended as a collection of guides for developers.

Introductory Articles on GNUstep Development

This article or section is a stub (i.e., in need of additional material).
You can help us by expanding it


Introduction to GNUstep Libraries and Tools

A general overview of GNUstep.

Introduction to GNUstep (Foundation) Programming

The aim of this manual is to introduce you to the Objective-C language and the GNUstep development environment, in particular the Base library. The manual is organised to give you a tutorial introduction to the language and APIs, by using examples whenever possible, rather than providing a lengthy abstract description.

While Objective-C is not a difficult language to learn or use, some of the terms may be unfamiliar, especially to those that have not programmed using an object-oriented programming language before. Whenever possible, concepts will be explained in simple terms rather than in more advanced programming terms, and comparisons to other languages will be used to aid in illustration.

Writing Makefiles

The Makefile package is a system of make commands that is designed to encapsulate all the complex details of building and installing various types of projects from libraries to applications to documentation. This frees the developer to focus on the details of their particular project. Only a fairly simple main makefile need to be written which specifies the type of project and files involved in the project.

Sample GNUstep Programs

This isn't really an article but rather a collection of small "codified guides" for the pragmatic programmer who wants to explore GNUstep by looking at and messing around with example code. This is best done while reading about basic concepts of OpenStep or Cocoa with the API documentation (Foundation, AppKit) open in the background.

General

Coding for Portability

Writing code that will compile and then run on different platforms can be surprisingly easy. This guide describes some straight-forward steps to take to make your program easy to port to new platforms.

Using Property Lists

A regular issue that programmers face is storing structured configuration information, and reading it back. GNUstep has a standard mechanism that can be used for this task, amongst others: Property Lists.

Graphical Applications

Simple Graphical Application Design

GNUstep includes several sophisticated development tools. GNUstep GUI interfaces are designed using Gorm (Graphical Object Relationship Modeler), an elegant application developed by Gregory Casamento. (See his blog for the latest news on GORM.) There are two proto-IDEs, ProjectCenter and ProjectManager.

There are several introductory tutorials for using these development tools. The first tutorial by Pierre-Yves Rivaille is a classic demonstrating the process used to create the ubiquitous currency converter application. A second tutorial by Yen-Ju Chen is somewhat more in-depth and extensive.

Nicolas Roard created a video demonstrating the process of developing a simple calculator, and another video here by Sašo Kiselkov if you feel the need to create another currency converter.

Document-based Application Design

One of the most common use-patterns of applications on modern platforms is that of document-based applications --- applications which can have several active user-controlled contexts. Some familar examples might be a word processor where the user may have multiple document windows concurrently, or a web browser which allows a user to have a number of different browser windows open at the same time. This guide provides information and tips on how to code this style of application.


Other Information

Developer sites