💾 Archived View for blitter.com › apl-books › APLX50 › APLX-manual › www.microapl.com › apl_help › c… captured on 2023-01-29 at 14:24:39.
⬅️ Previous capture (2022-07-17)
-=-=-=-=-=-=-
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML> <HEAD> <TITLE>Introduction to APLX</TITLE> <META NAME="DESCRIPTION" CONTENT="APL language help page: Introduction to APLX"> <META NAME="KEYWORDS" CONTENT="apl,aplx,apl help"> <!-- %%COMMON_HEAD%% --> <META http-equiv="Content-Type" content="text/html; charset=utf-8"> <LINK rel="stylesheet" type="text/css" href="http://www.microapl.com/styles_apl_help.css"> <!-- %%END%%--> </HEAD> <body> <table> <tr> <td width="800" valign="top" colspan="2"> <center>Topic: <A HREF="ch.htm">APLX Help</A> : <A HREF="ch_000.htm">Getting Started with APLX</A>: <A HREF="ch_000_010.htm">Introduction to APLX</A> </center> <center> [ <A HREF="ch_000_020.htm">Next</A> | <A HREF="ch.htm">Contents</A> | <A HREF="help_index.htm">Index</A> | <A HREF="http://www.microapl.co.uk/apl/index.html">APL Home</A> ]</center> <br></td> </tr> <tr> <td width="120"> <a href="http://www.microapl.co.uk/apl/index.html"><img height="68" border="0" width="119" src="MicroAPL_logo.gif" alt="www.microapl.co.uk"></a> </td> <td align="left" valign="bottom"> <h1>Introduction to APLX</h1> </td> </tr> <tr> <td width="800" valign="top" colspan="2"> <hr> <H2>What is APLX?</H2> <P>APLX is an implementation of the APL language, a unique, general-purpose array-processing language used in application areas such as financial planning, market research, statistics, management information and for all types of scientific and engineering work. APLX is an advanced, second generation implementation of the APL language, closely based on IBM's APL2, but with a number of important enhancements, including object-oriented language extensions. </P> <H2>Product Features:</H2> <p></p> <H3>Cross-platform development</H3> <p>APLX is a full windowing application offering an advanced and elegant environment for developing APL. It is available for Windows 2000, XP and Vista, for Mac OS X, and for x86 Linux. In each case, APLX is a full native application, with the 'look-and-feel' appropriate to the host. Thus, under Mac OS X, it implements Apple's 'Aqua' user-interface, under Windows it follows Microsoft's style, and under Linux it takes the look-and-feel of the X Windows Manager you are using (for example, KDE or Gnome).</p> <p>APLX is also available in a 64-bit version.</p> <p>Server editions of APLX are available for Windows, for x86 Linux, and for the IBM RS/6000 under AIX. The Server editions of APLX use a Client-Server architecture so that you can take advantage of the full development environment on, for example, a Windows desktop machine, with the APL interpreter iteself running on a server on the network.</p> <p>All 32-bit versions of APLX share the same workspace and component file layouts. This means that workspaces saved by any version can be loaded by any other, and component files can be shared across a network of different hosts. Where the two systems use different byte-ordering conventions, APLX transparently converts between them. Workspaces saved using MicroAPL's older APL.68000 and APL Level II interpreters can also be loaded directly (APLX automatically converts them to the new format), and existing component files are also upwards-compatible.</p> <p>For users migrating from other APL implementations, IBM-compatible APL transfer files can be read directly using the <code>)IN</code> system command, or via the File menu.</p> <p></p> <H3>Language features</H3> <p>Like its predecessors, APLX is a high-performance interpreter closely modelled on IBM's APL2 language standard, combined with the tried-and-trusted APL.68000 enhancements. Workspaces of up to 2GB are supported in 32-bit versions of APLX, subject to available system memory. In 64-bit versions of APLX, workspaces can be much larger, limited only by the system on which APLX is running. APLX also implements the very powerful <A HREF="ch_020_070_455.htm"><code>⎕NA</code></A> system function, allowing you to call operating-system or DLL routines directly from APL, as though they were ordinary APL functions.</p> <H3>Object-Oriented language extensions</H3> <p>APLX Version 4 introduces support for object-oriented programming, with user-defined APL classes. It also allows you to make use of external classes written in the .Net languages (C#, Visual Basic, and so on), Java, or Ruby, using natural dot-notation syntax. </p> <H3>Multi-tasking support</H3> <p>APLX provides the facility for your APL programs to create APL child tasks under program control, with signal events and shared variables so they can work together.</p> <H3>Elegant development environment</H3> <p>APLX provides very powerful development facilities, without any distracting on-screen clutter. Key features include:</p> <UL> <LI>You can have multiple APL sessions open simultaneously, each with its own workspace. <LI>Syntax coloring is available for Edit windows, with facilities for identifying and localising variables changed by a function. Bring up the edit window by selecting 'Edit Function/Variable/Class...' from the Edit menu, and choosing one or more functions from the dialog. Or just select the name of an item and press Ctrl-E (Cmd-E on the Macintosh). You can also use the pop-up menu. <LI>A pop-up menu is available at any time to edit an item, see its value or properties (including the syntax and first few lines of comment if it is a function/operator), or access the comprehensive on-line help system for the object or APL symbol at the cursor. For variables, you can also open a Display window which shows the structure of the data, or, if it makes sense, immediately bring up a Chart window showing a graph of the data. Under Windows or Linux, just right-click over an object's name to bring up the pop-up menu. Under MacOS, click-and-hold, or use Ctrl-Click. <LI>Syntax colouring is available for Edit windows, with facilities for identifying and localising variables changed by a function. Bring up the edit window by selecting 'Edit Function/Operator/Variable...' from the Edit menu, and choosing one or more functions from the dialog. Or just select the name of a function and press Ctrl-E (Cmd-E on the Macintosh). You can also use the pop-up menu. <LI>The general array editor allows you very easily to edit any APL variable, including numeric, character, and nested arrays. The only restriction is that you are limited to five dimensions. <LI>The convenient Workspace Explorer window lets you browse quickly through the workspace contents, editing functions in-place if you wish. <LI>Watch windows allow you to monitor the contents of a variable or the result of any APL expression. <LI>The Debug window provides a user-friendly front-end for you to intervene when errors occur or a breakpoint is hit, displaying the stopped function and allowing you to browse the <code>)SI</code> stack. As well as using the pop-up menu to inspect variable contents, you can edit the stopped function directly in the debug window, set and clear breakpoints, and use the <i>Step Over</i>, <i>Step In</i>, <i>Step Out</i> and <i>Go</i> buttons to control execution. And if you want to resume execution from a different line, use the spin-edit control or <i>(except under Linux)</i> just drag the execution pointer there. </UL> <h5 align=center>The APLX Workspace Explorer</H4> <p align=center> <IMG ALT="The APLX Workspace Explorer" SRC="aplx_explore.gif"> </p> <p> </p> <h5 align=center>The APLX Debug Window</H4> <p align=center> <IMG ALT="The APLX Debug Window" SRC="aplx_debug.gif"> </p> <!-- The Apple Help Viewer is very dumb.. Following a centred paragraph e.g. for pictures above, all paragraphs are centred until you explicitly say otherwise --> <p align=left> </p> <H3>Cross-platform APL GUI applications</H3> <p>Under APLX, you have access to a rich set of user-interface <A HREF="ch_030.htm">System classes</A>. This includes all of the standard objects such as windows, buttons, list boxes and edit fields, plus more advanced ones such as rich-edit controls, splitters, bevelled outlines, grids, charts, and movie players (also known as 'media' controls). In order to assist in application migration, this implementation is designed for upwards compatibility with MicroAPL's previous Macintosh APL, and is similar to the implementation in APL+Win. Features include better geometry management, improved access to commonly-used features such as file-open and color-selection dialogs, and simplified access to the Clipboard using the System object.</p> <p>Except for a few controls where the underlying operating system does not provide an equivalent capability, this functionality operates cross-platform. Your APL application written using <i>APLX for Windows</i> will run with little or no change under Mac OS X (with the 'Aqua' look and feel), or under Linux, with the appropriate X-Windows appearance.</p> <p align=center> <IMG ALT="APLX GUI Objects" SRC="aplx_qwi.gif"> </p> <p align=left></p> <hr> </td> </tr> <tr> <td width="800" valign="top" colspan="2"> <center>Topic: <A HREF="ch.htm">APLX Help</A> : <A HREF="ch_000.htm">Getting Started with APLX</A>: <A HREF="ch_000_010.htm">Introduction to APLX</A> </center> <center> [ <A HREF="ch_000_020.htm">Next</A> | <A HREF="ch.htm">Contents</A> | <A HREF="help_index.htm">Index</A> | <A HREF="http://www.microapl.co.uk/apl/index.html">APL Home</A> ]</center> <br></td> </tr> </table> <!-- %%COMMON_BODY_TAIL%% --> <p class="copyright">Copyright © 1996-2010 MicroAPL Ltd</p> <!-- %%END%% --> </body> </html>