Graphical Data Display Manager
Graphical Data Display Manager (GDDM) ist ein Computergrafiksystem für das System/370, das 1979 von IBM entwickelt wurde. GDDM wurde ursprünglich für den IBM-3279-Farbbildschirm und den Farbdrucker 3287 entwickelt. Der Farbbildschirm 3279 war der erste Farbbildschirm, der in Büros verwendet wurde.
GDDM wurde in den frühen 1980er Jahren erweitert, um auf allen IBM-Bildschirmen und Druckern eingesetzt werden zu können.
Ab 1986 wurde GDDM unter dem Namen IBM System/38 Business Graphics Utility (Program 5714-GP1) auch auf dem System/38 verwendbar.
Programmbeispiel Pascal
PROGRAM LINECHRT;
TYPE
%INCLUDE QATTPAS(ADMUSTNO); /* Typdeklarationen von IBM */
VAR
A, B : INTEGER; /* Arbeitsvariablen */
AX, AY : REALARR_20; /* Parameter for CHPLOT */
ATTVAL, ATTYPE, COUNT : INTEGER; /* Parameter for ASREAD */
%INCLUDE QATTPAS(ADMUSLNO); /* Proc-Deklarationen von IBM */
BEGIN
/* Initialisierung */
AX(.1.) := 1.0; AY(.1.) := 5.0; AY(.6.) := 8.0; /* Arrays init. */
AX(.2.) := 2.0; AY(.2.) := 3.0; AY(.7.) := 13.0;
AX(.3.) := 3.0; AY(.3.) := 5.0; AY(.8.) := 6.0;
AX(.4.) := 4.0; AY(.4.) := 5.0; AY(.9.) := 1.0;
AX(.5.) := 5.0; AY(.5.) := 11.0; AY(.10.) := 7.0;
FSINIT; /* Grafikumgebung initialisieren */
/* Diagramm zeichnen */
A := 2;
B := 5;
CHPLOT(A,B,AX,AY); /* Diagramm zeichnen */
ASREAD(ATTVAL,ATTYPE,COUNT); /* Diagramm anzeigen */
/* Ende */
FSTERM /* Grafikumgebung schließen */
END. /* Pascal-Programm beenden */
Literatur
- Charles Petzold: Programming the OS/2 Presentation Manager. Microsoft Press, 1989, ISBN 1-55615-170-5.
Weblinks
- Programmierhandbuch IBM (englisch)
- GDDM-Seite IBM (englisch)
- IBM-Ankündigung 3279 und 3287 (englisch)
- von GDDM unterstützte Terminals (englisch)
Content Disclaimer
Informasi ini disarikan dari Wikipedia dan disajikan kembali untuk tujuan edukasi. Konten tersedia di bawah lisensi CC BY-SA 3.0. Kami tidak bertanggung jawab atas ketidakakuratan data yang bersumber dari kontribusi publik tersebut.
- The information displayed on this website is sourced in part or in whole from Wikipedia and has been adapted for the purpose of restating it. We strive to provide accurate and relevant information, however:
- There is no guarantee of absolute accuracy. Wikipedia is an open, collaborative project that can be edited by anyone, so information is subject to change.
- It is not intended to constitute professional advice. The content displayed is for informational and educational purposes only. For important decisions (e.g., medical, legal, or financial), please consult a professional.
- Content copyright. Wikipedia is licensed under the Creative Commons Attribution-ShareAlike License (CC BY-SA). This means that content may be reused with appropriate attribution and shared under a similar license.
- Responsible use. Any risk arising from the use of information from this website is entirely the responsibility of the user.