ToC DocOverview CGDoc RelNotes FAQ Index PermutedIndex
Allegro CL version 11.0

ide classes


build-module

class, ide package

The class of a build-module of a project.


form-module

The class of form modules of projects. These modules contain information needed to create and display windows in the application.


form-pane

class, ide package

The class of the pane of a form.


ide-child-window

class, ide package

The class of the IDE child window when the IDE uses a parent window rather than an owner window. This window is the frame-child of the IDE parent window, and the parent of the various IDE tool windows. See use-ide-parent-window and main-ide-window.


ide-configuration

class, ide package

The class of the IDE configuration object, which contains a variety of options for the way that the IDE behaves. Most of the options appear on the Options Dialog, and the complete set may be viewed or modified in the Inspector by using the Tools | Inspect System Data | IDE Configuration Options menu command.

The IDE configuration object may also be accessed programmatically with the expression (cg:configuration ide:*ide-system*) (see configuration and *ide-system*.
For example, the following expression could be used to programmatically change the font used in the IDE editor:

(setf (editor-font (configuration *ide-system*))
      (make-font-ex nil "Courier New" 14))

The IDE normally saves all Common Graphics and IDE configuration options in a allegro-ide-options.cl file, so that future IDE sessions will retain option settings that were made in earlier sessions. (See save-options-on-exit.)

See also cg-configuration, which covers Common Graphics options that also apply to standalone Common Graphics applications.


ide-owner-window

class, ide package

The class of the invisible owner window of the various IDE tool windows, when the IDE uses an owner window rather than a parent window. See use-ide-parent-window and main-ide-window.


ide-parent-window

class, ide package

The class of the topmost IDE window when the IDE uses a parent window rather than an owner window.
See use-ide-parent-window.


library-module

class, ide package

The class of a library module of a project.


module

class, ide package

The superclass of all classes of class of project modules.


project

class, ide package

The class of a project object. Projects are created with define-project. Calls to define-project are typically automatically generated using the interactive project tools in the IDE and placed in .lpr files. Users may edit these files, but typically do not call define-project directly. See also Chapter 4: Projects in the IDE User Guide.


project-module

class, ide package

The class of the project-module module of a project (the modules are files or groups of files making up aspects of the project). Project modules are created as a side effect of creating a project with define-project. See also Chapter 4: Projects in the IDE User Guide.


Copyright (c) 2023, Franz Inc. Lafayette, CA., USA. All rights reserved.

ToC DocOverview CGDoc RelNotes FAQ Index PermutedIndex
Allegro CL version 11.0