Difference between revisions of "Magic User Interface Programming"

From MorphOS Library

(Subclassing: More subarticles.)
m (Subclassing: One dead link less.)
Line 28: Line 28:
 
==Subclassing==
 
==Subclassing==
 
* [[General Rules and Purpose of Subclassing]]
 
* [[General Rules and Purpose of Subclassing]]
* [[Overriding General Methods]]
+
* Overriding General Methods
 
** [[Overriding Constructors]]
 
** [[Overriding Constructors]]
 
** [[Overriding Destructors]]
 
** [[Overriding Destructors]]

Revision as of 15:49, 3 January 2011

Grzegorz Kraszewski


Introduction

Magic User Interface (MUI for short) is the MorphOS toolkit for creating applications with a graphical user interface. It provides a broad set of gadgets (controls) as well as a complete framework for designing event driven programs. MUI is object oriented, but does not rely on any specific programming language. A BOOPSI (Basic Object Oriented System for Intuition) is used as the foundation of MUI object oriented design.

MUI offers a dynamic layout as its basic mode of operation. The placement of gadgets is determined by grouping them in horizontal, vertical or matrix groups. Pixel coordinates of gadgets adapt dynamically to user preferences like font sizes, spacing between gadgets, objects' frames and backgrounds. The two screenshots below show the same example application. The only difference is that user MUI settings are different.


Digiroller1.png


The first settings are plain and clean. They may even be called a bit oldschool for using simple, vector frames and uniform color backgrounds. A simple window skin, named Mahalaxmi fits this design nicely.


Digiroller2.png


The second example uses some MUI 4 features, like bitmap frames with transparency masks. This dark design is achieved by using the Nox window skin. All gadget position calculations are done automatically, accounting for a larger font and fancy frames. The programmer need not care about user taste and preferences (a good programmer would test the program appearance with a few different settings however).


The First Steps


Subclassing