Copyright (c) Hyperion Entertainment and contributors.

Difference between revisions of "AmiWest Lesson 4"

From AmigaOS Documentation Wiki
Jump to navigation Jump to search
(Created page with "= AmiWest Lesson 4: Building GUIs = == Basic Intuition GUI == == Basic ReAction GUI == window.class based")
 
Line 1: Line 1:
= AmiWest Lesson 4: Building GUIs =
+
= AmiWest Lesson 4: ProcTree =
   
  +
Working with AmigaOS GUIs can be quite challenging. There are several toolkits available including the original Intuition, GadTools, basic BOOPSI, ReAction and MUI. Although all toolkits are still available, new applications should use either ReAction or MUI for best results.
== Basic Intuition GUI ==
 
   
  +
This tutorial will focus on using ReAction to create a simple GUI. The GUI displays and automatically updates the system Process tree. This simple example touches on many aspects of AmigaOS programming. Full source code is available [[Media:proctree.lha|from here]].
== Basic ReAction GUI ==
 
 
window.class based
 

Revision as of 22:34, 16 October 2012

AmiWest Lesson 4: ProcTree

Working with AmigaOS GUIs can be quite challenging. There are several toolkits available including the original Intuition, GadTools, basic BOOPSI, ReAction and MUI. Although all toolkits are still available, new applications should use either ReAction or MUI for best results.

This tutorial will focus on using ReAction to create a simple GUI. The GUI displays and automatically updates the system Process tree. This simple example touches on many aspects of AmigaOS programming. Full source code is available from here.