Visible to Intel only — GUID: GUID-607EA516-9A1C-441E-A150-F78D46BE51CE
Special Naming Convention for Certain QuickWin and Windows* Graphics Routines
Comparing QuickWin with Windows*-Based Applications
Using Windows API Routines with QuickWin
Types of QuickWin Programs
The QuickWin User Interface
USE Statement Needed for Fortran QuickWin Applications
Creating QuickWin Windows
Using QuickWin Graphics Library Routines
Selecting Display Options
Checking the Current Graphics Mode
Setting the Graphics Mode
Setting Figure Properties
Understanding Coordinate Systems
Adding Color
Writing a Graphics Program
Displaying Graphics Output
Storing and Retrieving Images
Customizing QuickWin Applications
QuickWin Programming Precautions
Simulating Nonblocking I/O
Visible to Intel only — GUID: GUID-607EA516-9A1C-441E-A150-F78D46BE51CE
Checking the Current Graphics Mode
Call GETWINDOWCONFIG to get the child window settings.
GETWINDOWCONFIG uses the derived type, windowconfig, as a parameter:
TYPE windowconfig INTEGER(2) numxpixels ! Number of pixels on x-axis INTEGER(2) numypixels ! Number of pixels on y-axis INTEGER(2) numtextcols ! Number of text columns available INTEGER(2) numtextrows ! Number of text rows available INTEGER(2) numcolors ! Number of color indexes INTEGER(4) fontsize ! Size of default font CHARACTER(80) title ! window title INTEGER(2) bitsperpixel ! Number of bits per pixel END TYPE windowconfig
By default, a QuickWin child window is a scrollable text window 640x480 pixels, has 30 lines and 80 columns, and a font size of 8x16. Also by default, a Standard Graphics window is Full Screen. You can change the values of window properties at any time with SETWINDOWCONFIG, and retrieve the current values at any time with GETWINDOWCONFIG.
Parent topic: Using QuickWin Graphics Library Routines