Using Intel® Visual Fortran to Create and Build Windows*-Based Applications
ID
757211
Date
7/23/2021
Public
A newer version of this document is available. Customers should click here to go to the newest version.
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
Changing Status Bar and State Messages
Any string QuickWin produces can be changed by calling SETMESSAGEQQ with the appropriate message ID. Unlike other QuickWin message functions, SETMESSAGEQQ uses regular Fortran strings, not null-terminated C strings. For example, to change the PAUSED state message to I am waiting:
USE IFQWIN CALL SETMESSAGEQQ('I am waiting', QWIN$MSG_PAUSED)
This function is useful for localizing your QuickWin applications for countries with different native languages. A list of message IDs is given in SETMESSAGEQQ in the Language Reference in the Intel® Visual Fortran Compiler User and Reference Guides.
Parent topic: Customizing QuickWin Applications