NC Designer Function Reference Ib1500109 (Eng) C
NC Designer Function Reference Ib1500109 (Eng) C
Other product names and company names are trademarks or registered trademarks of their respective
companies.
Introduction
This manual is a guide for users of NC Designer for the Mitsubishi CNC700/70 series.
This manual describes the function groups used in NC Designer. In addition, fully understand
"Precautions for Safety" on the next page to use the Mitsubishi CNC700/70 series safely.
CAUTION
For items described as "Restrictions" or "Usable State" in this manual, the instruction
manual issued by the machine tool builder takes precedence over this manual.
Items that are not described in this manual must be interpreted as "not possible".
This manual is written on the assumption that all option functions are added. Confirm the
specifications issued by the machine tool builder before use.
Some screens and functions may differ depending on each NC system (or version), and some
functions may not be possible. Please confirm the specifications before use.
Precautions for Safety
Always read the specifications issued by the machine tool builder, this manual, related manuals and attached
documents before installation, operation, programming, maintenance or inspection to ensure correct use.
Understand this numerical controller, safety items and cautions before using the unit.
This manual ranks the safety precautions into "DANGER", "WARNING" and "CAUTION".
When the user may be subject to imminent fatalities or major injuries if handling is
DANGER mistaken.
When the user may be subject to fatalities or major injuries if handling is mistaken.
WARNING
When the user may be subject to injuries or when physical damage may occur if
CAUTION handling is mistaken.
Note that even items ranked as " CAUTION", may lead to major results depending on the situation. In any
case, important information that must always be observed is described.
DANGER
Not applicable in this manual.
WARNING
Not applicable in this manual.
CAUTION
1. Items related to product and manual
If the descriptions relating to the "restrictions" and "allowable conditions" conflict between this
manual and the machine tool builder's instruction manual‚ the latter has priority over the former.
The operations to which no reference is made in this manual should be considered
impossible.
This manual is complied on the assumption that your machine is provided with all optional
functions. Confirm the functions available for your machine before proceeding to operation by
referring to the specification issued by the machine tool builder.
In some NC system versions‚ there may be cases that different pictures appear on the screen‚
the machine operates in a different way on some function is not activated.
Contents
1. Outline................................................................................................................................................................ 1
1.1 GUI Library ................................................................................................................................................ 1
2. GDraw ................................................................................................................................................................ 3
2.1 List of GDraw Functions............................................................................................................................ 3
2.2 Outlines of GDraw Functions .................................................................................................................... 8
3. GResource....................................................................................................................................................... 94
3.1 List of GResource Functions................................................................................................................... 94
3.2 Outlines of GResource Functions ........................................................................................................... 95
4. GEvent............................................................................................................................................................ 105
4.1 List of GEvent Functions ....................................................................................................................... 105
4.2 Outline of GEvent Functions ................................................................................................................. 106
5. GCS ................................................................................................................................................................ 114
5.1 List of GCS Functions ........................................................................................................................... 114
5.2 Description of GCS Functions............................................................................................................... 131
6. GIO.................................................................................................................................................................. 413
6.1 List of GIP Functions............................................................................................................................. 413
6.2 Outline of GIO Functions....................................................................................................................... 414
7. GMMemory..................................................................................................................................................... 418
7.1 List of GMMemory Functions ................................................................................................................ 418
7.2 Outline of GMMemory Functions .......................................................................................................... 419
Appendix 1. Data Type Definitions.................................................................................................................. 426
Index................................................................................................................................................................. X - 1
1. Outline
1.1 GUI Library
1. Outline
The GUI library is a C/C++ language GUI library that gives powerful support for GUI development.
The GUI library is equipped with the functions necessary for the construction of not only event
management but also GUI elements such as window systems, an it supports simple construction of
GUIs. In addition, it is equipped with a Graphic Platform Interface (GPI), which is an arrangement for
calling up processing dependent on hardware to make porting to various platforms easy. Porting the
GUI library to other platforms is done by creating one with this GPI processing matched to the
platform.
User Application
MethodCall CallBack
Event
Event
GEvent GControl GShape
(Event/Timer)
GWin
(Screen/Frame/
Panel/Window)
GResource GDraw
OS/Driver/Hardware/Font
1
1. Outline
1.1 GUI Library
2
2. GDraw
2.1 List of GDraw Functions
2. GDraw
3
2. GDraw
2.1 List of GDraw Functions
4
2. GDraw
2.1 List of GDraw Functions
5
2. GDraw
2.1 List of GDraw Functions
6
2. GDraw
2.1 List of GDraw Functions
7
2. GDraw
2.2 Descriptions of GDraw Functions
GDBeginDraw
GDBeginDraw.c
Outline Begin drawing
Details This must be called just once when drawing on the screen for drawing basic
figures, displaying image data and the like.
8
2. GDraw
2.2 Descriptions of GDraw Functions
GDBitBlt
GDBitBlt.c
Outline Block transfer
Details Transfers the nWidth*nHeight sized area based on the specified point (nSrcX,
nSrcY) in the VRAM of the transmission source (hSrc) to the nWidth*nHeight
sized area based on another specified point (nDestX, nDestY) in the
transmission destination (hDest).
The transfer method depends on nDrawingMode.
Corresponds to physical coordinates BitBlt only, and not virtual coordinates.
9
2. GDraw
2.2 Descriptions of GDraw Functions
GDCalcBorderRect
GDCalcBorderRect.c
Outline Calculate rectangular area based on 3D border settings
Details Calculates the position of the rectangle when a 3D border is drawn within
pBounds based on the pBorder settings.
The rectangular area within the 3D border is stored in plnside.
The perimeter rectangle for the 3D border is stored in pBorderRect.
GDCloseDrawHandle
GDCloseDrawHandle.c
Outline Release drawing handle
10
2. GDraw
2.2 Descriptions of GDraw Functions
GDDefineFillPattern
GDDefineFillPattern.c
Outline Define fill pattern
11
2. GDraw
2.2 Descriptions of GDraw Functions
GDDefinePenDash
GDDefinePenDash.c
Outline Define line pattern
12
2. GDraw
2.2 Descriptions of GDraw Functions
GDDrawArc
GDDrawArc.c
Outline Draw arc
Details Draws an arc in contact with the inside of the rectangle defined with pgrRect.
The starting angle is nStartAngle, and the ending angle is nEndAngle.
Line color, line type, line thickness and raster operation are enabled as drawing
attributes.
13
2. GDraw
2.2 Descriptions of GDraw Functions
GDDrawBezier
GDDrawBezier.c
Outline Draw Bezier curve
Details Draws a Bezier curve joining the points defined with pgpPoly.
Line color, line type, line thickness and raster operation are enabled as drawing
attributes.
14
2. GDraw
2.2 Descriptions of GDraw Functions
GDDrawCaptionCursorString
GDDrawCaptionCursorString.c
Outline Draw caption character string (with cursor display)
Details pString character string is drawn with the cursor displayed according to the
pCaption settings so that it fills the pBounds rectangular area.
15
2. GDraw
2.2 Descriptions of GDraw Functions
GDDrawCaptionString
GDDrawCaptionString.c
Outline Draw caption character string
Details pString character string is drawn according to the pCaption settings so that it
fills the pBounds rectangular area.
16
2. GDraw
2.2 Descriptions of GDraw Functions
GDDrawCaptionStringResource
GDDrawCaptionStringResource.c
Outline Draw caption based on character string resources
17
2. GDraw
2.2 Descriptions of GDraw Functions
GDDrawGrf
GDDrawGrf.c
Outline Draw BMP
Details The pData image having pGHeader information is drawn in the size of
nWidth*nHeight starting at (nX,nY).
When 0 is specified for nWidth, it is displayed in the size of the image.
When 0 is specified for nHeight, it is displayed in the size of the image.
18
2. GDraw
2.2 Descriptions of GDraw Functions
GDDrawImage
GDDrawImage.c
Outline Draw image
Details Draws the GImage image in the size of nWidth*nHeight starting at (nX, nY).
GImage contains the data for any of the images that are supported in the GUI
library as standard format data, and the processing function is called according
to the type of image.
At present this is only Graphic Raster Format (GRF)
19
2. GDraw
2.2 Descriptions of GDraw Functions
GDDrawImageResource
GDDrawImageResource.c
Outline Draw resource image
Details Draws the usResourceID resource image in the size of nWidth*nHeight starting
at (nX, nY).
20
2. GDraw
2.2 Descriptions of GDraw Functions
GDDrawOval
GDDrawOval.c
Outline Draw oval
Details Draws an (oval) circle in contact with the inside of the rectangle defined with
pgrRect.
For the fill inside the shape, the fill pattern, foreground color and background
color, and for the perimeter, line color, line thickness, line type and raster
operation are enabled as drawing attributes.
21
2. GDraw
2.2 Descriptions of GDraw Functions
GDDrawOvalBorder
GDDrawOvalBorder.c
Outline Draw (oval) circular 3D border
Details Draws the 3D border in pBorder in an (oval) circle shape in the size of the
rectangle in contact with the inside of the rectangular area in pBounds. When, in
this instance, nStatus is FALSE, filling of the upper left and lower right borders is
done with the colors that have been set, but if it is TRUE, the colors for filling of
the upper left and lower right borders is reversed.
22
2. GDraw
2.2 Descriptions of GDraw Functions
GDDrawOvalBorderResource
GDDrawOvalBorderResource.c
Outline Draw (oval) circular resource 3D border
Details Draws the 3D border in usResourceID in an (oval) circle shape in the size of the
rectangle in contact with the inside of the rectangular area in pBounds. When, in
this instance, nStatus is FALSE, filling of the upper left and lower right borders is
done with the colors that have been set, but if it is TRUE, the colors for filling of
the upper left and lower right borders is reversed.
23
2. GDraw
2.2 Descriptions of GDraw Functions
GDDrawPie
GDDrawPie.c
Outline Draw sector
Details Draws a sector in contact with the inside of the rectangle defined with pgrRect.
The starting angle is nStartAngle, and the ending angle is nEndAngle.
For the fill inside the shape, the fill pattern, foreground color and background
color, and for the perimeter, line color, line thickness, line type and raster
operation are enabled as drawing attributes.
24
2. GDraw
2.2 Descriptions of GDraw Functions
GDDrawPoly
GDDrawPoly.c
Outline Draw polygon
GDDrawRect
GDDrawRect.c
Outline Draw rectangle
25
2. GDraw
2.2 Descriptions of GDraw Functions
GDDrawRectBorder
GDDrawRectBorder.c
Outline Draw rectangular 3D border
26
2. GDraw
2.2 Descriptions of GDraw Functions
GDDrawRectBorderResource
GDDrawRectBorderResource.c
Outline Draw resource rectangular 3D border
27
2. GDraw
2.2 Descriptions of GDraw Functions
GDDrawRRect
GDDrawRRect.c
Outline Draw rounded corner rectangle
Details Draws the rounded corner rectangle in the rectangular area defined in pgrRect.
The rounding of the corners is defined with nX and nY.
For the fill inside the shape, the fill pattern, foreground color and background
color, and for the perimeter, line color, line thickness, line type and raster
operation are enabled as drawing attributes.
28
2. GDraw
2.2 Descriptions of GDraw Functions
GDDrawString
GDDrawString.c
Outline Draw character string
Details Draws the pszString character string starting at the current pen position.
Pen color, background color and text mode are enabled as the drawing
attributes.
GDDrawStringResource
GDDrawStringResource.c
Outline Draw resource character string
Details Draws the usResourceID resource character string starting at the current pen
position.
Pen color, background color and text mode are enabled as the drawing
attributes.
29
2. GDraw
2.2 Descriptions of GDraw Functions
GDEndDraw
GDEndDraw.c
Outline End drawing
Details Quits screen drawing. This is called after drawing on the screen for basic figure
drawing, data display and the like.
GDFlushScreen
GDFlushScreen.c
Outline Refresh screen
Details A screen for the size of nWidth*nHeight is refreshed in the current coordinate
system with (nX, nY) as the starting point.
30
2. GDraw
2.2 Descriptions of GDraw Functions
GDGetCharHeight
GDGetCharHeight.c
Outline Get specified character height
GDGetCharWidth
GDGetCharWidth.c
Outline Get specified character width
31
2. GDraw
2.2 Descriptions of GDraw Functions
GDGetNextChar
GDGetNextChar.c
Outline Get next character
Details Searches for the next character using the specified character in the specified
character string as the starting point.
32
2. GDraw
2.2 Descriptions of GDraw Functions
GDGetPalette
GDGetPalette.c
Outline Get palette color code
Details nCount color codes starting at nStart in the color pallet are acquired in
pgcColorArray.
33
2. GDraw
2.2 Descriptions of GDraw Functions
GDGetPixel
GDGetPixel.c
Outline Get color code for specified coordinates
34
2. GDraw
2.2 Descriptions of GDraw Functions
GDGetPrevChar
GDGetPrevChar.c
Outline Get previous character
Details Searches for the previous character using the specified character in the
specified character string as the starting point.
GDGetStringLength
GDGetStringLength.c
Outline Get character length
35
2. GDraw
2.2 Descriptions of GDraw Functions
GDGetStringWidth
GDGetStringWidth.c
Outline Get specified character width
36
2. GDraw
2.2 Descriptions of GDraw Functions
GDInceptClipRect
GDInceptClipRect.c
Outline Clip the area of overlap between the specified rectangle and the current clip
area
Details Defines the portion of overlap between the pgrClip rectangular area displaying
characters or graphics on the screen and the current clip area.
The clip area up to that point is stored in pOldClip.
Either physical or virtual coordinates can be used for the clip area, and the
setting is applied to the coordinate system at the time this function is called.
GDInitPlatform
GDInitPlatform.c
Outline Carrying out initialization processing for GUI library environment
37
2. GDraw
2.2 Descriptions of GDraw Functions
GDLineTo
GDLineTo.c
Outline Draw line
Details Draws a line from the current pen position to (nX, nY).
GDMoveTo
GDMoveTo.c
Outline Move pen position
38
2. GDraw
2.2 Descriptions of GDraw Functions
GDOffsetLocalOrigin
GDOffsetLocalOrigin.c
Outline Offset to local coordinate origin
GDOpenDrawHandle
GDOpenDrawHandle.c
Outline Get drawing handle
39
2. GDraw
2.2 Descriptions of GDraw Functions
GDQueryError
GDQueryError.c
Outline Get final error code
Details The final error code within the GUI library is acquired.
GDQuitPlatform
GDQuitPlatform.c
Outline Quit processing for GUI library environment
Argument None
Details Carries out end processing for the platform environment used by the GUI
library.
40
2. GDraw
2.2 Descriptions of GDraw Functions
GDSetBackColor
GDSetBackColor.c
Outline Set background color
GDSetBrush
GDSetBrush.c
Outline Set brush
41
2. GDraw
2.2 Descriptions of GDraw Functions
GDSetClipRect
GDSetClipRect
Outline Define clipping area
Details A rectangular area for displaying characters or graphics on the screen is set as
pgrClip.
Either physical or virtual coordinates can be used for the clip area, and the
setting is applied to the coordinate system at the time this function is called.
GDSetDisplay
GDSetDisplay.c
Outline Set graphics mode
42
2. GDraw
2.2 Descriptions of GDraw Functions
GDSetDrawingMode
GDSetDrawingMode.c
Outline Set raster operations for drawing
43
2. GDraw
2.2 Descriptions of GDraw Functions
GDSetFillAttribute
GDSetFillAttribute.c
Outline Set fill attributes
44
2. GDraw
2.2 Descriptions of GDraw Functions
GDSetFillColor
GDSetFillColor.c
Outline Set colors for foreground and background
45
2. GDraw
2.2 Descriptions of GDraw Functions
GDSetFillPattern
GDSetFillPattern.c
Outline Set fill pattern
46
2. GDraw
2.2 Descriptions of GDraw Functions
GDSetFont
GDSetFont.c
Outline Set font
Details Set the hFont font as the font for character drawing.
GDSetForeColor
GDSetForeColor.c
Outline Set foreground color
47
2. GDraw
2.2 Descriptions of GDraw Functions
GDSetLocalMode
GDSetLocalMode.c
Outline Set to local (physical) coordinate system
GDSetPenColor
GDSetPenColor.c
Outline Set line and character color
48
2. GDraw
2.2 Descriptions of GDraw Functions
GDSetPenDash
GDSetPenDash.c
Outline Set line pattern
49
2. GDraw
2.2 Descriptions of GDraw Functions
GDSetPenJoin
GDSetPenJoin.c
Outline Specify joint for rectangles and polygons + D968
50
2. GDraw
2.2 Descriptions of GDraw Functions
GDSetPenSize
GDSetPenSize.c
Outline Set line width (pen size)
GDSetPixel
GDSetPixel.c
Outline Draw pixels
51
2. GDraw
2.2 Descriptions of GDraw Functions
GDSetSimpleFont
GDSetSimpleFont.c
Outline Set simple font
GDSetSimpleFontResource
GDSetSimpleFontResource.c
Outline Set resource simple font
52
2. GDraw
2.2 Descriptions of GDraw Functions
GDSetVirtualMode
GDSetVirtualMode.c
Outline Set to virtual coordinate system
GDSetVirtualRect
GDSetVirtualRect.c
Outline Set rectangular area in virtual coordinates
Details The rectangular area for the virtual coordinate system is set in pgrVirtual.
53
2. GDraw
2.2 Descriptions of GDraw Functions
GDSetVram
GDSetVram.c
Outline Set VRAM for drawing destination
GFGetFontAttribute
GFGetFontAttribute.c
Outline Get font attributes
54
2. GDraw
2.2 Descriptions of GDraw Functions
GFGetFontCount
GFGetFontCount.c
Outline Get number of fonts that can be used
Argument None
GFGetFontInformation
GFGetFontInformation.c
Outline Get font information for the specified number
55
2. GDraw
2.2 Descriptions of GDraw Functions
GFGetFontUserAttribute
GFGetFontUserAttribute.c
Outline Get user font attributes
GFGetSize
GFGetSize.c
Outline Get font size
Details Gets the current font size for the specified font handle.
56
2. GDraw
2.2 Descriptions of GDraw Functions
GFLoadFont
GFLoadFont.c
Outline Load specified font
Details Sets the specified font to a usable status and returns the handle.
GFReleaseFont
GFReleaseFont.c
Outline Release font
57
2. GDraw
2.2 Descriptions of GDraw Functions
GFSetFontAttribute
GFSetFontAttribute.c
Outline Set font attributes
GFSetFontUserAttribute
GFSetFontUserAttribute.c
Outline Set font user attributes
58
2. GDraw
2.2 Descriptions of GDraw Functions
GFSetSize
GFSetSize.c
Outline Set character size
GRDuplicateRect
GRDuplicateRect.c
Outline Copy rectangle
Details Copies the rectangular area defined in pgrSrc to the pgrDest rectangular area.
59
2. GDraw
2.2 Descriptions of GDraw Functions
GREqualRect
GREqualRect.c
Outline Confirm that rectangle areas are the same
Details Finds out if the rectangular areas defined in pgrSrc1 and pgrSrc2 are the same.
60
2. GDraw
2.2 Descriptions of GDraw Functions
GRGetRect
GRGetRect.c
Outline Get rectangle area
61
2. GDraw
2.2 Descriptions of GDraw Functions
GRInceptRect
GRInceptRect.c
Outline Confirm rectangular area overlap
Return value FALSE : pgrSrc1 and pgrSrc2 do not overlap. (pgrDest not determined)
TRUE : pgrSrc1 and pgrSrc2 overlap.
Details Finds out if the two rectangular areas in pgrSrc1 and pgrSrc2 overlap.
If they overlap, set that area in pgrDest.
62
2. GDraw
2.2 Descriptions of GDraw Functions
GRMapRect
GRMapRect.c
Outline Enlarge/reduce rectangular area
Details Converts the rectangular area defined in pgrRect in the same proportion as the
conversion of the rectangular area defined in pgrFrom to the rectangular area
defined in PgrTo.
GRMapToScreenRect
GRMapToScreenRect.c
Outline Convert rectangular area defined in pgrRect to actual screen coordinate system
Details Converts the rectangular area defined in pgrRect to the actual screen
coordinate system
63
2. GDraw
2.2 Descriptions of GDraw Functions
GRMapToVirtualRect
GRMapToVirtualRect.c
Outline Convert the rectangular area defined in pgrRect to the virtual screen coordinate
system
Details Converts the rectangular area defined in pgrRect to the virtual screen
coordinate system
GROffsetRect
GROffsetRect.c
Outline Rectangle offset processing
Details Moves the rectangle defined in pgrRect nDx and nDy in the X direction and Y
direction, respectively.
64
2. GDraw
2.2 Descriptions of GDraw Functions
GRPhysicalToVirtualRect
GRPhysicalToVirtualRect.c
Outline Convert rectangle physical coordinates to virtual coordinates
Details Converts the rectangular area defined in pgrRect from physical (local)
coordinates to virtual coordinates.
GRPointInRect
GRPointInRect.c
Outline Check if point coordinates fall within rectangle coordinates
Details Finds out if the point coordinates defined in pptPoint are within the rectangular
area defined in pgrRect.
65
2. GDraw
2.2 Descriptions of GDraw Functions
GRResizeRect
GRResizeRect.c
Outline Resize rectangle
Details nDx is subtracted from the initial X coordinate of pgrRect and nDx is added to
the final X coordinate.
Furthermore, nDy is subtracted from the initial Y coordinate and nDy is added
to the final Y coordinate.
66
2. GDraw
2.2 Descriptions of GDraw Functions
GRSetRect
GRSetRect.c
Outline Define rectangular area
Details The coordinates for the rectangle’s upper left corner are specified as (nX1,
nY1) and those for the lower right corner as (nX2, nY2).
67
2. GDraw
2.2 Descriptions of GDraw Functions
GRShiftRect
GRShiftRect.c
Outline Rectangle shift processing
Details Moves the rectangle defined in pgrRect nDx and nDy in the X direction and Y
direction, respectively.
Furthermore, the empty rectangular area created by the movement is set in
pgrRect1 and pgrRect2.
68
2. GDraw
2.2 Descriptions of GDraw Functions
GRUnionRect
GRUnionRect.c
Outline Join rectangle areas
Details The minimum sized rectangular area surrounding the specified rectangular
areas pgrSrc1 and pgrSrc2 is set in pgrDest.
GRVirtualToPhysicalRect
GRVirtualToPhysicalRect.c
Outline Convert rectangular area virtual coordinates to physical coordinates
Details Converts the rectangular area defined in pgrRect from virtual coordinates to
physical (local) coordinates.
69
2. GDraw
2.2 Descriptions of GDraw Functions
GLDuplicateLine
GLDuplicateLine.c
Outline Copy line structure
Details The line structure defined in pglSrc is copied to the line structure in pglDest.
70
2. GDraw
2.2 Descriptions of GDraw Functions
GLGetLine
GLGetLine.c
Outline Get line
Details Gets the content of the line structure pglLine in (nX1,nY1) and (nX2,nY2)
71
2. GDraw
2.2 Descriptions of GDraw Functions
GLMapLine
GLMapLine.c
Outline Enlarge/reduce line coordinates
Details Converts coordinates when the line structure in the pgrFrom rectangular area
will be projected onto to the pgrTo rectangular area.
72
2. GDraw
2.2 Descriptions of GDraw Functions
GLOffsetLine
GLOffsetLine.c
Outline Offset processing for line structure
Details Moves the line defined in pglLine nDx and nDy in the X direction and Y
direction, respectively.
GLPhysicalToVirtualLine
GLPhysicalToVirtualLine.c
Outline Convert line structure physical coordinates to virtual coordinates
Details Converts the coordinates defined in pglLine from physical (local) coordinates to
virtual coordinates.
73
2. GDraw
2.2 Descriptions of GDraw Functions
GLSetLine
GLSetLine.c
Outline Define line structure
Details Defines a line structure. The coordinates for the starting point of a line are
specified as (nX1, nY1) and those for the ending point as (nX2, nY2).
74
2. GDraw
2.2 Descriptions of GDraw Functions
GLVirtualToPhysicalLine
GLVirtualToPhysicalLine.c
Outline Convert line structure virtual coordinates to physical coordinates
Details Converts the coordinates defined in pglLine from virtual coordinates to physical
(local) coordinates.
GPTDuplicatePoint
GPTDuplicatePoint.c
Outline Copy point structure
75
2. GDraw
2.2 Descriptions of GDraw Functions
GPTGetPoint
GPTGetPoint.c
Outline Get point structure content
GPTMapPoint
GPTMapPoint.c
Outline Relative conversion of point coordinates
Details Converts coordinates when the point structure in the pgrFrom rectangular area
will be projected onto to the pgrTo rectangular area.
76
2. GDraw
2.2 Descriptions of GDraw Functions
GPTMapToScreenPoint
GPTMapToScreenPoint.c
Outline Convert point structure to screen coordinates
Details Converts the point defined in pgptPoint to the actual screen coordinate system.
GPTMapToVirtualPoint
GPTMapToVirtualPoint.c
Outline Convert point defined in pgptPoint to virtual screen coordinate system
Details Converts the point defined in pgptPoint to the virtual screen coordinate system.
77
2. GDraw
2.2 Descriptions of GDraw Functions
GPTOffsetPoint
GPTOffsetPoint.c
Outline Point structure offset processing
Details Moves the point structure pgptPoint nDx and nDy in the X direction and Y
direction, respectively.
GPTPhysicalToVirtualPoint
GPTPhysicalToVirtualPoint.c
Outline Convert point structure physical coordinates to virtual coordinates
Details Converts the point defined in pgptPoint from physical (local) coordinates to
virtual coordinates.
78
2. GDraw
2.2 Descriptions of GDraw Functions
GPTSetPoint
GPTSetPoint.c
Outline Define point structure
Details Sets the (nX, nY) coordinates in the point structure pgptPoint.
GPTVirtualToPhysicalPoint
GPTVirtualToPhysicalPoint.c
Outline Convert point structure virtual coordinates to physical coordinates
Details Converts the point specified by pgptPoint from virtual coordinates to physical
coordinates.
79
2. GDraw
2.2 Descriptions of GDraw Functions
GPGetPoly
GPGetPoly.c
Outline Get polygon settings
Details Gets the polygon structure pgpPolygon content in nNumPoints, pgptPoints and
pgrBounds.
80
2. GDraw
2.2 Descriptions of GDraw Functions
GPMapPoly
GPMapPoly.c
Outline Enlarge/reduce polygon
Details Converts coordinates when the polygon structure in the pgrFrom rectangular
area will be projected onto to the pgrTo rectangular area.
81
2. GDraw
2.2 Descriptions of GDraw Functions
GPOffsetPoly
GPOffsetPoly.c
Outline Polygon offset processing
Details Moves the polygon defined in pgpPolygon nDx and nDy in the X direction and Y
direction, respectively.
GPPhysicalToVirtualPoly
GPPhysicalToVirtualPoly.c
Outline Convert polygon physical coordinates to virtual coordinates
Details Converts the polygon structure defined in pgpPolygon from physical (local)
coordinates to virtual coordinates.
82
2. GDraw
2.2 Descriptions of GDraw Functions
GPSetPoly
GPSetPoly.c
Outline Define polygon
GPVirtualToPhysicalPoly
GPVirtualToPhysicalPoly.c
Outline Convert polygon virtual coordinates to physical coordinates
Details Converts the polygon structure defined in pgpPolygon from virtual coordinates
to local (physical) coordinates.
83
2. GDraw
2.2 Descriptions of GDraw Functions
GMSetMemorySpace
GMemory.c
Outline Register memory area information
84
2. GDraw
2.2 Descriptions of GDraw Functions
GMDeleteMemorySpace
GMemory.c
Outline Delete registered memory area
Details The registered memory area specified by ucType and ucPlane is deleted.
GPIDeleteMemorySpace is called for the internal processing.
85
2. GDraw
2.2 Descriptions of GDraw Functions
GMMemoryAlloc
GMemory.c
Outline Allocate memory area
Argument (i) unsigned char ucType : type of memory area for memory
being allocated
GMEM_SPACE_GDRAW(1) : memory area used by Gdraw
GMEM_SPACE_GPI(4) : memory area used by GPI
GMEM_SPACE_GWIN(5) : memory area used by GWin
GMEM_SPACE_GWIN_PANEL(6) : memory area used by GWin base
GMEM_SPACE_GWIN_WINDOW(7) : memory area used by GWin
window
(i) unsigned char ucPlane : memory area plane No. for memory
being allocated
(i) unsigned long ulMemorySpaceSize : size of memory being allocated
Details Allocates memory of the specified size from the specified memory area.
When allocation fails, a NULL is returned as a return value.
GPIMemoryAlloc is called for the internal processing.
86
2. GDraw
2.2 Descriptions of GDraw Functions
GMMemoryFree
GMemory.c
Outline Release memory area
Argument (i) unsigned char ucType : type of memory area for memory to
be released
GMEM_SPACE_GDRAW(1) : memory area used by Gdraw
GMEM_SPACE_GPI(4) : memory area used by GPI
GMEM_SPACE_GWIN(5) : memory area used by GWin
GMEM_SPACE_GWIN_PANEL(6) : memory area used by GWin base
GMEM_SPACE_GWIN_WINDOW(7) : memory area used by GWin
window
GMEM_SPACE_USER(8) : memory area used by user
(i) unsigned char ucPlane : memory area plane No. for
memory being released
(i) void *pvMemory : address of memory being released
87
2. GDraw
2.2 Descriptions of GDraw Functions
GDCreateVram
GDCreateVram.c
Outline Create virtual VRAM
Details Creates virtual VRAM based on the information set in the VRAM structure.
GDDeleteVram
GDDeleteVram.c
Outline Release virtual VRAM
Details Releases the virtual VRAM corresponding to the specified VRAM handle.
88
2. GDraw
2.2 Descriptions of GDraw Functions
GDFlushScreenForce
GDFlushScreenForce.c
Outline Forcible refresh screen
Details A screen for the size of nWidth*Height is forcibly refreshed in the current
coordinate system with the specified point (nX, nY) as the starting point.
89
2. GDraw
2.2 Descriptions of GDraw Functions
GDGetGradationInfo
GDGetGradationInfo.c
Outline Get gradation information
GDGetLocalOrigin
GDGetLocalOrigin.c
Outline Get local coordinate origin
90
2. GDraw
2.2 Descriptions of GDraw Functions
GDGetVram
GDGetVram.c
Outline Get system VRAM
GDRemoveDrawableRegion
GDRemoveDrawableRegion.c
Outline Delete specified rectangular area from drawable area
Details Deletes the rectangular area specified by pRect from the drawable area held by
the platform.
91
2. GDraw
2.2 Descriptions of GDraw Functions
GDSetDrawableRegion
GDSetDrawableRegion.c
Outline Set drawable area
GDSetGradationInfo
GDSetGradationInfo.c
Outline Set gradation information
92
2. GDraw
2.2 Descriptions of GDraw Functions
GDSetLocalOrigin
GDSetLocalOrigin.c
Outline Set local coordinate origin
Details Values for pgptPoint.nX in the X direction and pgptPoint.nY in the Y direction
are set for the origin for the local (physical) coordinates.
93
3. GResource
3.1 List of GResource Functions
3. GResource
94
3. GResource
3.2 Descriptions of GResource Functions
GRCLoadBorder
GRCLoadBorder.c
Outline Get specified ID 3D border resource
Details Gets the pointer to the 3D border resource structure with the specified ID.
GRCLoadFont
GRCLoadFont.c
Outline Get specified ID font resource
Details Gets the pointer to the simple font resource structure with the specified ID.
95
3. GResource
3.2 Descriptions of GResource Functions
GRCLoadImage
GRCLoadImage.c
Outline Get specified ID image resource
Details Gets the pointer to the image resource structure with the specified ID.
GRCLoadString
GRCLoadString.c
Outline Get specified ID character string resource
Details Gets the pointer to the character string resource structure with the specified ID.
96
3. GResource
3.2 Descriptions of GResource Functions
GRCLoadLocaleFont
GRCLoadLocaleFont.c
Outline Get font resource for specified locale specified ID
Return value Pointer for the specified resource for the specified locale
Details Gets the pointer to the simple font resource structure with the specified locale
specified ID.
GRCLoadLocaleString
GRCLoadLocaleString.c
Outline Get character string resource for specified locale specified ID
Return value Pointer for the specified resource for the specified locale
Details Gets the pointer to character string resource with the specified ID for the
specified locale.
97
3. GResource
3.2 Descriptions of GResource Functions
GRCLoadPalette
GRCLoadPalette.c
Outline Get specified ID palette resource
Details Gets the pointer to resource structure with the specified ID.
GRCSetLocale
GRCLocale.c
Outline Current locale setting
98
3. GResource
3.2 Descriptions of GResource Functions
GRCGetLocale
GRCLocale.c
Outline Get current locale
Argument None
GRCLoadFillPattern
GRCLoadFillPattern.c
Outline Get fill pattern for specified No.
99
3. GResource
3.2 Descriptions of GResource Functions
GRCLoadHtmlFileName
GRCLoadHtmlFileName.c
Outline Get HTML file name for specified ID
Details Gets the HTML file name with the specified ID.
GRCLoadLanguageStr
GRCLoadLanguageStr.c
Outline Get specified locale language-identifying character strings resource
Details Gets the pointer for the specified locale language-identifying chracter strings
resource.
100
3. GResource
3.2 Descriptions of GResource Functions
GRCLoadNowLanguageStr
GRCLoadLanguageStr.c
Outline Get current locale language-identifying character strings resource
Argument None
Details Gets the pointer for the current locale language-identifying chracter strings
resource.
GRCLoadLinePattern
GRCLoadLinePattern.c
Outline Get line drawing pattern for specified No.
Details Gets the pointer to the line drawing pattern for the specified No.
101
3. GResource
3.2 Descriptions of GResource Functions
GRCSetResourceHandle
GRCResourceHandle.c
Outline Set current resource handle
GRCGetResourceHandle
GRCResourceHandle.c
Outline Get current resource handle
Argument None
102
3. GResource
3.2 Descriptions of GResource Functions
GRCUnicodeToMultiByte
GRCUnicode.c
Outline UNICODE → multibyte conversion
103
3. GResource
3.2 Descriptions of GResource Functions
GRCMultiByteToUnicode
GRCUnicode.c
Outline multibyte → UNICODE conversion
104
4. GEvent
4.1 List of GEvent Functions
4. GEvent
105
4. GEvent
4.2 Description of GEvent Functions
GEInitEvent
GEvent.c
Outline Initialize event system
Argument None
GEQuitEvent
GEvent.c
Outline Process event system termination
Argument None
106
4. GEvent
4.2 Description of GEvent Functions
GECreateEventMessage
GEvent.c
Outline Define event structure
107
4. GEvent
4.2 Description of GEvent Functions
GESetEvent
GEvent.c
Outline Register event
108
4. GEvent
4.2 Description of GEvent Functions
GEGetEvent
GEvent.c
Outline Acquire event
GEClearTimerEvent
GEvent.c
Outline Clear timer event registration from even queue
Details Clears the registration of the timer event for the ID specified from the event
queue.
Specify the object where the timer event is set in pvTarget.
109
4. GEvent
4.2 Description of GEvent Functions
GESetTimer
GTimer.c
Outline Register timer event
GEKillTimer
GTimer.c
Outline Clear timer event registration
110
4. GEvent
4.2 Description of GEvent Functions
GECheckTimer
GTimer.c
Outline Confirm that timer event has been issued
Argument None
GESetSystemTime
GTimer.c
Outline Set system time
111
4. GEvent
4.2 Description of GEvent Functions
GEGetSystemTime
GTimer.c
Outline Get system time
GECompareSystemTime
GTimer.c
Outline System time comparison
112
4. GEvent
4.2 Description of GEvent Functions
GEClearTargetEvent
GEvent.c
Outline Clear specified target event registration
113
5. GCS
5.1 List of GCS Functions
5. GCS
114
5. GCS
5.1 List of GCS Functions
115
5. GCS
5.1 List of GCS Functions
116
5. GCS
5.1 List of GCS Functions
117
5. GCS
5.1 List of GCS Functions
118
5. GCS
5.1 List of GCS Functions
119
5. GCS
5.1 List of GCS Functions
120
5. GCS
5.1 List of GCS Functions
121
5. GCS
5.1 List of GCS Functions
122
5. GCS
5.1 List of GCS Functions
123
5. GCS
5.1 List of GCS Functions
124
5. GCS
5.1 List of GCS Functions
125
5. GCS
5.1 List of GCS Functions
126
5. GCS
5.1 List of GCS Functions
127
5. GCS
5.1 List of GCS Functions
128
5. GCS
5.1 List of GCS Functions
129
5. GCS
5.1 List of GCS Functions
130
5. GCS
5.1 List of GCS Functions
131
5. GCS
5.1 List of GCS Functions
132
5. GCS
5.1 List of GCS Functions
133
5. GCS
5.1 List of GCS Functions
134
5. GCS
5.2 Description of GCS Functions
GCSGetType
gwin.h
Outline Get object type
GCSGetID
gwin.h
Outline Get object ID
135
5. GCS
5.2 Description of GCS Functions
GCSGetXPosition
gwin.h
Outline Get horizontal position
GCSGetYPosition
gwin.h
Outline Get vertical position
136
5. GCS
5.2 Description of GCS Functions
GCSSetPosition
gwin.h
Outline Set position
GCSGetPosition
gwin.h
Outline Get position
137
5. GCS
5.2 Description of GCS Functions
GCSGetWidth
gwin.h
Outline Get width
GCSGetHeight
gwin.h
Outline Get height
138
5. GCS
5.2 Description of GCS Functions
GCSGetSize
gwin.h
Outline Get size
GCSSetBounds
gwin.h
Outline Set relative position within parent object
Details Sets the relative position of the object within parent object.
139
5. GCS
5.2 Description of GCS Functions
GCSGetBounds
gwin.h
Outline Get relative position within parent object
Details Gets the relative position of the object within parent object.
GCSCalcClientRect
gwin.h
Outline Get coordinate position of client area
Details Gets the client area for the object with the upper left of the object as the origin.
140
5. GCS
5.2 Description of GCS Functions
GCSGetClientRect
gwin.h
Outline Get object client area
GCSClientToScreen
gwin.h
Outline Convert client coordinates to screen coordinates
141
5. GCS
5.2 Description of GCS Functions
GCSGetStyle
gwin.h
Outline Batch style acquisition
GCSSetVisibleStatus
gwin.h
Outline Set display/non-display status
142
5. GCS
5.2 Description of GCS Functions
GCSGetVisibleStatus
gwin.h
Outline Get display/non-display status
GCSSetEnableStatus
gwin.h
Outline Set controllable or uncontrollable status
143
5. GCS
5.2 Description of GCS Functions
GCSGetEnableStatus
gwin.h
Outline Get controllable or uncontrollable status
GCSSetConsumableStatus
gwin.h
Outline Set input event consumable or input event not consumable status
Details Sets the event consumption or non-consumption when the object has
uncontrollable status.
Whether the event is consumed or not consumed is controlled by this flag for
this object.
144
5. GCS
5.2 Description of GCS Functions
GCSGetConsumableStatus
gwin.h
Outline Get input event consumable or input event not consumable status
Details Gets the input event consumable or input event not consumable status.
GCSSetCaptionStatus
gwin.h
Outline Set caption display status
145
5. GCS
5.2 Description of GCS Functions
GCSGetCaptionStatus
gwin.h
Outline Get caption display status
GCSSetFocusStatus
gwin.h
Outline Set focus status
146
5. GCS
5.2 Description of GCS Functions
GCSGetFocusStatus
gwin.h
Outline Get focus status
GCSSetPanelStatus
gwin.h
Outline Set management panel object status
147
5. GCS
5.2 Description of GCS Functions
GCSGetPanelStatus
gwin.h
Outline Get management panel object status
GCSSetStyleStatus
gwin.h
Outline Set style
148
5. GCS
5.2 Description of GCS Functions
GCSGetStyleStatus
gwin.h
Outline Get style
GCSSetParent
gwin.h
Outline Set parent object
149
5. GCS
5.2 Description of GCS Functions
GCSGetParent
gwin.h
Outline Get parent object
GCSImportProperty
gwin.h
Outline Import property settings
150
5. GCS
5.2 Description of GCS Functions
GCSExportProperty
gwin.h
Outline Export property settings
GCSCreate
gwin.h
Outline Create process
151
5. GCS
5.2 Description of GCS Functions
GCSCreateVram
gwin.h
Outline Create process (create VRAM)
GCSDelete
gwin.h
Outline Delete process
152
5. GCS
5.2 Description of GCS Functions
GCSPaint
gwin.h
Outline Drawing process
GCSOnDraw
gwin.h
Outline Client area drawing process
153
5. GCS
5.2 Description of GCS Functions
GCSOnNcDraw
gwin.h
Outline Non-client area drawing process
154
5. GCS
5.2 Description of GCS Functions
GCSAddRefreshRect
gwin.h
Outline Client area redraw area registration
155
5. GCS
5.2 Description of GCS Functions
GCSLButtonPress
gwin.h
Outline Process for pressing left mouse button
Details Carries out the processing for pressing the left mouse button for the object.
Calls the left mouse button press processing for the client area.
When the mouse event is not consumed, FALSE is returned, and when the
mouse event is consumed, TRUE is returned.
156
5. GCS
5.2 Description of GCS Functions
GCSOnLButtonPress
gwin.h
Outline Client area process for pressing left mouse button
Details Carries out the processing for pressing the left mouse button for the client area
on the object.
When the mouse event is not consumed, FALSE is returned, and when the
mouse event is consumed, TRUE is returned.
157
5. GCS
5.2 Description of GCS Functions
GCSOnNcLButtonPress
gwin.h
Outline Non-client area process for pressing left mouse button
Details Carries out the processing for pressing the left mouse button for the non-client
area on the object.
When the mouse event is not consumed, FALSE is returned, and when the
mouse event is not consumed, TRUE is returned.
158
5. GCS
5.2 Description of GCS Functions
GCSLButtonRelease
gwin.h
Outline Process for releasing left mouse button
Details Carries out the processing for releasing the left mouse button for the object.
Calls the left mouse button release processing for the client area.
GCSOnLButtonRelease
gwin.h
Outline Client area process for releasing left mouse button
Details Carries out the processing for releasing the left mouse button for the client area
on the object.
159
5. GCS
5.2 Description of GCS Functions
GCSOnNcLButtonRelease
gwin.h
Outline Non-client area process for releasing left mouse button
Details Carries out the processing for releasing the left mouse button for the non-client
area on the object.
GCSMouseMove
gwin.h
Outline Pointing device movement process
Details Carries out the processing for pointing device movement for the object. Calls
the pointing device movement processing for the client area.
160
5. GCS
5.2 Description of GCS Functions
GCSOnMouseMove
gwin.h
Outline Pointing device client area movement process
Details Carries out the processing for pointing device movement for the object for the
client area.
GCSOnNcMouseMove
gwin.h
Outline Pointing device non-client area movement process
Details Carries out the processing for pointing device movement for the object for the
non-client area.
161
5. GCS
5.2 Description of GCS Functions
GCSKeyPress
gwin.h
Outline Process for pressing key
Details Carries out the processing for pressing a key for the object.
When the key event is not consumed, FALSE is returned, and when the key
event is consumed, TRUE is returned.
162
5. GCS
5.2 Description of GCS Functions
GCSKeyRelease
gwin.h
Outline Process for releasing key
Details Carries out the processing for releasing a key for the object.
163
5. GCS
5.2 Description of GCS Functions
GCSSetFocus
gwin.h
Outline Focus setting process
Details Carries out the processing for setting the focus for the object.
GCSKillFocus
gwin.h
Outline Focus removing process
Details Carries out the processing for removing the focus for the object.
164
5. GCS
5.2 Description of GCS Functions
GCSTimer
gwin.h
Outline Timer process
GCSUser
gwin.h
Outline User process
165
5. GCS
5.2 Description of GCS Functions
GCSSetFocusInformation
gwin.h
Outline Set focus movement information
GCSGetFocusInformation
gwin.h
Outline Get focus movement information
166
5. GCS
5.2 Description of GCS Functions
GCSChar
gwin.h
Outline Character input process
Details Carries out the character input processing for the object.
When one byte size of characters is set as the character code in usCharCode,
processing is carried out for one-byte characters, and when two bytes size is
set, processing is carried out two-byte characters.
GCSClose
gwin.h
Outline Issue object close process request
Details For a related parent object, a request for termination processing for the object is
issued.
167
5. GCS
5.2 Description of GCS Functions
GCSDeleteChild
gwin.h
Outline Child object deletion process
GCSSetMemorySpace
gwin.h
Outline Set memory information
168
5. GCS
5.2 Description of GCS Functions
GCSGetMemorySpace
gwin.h
Outline Get memory information
GCSSetDrawForceStatus
gwin.h
Outline Set forced drawing status
169
5. GCS
5.2 Description of GCS Functions
GCSGetDrawForceStatus
gwin.h
Outline Get forced drawing status
GCSSetRedrawStatus
gwin.h
Outline Set redraw status
170
5. GCS
5.2 Description of GCS Functions
GCSGetRedrawStatus
gwin.h
Outline Get redraw status
GCSClearDrawStatus
gwin.h
Outline Clear drawing status
171
5. GCS
5.2 Description of GCS Functions
GCSAddDirtyRect
gwin.h
Outline Client area redraw area registration (internal processing function)
172
5. GCS
5.2 Description of GCS Functions
GCSSetPrevTimerObject
gwin.h
Outline Set previous object on timer bidirectional list
Details Sets the previous list object on the timer bidirectional list held in the object.
GCSGetPrevTimerObject
gwin.h
Outline Get previous object on timer bidirectional list
Details Gets the previous list object on the timer bidirectional list held in the object.
173
5. GCS
5.2 Description of GCS Functions
GCSSetNextTimerObject
gwin.h
Outline Set next object on timer bidirectional list
Details Sets the next list object on the timer bidirectional list held in the object.
GCSGetNextTimerObject
gwin.h
Outline Get next object on timer bidirectional list
Details Gets the next list object on the timer bidirectional list held in the object.
174
5. GCS
5.2 Description of GCS Functions
GCSSetBlinkStatus
gwin.h
Outline Set blink status
GCSGetBlinkStatus
gwin.h
Outline Get blink status
175
5. GCS
5.2 Description of GCS Functions
GCSGetParentPanel
gwin.h
Outline Get management panel object
GCSSetPrevBlinkControl
gwin.h
Outline Set previous object on blink bidirectional list
Details Sets the previous list object on the blink bidirectional list held in the object.
176
5. GCS
5.2 Description of GCS Functions
GCSGetPrevBlinkControl
gwin.h
Outline Get previous object on blink bidirectional list
Details Gets the previous list object on the blink bidirectional list held in the object.
GCSSetNextBlinkControl
gwin.h
Outline Set next object on blink bidirectional list
Details Sets the next list object on the blink bidirectional list held in the object.
177
5. GCS
5.2 Description of GCS Functions
GCSGetNextBlinkControl
gwin.h
Outline Get next object on blink bidirectional list
Details Gets the next list object on the blink bidirectional list held in the object.
GCSSetPrevScrollControl
gwin.h
Outline Set previous object on scroll bidirectional list
Details Sets the previous list object on the scroll bidirectional list held in the object.
178
5. GCS
5.2 Description of GCS Functions
GCSGetPrevScrollControl
gwin.h
Outline Get previous object on scroll bidirectional list
Details Gets the previous list object on the scroll bidirectional list held in the object.
GCSSetNextScrollControl
gwin.h
Outline Set next object on scroll bidirectional list
Details Sets the next list object on the scroll bidirectional list held in the object.
179
5. GCS
5.2 Description of GCS Functions
GCSGetNextScrollControl
gwin.h
Outline Get next object on scroll bidirectional list
Details Gets the next list object on the scroll bidirectional list held in the object.
180
5. GCS
5.2 Description of GCS Functions
GCSLoadData
gwin.h
Outline Load interpreter screen file
Details Reads the screen data from current position in interpreter screen file.
GCSSetHWDCEnvironment
gwin.h
Outline Set drawing environment
181
5. GCS
5.2 Description of GCS Functions
GCSGetScreen
gwin.h
Outline Get screen object
GCSSetGBaseObject
gwin.h
Outline Set object management structure
Details Sets the management structure for the object being managed.
182
5. GCS
5.2 Description of GCS Functions
GCSGetGBaseObject
gwin.h
Outline Get object management structure
Details Gets the management structure for the object being managed.
GCSFreeLoadData
gwin.h
Outline Release memory acquired by LoadData
183
5. GCS
5.2 Description of GCS Functions
GCSSetModalStatus
gwin.h
Outline Set modal status
GCSGetModalStatus
gwin.h
Outline Get modal window status
184
5. GCS
5.2 Description of GCS Functions
GCSGetRetValue
gwin.h
Outline Get modal window return value
Details Gets the return value returned when the modal window closes.
GCSBeginModal
gwin.h
Outline Start process for modal window
185
5. GCS
5.2 Description of GCS Functions
GCSEndModal
gwin.h
Outline End process for modal window
GCSSetTitleBarStatus
gwin.h
Outline Set title bar present/none status
186
5. GCS
5.2 Description of GCS Functions
GCSGetTitleBarStatus
gwin.h
Outline Get title bar present/none status
GCSSetCloseButtonStatus
gwin.h
Outline Set close button present/none status
187
5. GCS
5.2 Description of GCS Functions
GCSGetCloseButtonStatus
gwin.h
Outline Get close button present/none status
GCSSetEdgeStatus
gwin.h
Outline Set window frame present/none status
188
5. GCS
5.2 Description of GCS Functions
GCSGetEdgeStatus
gwin.h
Outline Get window frame present/none status
GCSAddChild
gwin.h
Outline Add child object
Details The child object specified by pChild is added to the child objects managed by
the panel.
189
5. GCS
5.2 Description of GCS Functions
GCSGetChildList
gwin.h
Outline Get child object list
GCSSetBackGroundDesign
gwin.h
Outline Set background design
190
5. GCS
5.2 Description of GCS Functions
GCSGetBackGroundDesign
gwin.h
Outline Get background design
GCSCreateChildren
gwin.h
Outline Process for creating child object
191
5. GCS
5.2 Description of GCS Functions
GCSDeleteAllChildren
gwin.h
Outline Delete all child objects
GCSGetChild
gwin.h
Outline Search child object
Return value NULL : child object with specified ID was not searched.
Other than NULL : pointer to child object with specified ID
Details Searches for a GCPanel child object having the specified ID.
192
5. GCS
5.2 Description of GCS Functions
GCSGetChildAll
gwin.h
Outline Search child object search in frame
Return value NULL : child object with specified ID was not searched.
Other than NULL : pointer to child object with specified ID
Details Searches for a GCPanel child object having the specified ID.
When the child object is a frame, the search is also performed in the GCPanel
for the page currently displayed in that frame.
193
5. GCS
5.2 Description of GCS Functions
GCSSetActiveChild
gwin.h
Outline Set active object
Details When the panel status is active, the child object receiving the focus is set.
The setting methods are the method of directly specifying the object and the
method of searching for the beginning and end of the child object list.
The following value is specified in nSearch.
GWINDOW_SEARCH_NON:
194
5. GCS
5.2 Description of GCS Functions
GCSGetActiveChild
gwin.h
Outline Get active object (only direct child object)
Details When the panel status is active, the child object receiving the focus is acquired.
GCSGetActiveControl
gwin.h
Outline Get active control (including terminal child objects)
Details When the panel status is active, the child object receiving the control is
acquired.
195
5. GCS
5.2 Description of GCS Functions
GCSSetBlinkOffInterval
gwin.h
Outline Set blinking OFF interval
GCSGetBlinkOffInterval
gwin.h
Outline Get blinking OFF interval
196
5. GCS
5.2 Description of GCS Functions
GCSSetBlinkOnInterval
gwin.h
Outline Set blinking ON interval
GCSGetBlinkOnInterval
gwin.h
Outline Get blinking ON interval
197
5. GCS
5.2 Description of GCS Functions
GCSAddBlinkControl
gwin.h
Outline Add caption blink control
Details Among the controls in the panel, the control for caption blinking is added to the
list.
GCSRemoveBlinkControl
gwin.h
Outline Delete caption blink control
Details Among the controls in the panel, the control for terminating caption blink is
deleted from the list.
198
5. GCS
5.2 Description of GCS Functions
GCSAddScrollControl
gwin.h
Outline Add caption scroll control
Details Among the controls in the panel, the control for caption scrolling is added to the
list.
GCSRemoveScrollControl
gwin.h
Outline Delete caption scroll control
Details Among the controls in the panel, the control for terminating caption scroll is
deleted from the list.
199
5. GCS
5.2 Description of GCS Functions
GCSDrawChildren
gwin.h
Outline Child object drawing process
GCSAttachPanel
gwin.h
Outline Attach panel object
200
5. GCS
5.2 Description of GCS Functions
GCSGetPanel
gwin.h
Outline Get attached GCPanel object
GCSSetSystemFontID
gwin.h
Outline Set system font resource ID
201
5. GCS
5.2 Description of GCS Functions
GCSGetSystemFontID
gwin.h
Outline Get system font resource ID
GCSSetSystemBorderID
gwin.h
Outline Set system 3D border resource ID
202
5. GCS
5.2 Description of GCS Functions
GCSGetSystemBorderID
gwin.h
Outline Get system 3D border resource ID
GCSSetSystemForeColor
gwin.h
Outline Set system foreground color
203
5. GCS
5.2 Description of GCS Functions
GCSGetSystemForeColor
gwin.h
Outline Get system foreground color
GCSSetSystemBackColor
gwin.h
Outline Set system background color
204
5. GCS
5.2 Description of GCS Functions
GCSGetSystemBackColor
gwin.h
Outline Get system background color
GCSSetSystemActiveColor
gwin.h
Outline Set system active color
205
5. GCS
5.2 Description of GCS Functions
GCSGetSystemActiveColor
gwin.h
Outline Get system active color
GCSSetSystemInactiveColor
gwin.h
Outline Set system inactive color
206
5. GCS
5.2 Description of GCS Functions
GCSGetSystemInactiveColor
gwin.h
Outline Get system inactive color
GCSGetFrame
gwin.h
Outline Get frame
207
5. GCS
5.2 Description of GCS Functions
GCSAddWindow
gwin.h
Outline Add window
GCSChangeFocus
gwin.h
Outline Change focus
208
5. GCS
5.2 Description of GCS Functions
GCSGetFocus
gwin.h
Outline Get focus
GCSDispatchMessage
gwin.h
Outline Event dispatch process
Details Calls a message procedure for each event according to the event.
209
5. GCS
5.2 Description of GCS Functions
GCSGetWDC
gwin.h
Outline Get drawing context
GCSGetHWDC
gwin.h
Outline Get drawing context
210
5. GCS
5.2 Description of GCS Functions
GCSSetPanelPlane
gwin.h
Outline Set memory area panel plane management information
Details Sets usage status for the panel plane in the memory area.
GCSGetPanelPlane
gwin.h
Outline Get memory area panel plane management information
Details Gets usage status for the panel plane in the memory area.
211
5. GCS
5.2 Description of GCS Functions
GCSSetWindowPlane
gwin.h
Outline Set memory area window plane management information
Details Sets usage status for the panel plane in the memory area.
GCSGetWindowPlane
gwin.h
Outline Get memory area window plane management information
Details Gets usage status for the window plane in the memory area.
212
5. GCS
5.2 Description of GCS Functions
GCSSetExitStatus
gwin.h
Outline Set exit information
Details Sets the exit information for applications using the GUI library.
GCSGetExitStatus
gwin.h
Outline Get exit information
Details Gets the exit information for applications using the GUI library.
213
5. GCS
5.2 Description of GCS Functions
GCSSetSystemStatus
gwin.h
Outline Set system information
GCSGetSystemStatus
gwin.h
Outline Get system information
214
5. GCS
5.2 Description of GCS Functions
GCSDoModal
gwin.h
Outline Window modal display
GCSSetPaletteStatus
gwin.h
Outline Set system palette utilization status
215
5. GCS
5.2 Description of GCS Functions
GCSGetPaletteStatus
gwin.h
Outline Get system palette utilization status
GCSSetSystemPaletteID
gwin.h
Outline Set system palette resource ID
216
5. GCS
5.2 Description of GCS Functions
GCSGetSystemPaletteID
gwin.h
Outline Get system palette resource ID
GCSSetPaletteColors
gwin.h
Outline Set number of colors in system palette
217
5. GCS
5.2 Description of GCS Functions
GCSGetPaletteColors
gwin.h
Outline Get number of colors in system palette
GCSAddTimerObject
gwin.h
Outline Add object to system timer list
Details Adds the object specified by pObject to the system timer list. When registered
into this system timer list, the object’s function is call at a constant frequency
with usTimerID==GCSCREEN_BASE_TIMER_ID.
218
5. GCS
5.2 Description of GCS Functions
GCSRemoveTimerObject
gwin.h
Outline Delete object from system timer list
Details Deletes the object specified by pObject from the system timer list.
GCSGetWindow
gwin.h
Outline Get window
219
5. GCS
5.2 Description of GCS Functions
GCSGetActiveWindow
gwin.h
Outline Get active window
GCSShowPanel
gwin.h
Outline Display panel switching process
Details Switched to the page specifying the panel currently displayed in the object.
220
5. GCS
5.2 Description of GCS Functions
GCSCreateInstance
gwin.h
Outline Create instance process
221
5. GCS
5.2 Description of GCS Functions
GCSPageLogOperation
gwin.h
Outline Switch screen according to screen history
GCSDrawFrame
gwin.h
Outline Related panel drawing process
Details Carries out drawing process for frame object related to GCScreen object.
222
5. GCS
5.2 Description of GCS Functions
GCSDrawPanel
gwin.h
Outline Related GCPanel object drawing process
Details Carries out drawing process for panel object related to GCScreen object.
223
5. GCS
5.2 Description of GCS Functions
GCSOnDrawWindow
gwin.h
Outline Window drawing process
224
5. GCS
5.2 Description of GCS Functions
GCSSetSystemPalette
gwin.h
Outline Set system palette
Details Carries out system palette setup according to the system palette settings.
When no palette is used, ends without making palette settings. When the
number of colors differs in the palette resource and system palette settings, the
lower number of colors is set.
GCSDrawBackGround
gwin.h
Outline Background drawing process
225
5. GCS
5.2 Description of GCS Functions
GCSCreateGWindow
gwin.h
Outline Create window
GCSSetScreenManager
gwin.h
Outline Set screen manager
226
5. GCS
5.2 Description of GCS Functions
GCSSetModuleID
gwin.h
Outline Set module ID
GCSClearPageLog
gwin.h
Outline Clear screen history
227
5. GCS
5.2 Description of GCS Functions
GCSAddPageLog
gwin.h
Outline Add to screen history
GCSPrevPage
gwin.h
Outline Issue request for displaying previous screen
Details Issues a request to display the screen displayed previously based on the
screen history information.
228
5. GCS
5.2 Description of GCS Functions
GCSNextPage
gwin.h
Outline Issue request for displaying next screen
Details Issues a request to display the screen displayed afterward based on the screen
history information.
GCSSetPageOffset
gwin.h
Outline Set module page offset
Details Sets the page offset for the module to which the screen belongs.
229
5. GCS
5.2 Description of GCS Functions
GCSGetPageOffset
gwin.h
Outline Get module page offset
Details Gets the page offset for the module to which the screen belongs.
GCSGetOperationLog
gwin.h
Outline Get operation log
230
5. GCS
5.2 Description of GCS Functions
GCSClearOperationLog
gwin.h
Outline Clear operation log
GCSAddOperationLog
gwin.h
Outline Add operation log (operation event)
Details Adds the operation log with the specified log content.
231
5. GCS
5.2 Description of GCS Functions
GCSAddChangePageLog
gwin.h
Outline Add operation log (screen switching)
Details Adds the operation log with the specified log content.
GCSGetPageNumber
gwin.h
Outline Get screen No.
232
5. GCS
5.2 Description of GCS Functions
GCSLoadProjectFile
gwin.h
Outline Load interpreter project file
233
5. GCS
5.2 Description of GCS Functions
GCSLoadGWindow
gwin.h
Outline Window loading process
GCSModalGWindow
gwin.h
Outline Modal window process
Details Displays the window with the number specified as a modal window.
234
5. GCS
5.2 Description of GCS Functions
GCSSetBlinkType
gwin.h
Outline Set blink type
235
5. GCS
5.2 Description of GCS Functions
GCSGetBlinkType
gwin.h
Outline Get blink type
GCSSetBlinkEnableStatus
gwin.h
Outline Set blink operation
236
5. GCS
5.2 Description of GCS Functions
GCSGetBlinkEnableStatus
gwin.h
Outline Get blink operation
GCSStartCaptionBlink
gwin.h
Outline Start blink operation
237
5. GCS
5.2 Description of GCS Functions
GCSStopCaptionBlink
gwin.h
Outline Stop blink operation
GCSSetCaptionScrollEnable
gwin.h
Outline Set scroll operation
238
5. GCS
5.2 Description of GCS Functions
GCSGetCaptionScrollEnable
gwin.h
Outline Get scroll operation
GCSStartCaptionScroll
gwin.h
Outline Start scroll operation
239
5. GCS
5.2 Description of GCS Functions
GCSStopCaptionScroll
gwin.h
Outline Stop scroll operation
GCSPauseCaptionScroll
gwin.h
Outline Pause scroll operation
240
5. GCS
5.2 Description of GCS Functions
GCSRestartCaptionScroll
gwin.h
Outline Restart scroll operation
GCSSetCaptionScrollStatus
gwin.h
Outline Set scroll operation status
241
5. GCS
5.2 Description of GCS Functions
GCSGetCaptionScrollStatus
gwin.h
Outline Get scroll operation status
GCSIsCaptionOutOfBounds
gwin.h
Outline Confirm overflowing of caption character string
Details Confirms whether or not the caption character string set in the control goes out
of the bounds of the control caption display area.
242
5. GCS
5.2 Description of GCS Functions
GCSSetCaptionScrollDelayTime
gwin.h
Outline Set scroll delay time
Details Sets the delay time for the object scroll starting time.
GCSGetCaptionScrollDelayTime
gwin.h
Outline Get scroll delay time
Details Gets the delay time for the object scroll starting time.
243
5. GCS
5.2 Description of GCS Functions
GCSSetCaptionScrollRefreshTime
gwin.h
Outline Set scroll refresh time
GCSGetCaptionScrollRefreshTime
gwin.h
Outline Get scroll refresh time
244
5. GCS
5.2 Description of GCS Functions
GCSSetCaptionScrollMovementValue
gwin.h
Outline Set scroll movement value
GCSGetCaptionScrollMovementValue
gwin.h
Outline Get scroll movement value
245
5. GCS
5.2 Description of GCS Functions
GCSSetCaptionScrollStartPosition
gwin.h
Outline Set scroll start position
GCSGetCaptionScrollStartPosition
gwin.h
Outline Get scroll start position
246
5. GCS
5.2 Description of GCS Functions
GCSSetCaptionScrollPosition
gwin.h
Outline Set total scroll movement value
Details Sets the total scroll movement value from the start position for the object.
GCSGetCaptionScrollPosition
gwin.h
Outline Get total scroll movement value
Details Gets the total scroll movement value from the start position for the object.
247
5. GCS
5.2 Description of GCS Functions
GCSUpdateScroll
gwin.h
Outline Scroll update process
GCSIsCaptionScrollFinish
gwin.h
Outline Confirm caption scroll completion
Details Confirms whether the caption character string set in the control is being
scrolled.
248
5. GCS
5.2 Description of GCS Functions
GCSCallBackMessage
gwin.h
Outline Call back message execution process
Details For a parent class managing the object, executes call-back processing
prepared for an object ID.
GCSLoadScreenFile
gwin.h
Outline Load interpreter screen file
249
5. GCS
5.2 Description of GCS Functions
GCSSetPenColor
gwin.h
Outline Set line color
GCSGetPenColor
gwin.h
Outline Get line color
250
5. GCS
5.2 Description of GCS Functions
GCSSetPenDash
gwin.h
Outline Set line type
GCSGetPenDash
gwin.h
Outline Get line type
251
5. GCS
5.2 Description of GCS Functions
GCSSetPenSize
gwin.h
Outline Set line width
GCSGetPenSize
gwin.h
Outline Get line width
252
5. GCS
5.2 Description of GCS Functions
GCSSetAngle
gwin.h
Outline Set start angle and finish angle for sector and arc
Details Sets the start angle and end angle for sector and arcs.
GCSGetAngle
gwin.h
Outline Get start angle and finish angle for sector and arc
Details Gets the start angle and end angle for sector and arcs.
253
5. GCS
5.2 Description of GCS Functions
GCSSetBrush
gwin.h
Outline Set fill brush
GCSGetBrush
gwin.h
Outline Get fill brush
254
5. GCS
5.2 Description of GCS Functions
GCSSetStartPoint
gwin.h
Outline Set line drawing starting point
GCSGetStartPoint
gwin.h
Outline Get line drawing starting point
255
5. GCS
5.2 Description of GCS Functions
GCSSetEndPoint
gwin.h
Outline Set line drawing end point
GCSGetEndPoint
gwin.h
Outline Get line drawing end point
256
5. GCS
5.2 Description of GCS Functions
GCSSetPoly
gwin.h
Outline Set polygon/continuous line
GCSGetPoly
gwin.h
Outline Get polygon/continuous line
257
5. GCS
5.2 Description of GCS Functions
GCSSetDrawAttribute
gwin.h
Outline Set drawing attributes for figure
258
5. GCS
5.2 Description of GCS Functions
GCSButtonSetAction
gwin.h
Outline Set button operations
259
5. GCS
5.2 Description of GCS Functions
GCSButtonGetAction
gwin.h
Outline Get button operations
260
5. GCS
5.2 Description of GCS Functions
GCSButtonSetDisplay
gwin.h
Outline Set button display
261
5. GCS
5.2 Description of GCS Functions
GCSButtonGetDisplay
gwin.h
Outline Get button display
GCSButtonSetBorderID
gwin.h
Outline Set 3D border resource ID
262
5. GCS
5.2 Description of GCS Functions
GCSButtonGetBorderID
gwin.h
Outline Get 3D border resource ID
GCSButtonSetOnDesign
gwin.h
Outline Set ON status design
263
5. GCS
5.2 Description of GCS Functions
GCSButtonGetOnDesign
gwin.h
Outline Get ON status design
GCSButtonSetOffDesign
gwin.h
Outline Set OFF status design
264
5. GCS
5.2 Description of GCS Functions
GCSButtonGetOffDesign
gwin.h
Outline Get OFF status design
GCSButtonSetFocusDesign
gwin.h
Outline Set FOCUS status design
265
5. GCS
5.2 Description of GCS Functions
GCSButtonGetFocusDesign
gwin.h
Outline Get FOCUS status design
GCSButtonSetDisableDesign
gwin.h
Outline Set Disable status design
266
5. GCS
5.2 Description of GCS Functions
GCSButtonGetDisableDesign
gwin.h
Outline Get Disable status design
GCSButtonSetFontID
gwin.h
Outline Set font resource ID
267
5. GCS
5.2 Description of GCS Functions
GCSButtonGetFontID
gwin.h
Outline Get font resource ID
GCSButtonSetStringID
gwin.h
Outline Set caption character string resource ID
268
5. GCS
5.2 Description of GCS Functions
GCSButtonGetStringID
gwin.h
Outline Get caption character string resource ID
GCSButtonSetCaption
gwin.h
Outline Set caption information
269
5. GCS
5.2 Description of GCS Functions
GCSButtonGetCaption
gwin.h
Outline Get caption information
GCSButtonSetFocusEffect
gwin.h
Outline Set effect during focus
270
5. GCS
5.2 Description of GCS Functions
GCSButtonGetFocusEffect
gwin.h
Outline Get effect during focus
GCSButtonSetStatus
gwin.h
Outline Set object status
271
5. GCS
5.2 Description of GCS Functions
GCSButtonGetStatus
gwin.h
Outline Get object status
GCSCheckboxSetBorderID
gwin.h
Outline Set 3D border resource ID
272
5. GCS
5.2 Description of GCS Functions
GCSCheckboxGetBorderID
gwin.h
Outline Get 3D border resource ID
GCSCheckboxSetFontID
gwin.h
Outline Set font resource ID
273
5. GCS
5.2 Description of GCS Functions
GCSCheckboxGetFontID
gwin.h
Outline Get font resource ID
GCSCheckboxSetStringID
gwin.h
Outline Set caption character string resource ID
274
5. GCS
5.2 Description of GCS Functions
GCSCheckboxGetStringID
gwin.h
Outline Get caption character string resource ID
GCSCheckboxSetCaption
gwin.h
Outline Set caption information
275
5. GCS
5.2 Description of GCS Functions
GCSCheckboxGetCaption
gwin.h
Outline Get caption information
GCSCheckboxSetFocusEffect
gwin.h
Outline Set effect during focus
276
5. GCS
5.2 Description of GCS Functions
GCSCheckboxGetFocusEffect
gwin.h
Outline Get effect during focus
277
5. GCS
5.2 Description of GCS Functions
GCSCheckboxSetStatus
gwin.h
Outline Set object status
278
5. GCS
5.2 Description of GCS Functions
GCSCheckboxGetStatus
gwin.h
Outline Get object status
GCSCheckboxSetBoxSize
gwin.h
Outline Set box size
279
5. GCS
5.2 Description of GCS Functions
GCSCheckboxGetBoxSize
gwin.h
Outline Get box size
GCSCheckboxSetBoxColor
gwin.h
Outline Set box color
280
5. GCS
5.2 Description of GCS Functions
GCSCheckboxGetBoxColor
gwin.h
Outline Get box color
GCSCheckboxSetFocusColor
gwin.h
Outline Set background color during focus
Details Sets the background color when the effect during focus is
GFOCUS_EFFECT_CHG_COLOR.
After the background color is set, the control area is registered as a redraw
area.
281
5. GCS
5.2 Description of GCS Functions
GCSCheckboxGetFocusColor
gwin.h
Outline Get background color during focus
Details Gets the background color when the effect during focus is
GFOCUS_EFFECT_CHG_COLOR.
GCSCheckboxSetDisableCaptionColor
gwin.h
Outline Set character color when disabled
282
5. GCS
5.2 Description of GCS Functions
GCSCheckboxGetDisableCaptionColor
gwin.h
Outline Get character color when disabled
GCSCheckboxSetDisableBoxColor
gwin.h
Outline Set box color when disabled
283
5. GCS
5.2 Description of GCS Functions
GCSCheckboxGetDisableBoxColor
gwin.h
Outline Get box color when disabled
GCSEditSetBorderID
gwin.h
Outline Set 3D border resource ID
284
5. GCS
5.2 Description of GCS Functions
GCSEditGetBorderID
gwin.h
Outline Get 3D border resource ID
GCSEditSetFontID
gwin.h
Outline Set font resource ID
285
5. GCS
5.2 Description of GCS Functions
GCSEditGetFontID
gwin.h
Outline Get font resource ID
GCSEditAddString
gwin.h
Outline Add character string
286
5. GCS
5.2 Description of GCS Functions
GCSEditSetString
gwin.h
Outline Set display character string
GCSEditGetString
gwin.h
Outline Get display character string
287
5. GCS
5.2 Description of GCS Functions
GCSEditSetTextColor
gwin.h
Outline Set character display color
GCSEditGetTextColor
gwin.h
Outline Get character display color
288
5. GCS
5.2 Description of GCS Functions
GCSEditSetBackColor
gwin.h
Outline Set background color
GCSEditGetBackColor
gwin.h
Outline Get background color
289
5. GCS
5.2 Description of GCS Functions
GCSEditSetBrush
gwin.h
Outline Set brush
GCSEditDeleteString
gwin.h
Outline Delete character string
290
5. GCS
5.2 Description of GCS Functions
GCSEditAddLine
gwin.h
Outline Add line
GCSEditInsertLine
gwin.h
Outline Insert line
291
5. GCS
5.2 Description of GCS Functions
GCSEditDeleteLine
gwin.h
Outline Delete line
GCSEditGetLineString
gwin.h
Outline Get line character string
292
5. GCS
5.2 Description of GCS Functions
GCSEditSetLineFeedCode
gwin.h
Outline Set line feed character string
GCSEditGetLineFeedCode
gwin.h
Outline Get line feed character string
293
5. GCS
5.2 Description of GCS Functions
GCSEditSetCursor
gwin.h
Outline Set cursor position
GCSEditGetCursor
gwin.h
Outline Get cursor position
294
5. GCS
5.2 Description of GCS Functions
GCSEditSetForeColor
gwin.h
Outline Set foreground color
GCSEditGetForeColor
gwin.h
Outline Get foreground color
295
5. GCS
5.2 Description of GCS Functions
GCSEditSetFillPattern
gwin.h
Outline Set fill pattern
GCSEditGetFillPattern
gwin.h
Outline Get fill pattern
296
5. GCS
5.2 Description of GCS Functions
GCSEditSetInsertMode
gwin.h
Outline Set insert/overwrite mode
GCSEditGetInsertMode
gwin.h
Outline Get insert/overwrite mode
297
5. GCS
5.2 Description of GCS Functions
GCSEditSetLineBrush
gwin.h
Outline Set line brush
GCSEditGetLineBrush
gwin.h
Outline Get line brush
298
5. GCS
5.2 Description of GCS Functions
GCSEditSetLineTextColor
gwin.h
Outline Set line text display color
Details Sets the text display color for the specified line.
GCSEditGetLineTextColor
gwin.h
Outline Get line text display color
Return value Color code for text display color for specified line
Details Gets the text display color for the specified line.
299
5. GCS
5.2 Description of GCS Functions
GCSEditGetLength
gwin.h
Outline Get character length
300
5. GCS
5.2 Description of GCS Functions
GCSEditFind
gwin.h
Outline Search forward
Details Searchs the character string for search from the search starting position toward
the end. Returns the position of the character string found first.
301
5. GCS
5.2 Description of GCS Functions
GCSEditReverseFind
gwin.h
Outline Search backward
Details Searchs the character string for search from the search starting position toward
the beginning. Returns the position of the character string found first.
302
5. GCS
5.2 Description of GCS Functions
GCSEditReplace
gwin.h
Outline Replace
Details Replaces a character string of the replacement size starting at the replacement
starting position.
303
5. GCS
5.2 Description of GCS Functions
GCSEditReplaceAll
gwin.h
Outline Replace all
Details Searches the character string for search starting from the character string in the
buffer and replaces it with the replacement character string.
304
5. GCS
5.2 Description of GCS Functions
GCSEditInsertString
gwin.h
Outline Insert character string
GCSEditGetLineCount
gwin.h
Outline Get number of lines
305
5. GCS
5.2 Description of GCS Functions
GCSEditGetBrush
gwin.h
Outline Get brush
GCSEditRemoveString
gwin.h
Outline Delete character string
306
5. GCS
5.2 Description of GCS Functions
GCSHtmlbrowserSetBorderID
gwin.h
Outline Set 3D border resource ID
GCSHtmlbrowserGetBorderID
gwin.h
Outline Get 3D border resource ID
307
5. GCS
5.2 Description of GCS Functions
GCSHtmlbrowserSetFontID
gwin.h
Outline Set font resource ID
GCSHtmlbrowserGetFontID
gwin.h
Outline Get font resource ID
308
5. GCS
5.2 Description of GCS Functions
GCSHtmlbrowserSetScrollBarWidth
gwin.h
Outline Set scroll bar width
GCSHtmlbrowserGetScrollBarWidth
gwin.h
Outline Get scroll bar width
309
5. GCS
5.2 Description of GCS Functions
GCSHtmlbrowserSetTextColor
gwin.h
Outline Set text display color
GCSHtmlbrowserGetTextColor
gwin.h
Outline Get text display color
310
5. GCS
5.2 Description of GCS Functions
GCSHtmlbrowserSetBackColor
gwin.h
Outline Set background color
GCSHtmlbrowserGetBackColor
gwin.h
Outline Get background color
311
5. GCS
5.2 Description of GCS Functions
GCSHtmlbrowserSetLinkColor
gwin.h
Outline Set link color
GCSHtmlbrowserGetLinkColor
gwin.h
Outline Get link color
312
5. GCS
5.2 Description of GCS Functions
GCSHtmlbrowserSetHtmlFileName
gwin.h
Outline Set HTML file name
GCSHtmlbrowserGetHtmlFileName
gwin.h
Outline Get HTML file name
313
5. GCS
5.2 Description of GCS Functions
GCSLabelSetFontID
gwin.h
Outline Set font resource ID
GCSLabelGetFontID
gwin.h
Outline Get font resource ID
314
5. GCS
5.2 Description of GCS Functions
GCSLabelSetStringID
gwin.h
Outline Set caption character string resource ID
GCSLabelGetStringID
gwin.h
Outline Get caption character string resource ID
315
5. GCS
5.2 Description of GCS Functions
GCSLabelSetCaption
gwin.h
Outline Set caption information
GCSLabelGetCaption
gwin.h
Outline Get caption information
316
5. GCS
5.2 Description of GCS Functions
GCSListSetBorderID
gwin.h
Outline Set 3D border resource ID
GCSListGetBorderID
gwin.h
Outline Get 3D border resource ID
317
5. GCS
5.2 Description of GCS Functions
GCSListSetFontID
gwin.h
Outline Set font resource ID
GCSListGetFontID
gwin.h
Outline Get font resource ID
318
5. GCS
5.2 Description of GCS Functions
GCSListSetCaption
gwin.h
Outline Set caption information
GCSListGetCaption
gwin.h
Outline Get caption information
319
5. GCS
5.2 Description of GCS Functions
GCSListSetFocusColor
gwin.h
Outline Set background color during focus
GCSListGetFocusColor
gwin.h
Outline Get background color during focus
320
5. GCS
5.2 Description of GCS Functions
GCSListSetScrollButtonColor
gwin.h
Outline Set scroll button color
GCSListGetScrollButtonColor
gwin.h
Outline Get scroll button color
321
5. GCS
5.2 Description of GCS Functions
GCSListSetScrollBarColor
gwin.h
Outline Set scroll bar color
GCSListGetScrollBarColor
gwin.h
Outline Get scroll bar color
322
5. GCS
5.2 Description of GCS Functions
GCSListSetNormalColor
gwin.h
Outline Set normal background color
GCSListGetNormalColor
gwin.h
Outline Get normal background color
323
5. GCS
5.2 Description of GCS Functions
GCSListSetDisableColor
gwin.h
Outline Set background color when disabled
GCSListGetDisableColor
gwin.h
Outline Get background color when disabled
Return value Color code for background color setting when disabled
324
5. GCS
5.2 Description of GCS Functions
GCSListSetScrollBarWidth
gwin.h
Outline Set scroll bar width
GCSListGetScrollBarWidth
gwin.h
Outline Get scroll bar width
325
5. GCS
5.2 Description of GCS Functions
GCSListSetSelectBarColor
gwin.h
Outline Set selection bar color
GCSListGetSelectBarColor
gwin.h
Outline Get selection bar color
326
5. GCS
5.2 Description of GCS Functions
GCSListSetMaxListLines
gwin.h
Outline Set maximum number of lines in list
GCSListGetMaxListLines
gwin.h
Outline Get maximum number of lines in list
327
5. GCS
5.2 Description of GCS Functions
GCSListAddString
gwin.h
Outline Add list character string
GCSListGetListString
gwin.h
Outline Get list character string
Details Gets the character string for the specified line in a list.
328
5. GCS
5.2 Description of GCS Functions
GCSListRemoveAllStrings
gwin.h
Outline Delete all list character strings
GCSListSetCurrentSelect
gwin.h
Outline Set selected line
329
5. GCS
5.2 Description of GCS Functions
GCSListGetCurrentSelect
gwin.h
Outline Get selected line
GCSListSetVisibleScrollBarStatus
gwin.h
Outline Set scroll bar display/non-display status
330
5. GCS
5.2 Description of GCS Functions
GCSListGetVisibleScrollBarStatus
gwin.h
Outline Get scroll bar display/non-display status
GCSListSetEnableScrollBarStatus
gwin.h
Outline Set scroll bar controllable or not controllable status
Details Sets the controllable or not controllable status for the scroll bar.
Controllability with mouse input or key input is determined according to this flag.
331
5. GCS
5.2 Description of GCS Functions
GCSListGetEnableScrollBarStatus
gwin.h
Outline Get scroll bar controllable or not controllable status
Details Gets the controllable or not controllable status for the scroll bar.
GCSListSetTopLine
gwin.h
Outline Set list top line
332
5. GCS
5.2 Description of GCS Functions
GCSListGetTopLine
gwin.h
Outline Get list top line
GCSListInsertString
gwin.h
Outline Insert list character string
333
5. GCS
5.2 Description of GCS Functions
GCSListGetLineCount
gwin.h
Outline Get number of lines in list
GCSListRemoveString
gwin.h
Outline Delete list character string
Details Deletes the character string for the specified line in a list.
334
5. GCS
5.2 Description of GCS Functions
GCSProgressbarSetBackGroundDesign
gwin.h
Outline Set background design
GCSProgressbarGetBackGroundDesign
gwin.h
Outline Get background design
335
5. GCS
5.2 Description of GCS Functions
GCSProgressbarSetBarDesign
gwin.h
Outline Set bar design
GCSProgressbarGetBarDesign
gwin.h
Outline Get bar design
336
5. GCS
5.2 Description of GCS Functions
GCSProgressbarSetRange
gwin.h
Outline Set progress bar range
GCSProgressbarGetRange
gwin.h
Outline Get progress bar range
337
5. GCS
5.2 Description of GCS Functions
GCSProgressbarSetDirection
gwin.h
Outline Set fill direction
338
5. GCS
5.2 Description of GCS Functions
GCSProgressbarGetDirection
gwin.h
Outline Get fill direction
GCSProgressbarGetValue
gwin.h
Outline Get current progress bar value
339
5. GCS
5.2 Description of GCS Functions
GCSProgressbarSetValue
gwin.h
Outline Set current progress bar value
GCSRadiobuttonSetBorderID
gwin.h
Outline Set 3D border resource ID
340
5. GCS
5.2 Description of GCS Functions
GCSRadiobuttonGetBorderID
gwin.h
Outline Get 3D border resource ID
GCSRadiobuttonSetFontID
gwin.h
Outline Set font resource ID
341
5. GCS
5.2 Description of GCS Functions
GCSRadiobuttonGetFontID
gwin.h
Outline Get font resource ID
GCSRadiobuttonSetStringID
gwin.h
Outline Set caption character string resource ID
342
5. GCS
5.2 Description of GCS Functions
GCSRadiobuttonGetStringID
gwin.h
Outline Get caption character string resource ID
GCSRadiobuttonSetCaption
gwin.h
Outline Set caption information
343
5. GCS
5.2 Description of GCS Functions
GCSRadiobuttonGetCaption
gwin.h
Outline Get caption information
GCSRadiobuttonSetFocusEffect
gwin.h
Outline Set effect during focus
344
5. GCS
5.2 Description of GCS Functions
GCSRadiobuttonGetFocusEffect
gwin.h
Outline Get effect during focus
GCSRadiobuttonSetStatus
gwin.h
Outline Set object status
345
5. GCS
5.2 Description of GCS Functions
GCSRadiobuttonGetStatus
gwin.h
Outline Get object status
GCSRadiobuttonSetBoxSize
gwin.h
Outline Set box size
346
5. GCS
5.2 Description of GCS Functions
GCSRadiobuttonGetBoxSize
gwin.h
Outline Get box size
GCSRadiobuttonSetBoxColor
gwin.h
Outline Set box color
347
5. GCS
5.2 Description of GCS Functions
GCSRadiobuttonGetBoxColor
gwin.h
Outline Get box color
GCSRadiobuttonSetFocusColor
gwin.h
Outline Set background color during focus
Details Sets the background color when the effect during focus is
GFOCUS_EFFECT_CHG_COLOR.
After the background color is set, the control area is registered as a redraw
area.
348
5. GCS
5.2 Description of GCS Functions
GCSRadiobuttonGetFocusColor
gwin.h
Outline Get background color during focus
Details Gets the background color when the effect during focus is
GFOCUS_EFFECT_CHG_COLOR.
GCSRadiobuttonSetDisableCaptionColor
gwin.h
Outline Set character color when disabled
349
5. GCS
5.2 Description of GCS Functions
GCSRadiobuttonGetDisableCaptionColor
gwin.h
Outline Get character color when diabled
GCSRadiobuttonSetDisableBoxColor
gwin.h
Outline Set box color when disabled
350
5. GCS
5.2 Description of GCS Functions
GCSRadiobuttonGetDisableBoxColor
gwin.h
Outline Get box color when disabled
GCSRadiobuttonSetRadioGroup
gwin.h
Outline Set radio group No.
351
5. GCS
5.2 Description of GCS Functions
GCSRadiobuttonGetRadioGroup
gwin.h
Outline Get radio group No.
GCSScrollbarexSetDisplay
gwin.h
Outline Set display type
352
5. GCS
5.2 Description of GCS Functions
GCSScrollbarexGetDisplay
gwin.h
Outline Get display type
353
5. GCS
5.2 Description of GCS Functions
GCSScrollbarexSetDirection
gwin.h
Outline Set scroll bar direction
354
5. GCS
5.2 Description of GCS Functions
GCSScrollbarexGetDirection
gwin.h
Outline Get scroll bar direction
GCSScrollbarexSetPageSize
gwin.h
Outline Set page size
355
5. GCS
5.2 Description of GCS Functions
GCSScrollbarexGetPageSize
gwin.h
Outline Get page size
GCSScrollbarexSetRange
gwin.h
Outline Set scroll bar range
356
5. GCS
5.2 Description of GCS Functions
GCSScrollbarexGetRange
gwin.h
Outline Get scroll bar range
GCSScrollbarexSetScrollArrowColor
gwin.h
Outline Set scroll arrow color
357
5. GCS
5.2 Description of GCS Functions
GCSScrollbarexGetScrollArrowColor
gwin.h
Outline Get scroll arrow color
GCSScrollbarexSetScrollPosition
gwin.h
Outline Set scroll bar current position
358
5. GCS
5.2 Description of GCS Functions
GCSScrollbarexGetScrollPosition
gwin.h
Outline Get scroll bar current position
GCSScrollbarexSetPrevBtnOnImgID
gwin.h
Outline Set design (upper) resource ID when button is ON
Details Sets the design (upper) resource ID when the button is ON.
After the design resource ID is set, the control area is registered as a redraw
area.
359
5. GCS
5.2 Description of GCS Functions
GCSScrollbarexSetPrevBtnOffImgID
gwin.h
Outline Set design (upper) resource ID when button is OFF
Details Sets the design (upper) resource ID when the button is OFF.
After the design resource ID is set, the control area is registered as a redraw
area.
GCSScrollbarexGetPrevBtnOnImgID
gwin.h
Outline Get design (upper) resource ID when button is ON
Details Gets the design (upper) resource ID setting when the button is ON.
360
5. GCS
5.2 Description of GCS Functions
GCSScrollbarexGetPrevBtnOffImgID
gwin.h
Outline Get design (upper) resource ID when button is OFF
Details Gets the design (upper) resource ID setting when the button is OFF.
GCSScrollbarexSetNextBtnOnImgID
gwin.h
Outline Set design (lower) resource ID when button is ON
Details Sets the design (lower) resource ID when the button is ON.
After the design resource ID is set, the control area is registered as a redraw
area.
361
5. GCS
5.2 Description of GCS Functions
GCSScrollbarexSetNextBtnOffImgID
gwin.h
Outline Set design (lower) resource ID when button is OFF
Details Sets the design (lower) resource ID when the button is OFF.
After the design resource ID is set, the control area is registered as a redraw
area.
GCSScrollbarexGetNextBtnOnImgID
gwin.h
Outline Get design (lower) resource ID when button is ON
Details Gets the design (lower) resource ID setting when the button is ON.
362
5. GCS
5.2 Description of GCS Functions
GCSScrollbarexGetNextBtnOffImgID
gwin.h
Outline Get design (lower) resource ID when button is OFF
Details Gets the design (lower) resource ID setting when the button is OFF.
GCSScrollbarexSetBackGroundColor
gwin.h
Outline Set background color
363
5. GCS
5.2 Description of GCS Functions
GCSScrollbarexGetBackGroundColor
gwin.h
Outline Get background color
GCSScrollbarexSetOutLineBorderID
gwin.h
Outline Set outline 3D border
364
5. GCS
5.2 Description of GCS Functions
GCSScrollbarexGetOutLineBorderID
gwin.h
Outline Get outline 3D border
GCSScrollbarexSetPinchWidth
gwin.h
Outline Set pinch width
365
5. GCS
5.2 Description of GCS Functions
GCSScrollbarexGetPinchWidth
gwin.h
Outline Get pinch width
GCSScrollbarexSetPinchColor
gwin.h
Outline Set pinch color
366
5. GCS
5.2 Description of GCS Functions
GCSScrollbarexGetPinchColor
gwin.h
Outline Get pinch color
GCSScrollbarexSetBarEnableStatus
gwin.h
Outline Set bar display/non-display
367
5. GCS
5.2 Description of GCS Functions
GCSScrollbarexGetBarEnableStatus
gwin.h
Outline Get bar display/non-display
GCSTextboxSetBorderID
gwin.h
Outline Set 3D border resource ID
368
5. GCS
5.2 Description of GCS Functions
GCSTextboxGetBorderID
gwin.h
Outline Get 3D border resource ID
GCSTextboxSetFontID
gwin.h
Outline Set font resource ID
369
5. GCS
5.2 Description of GCS Functions
GCSTextboxGetFontID
gwin.h
Outline Get font resource ID
GCSTextboxSetCaption
gwin.h
Outline Set caption information
370
5. GCS
5.2 Description of GCS Functions
GCSTextboxGetCaption
gwin.h
Outline Get caption information
GCSTextboxSetFocusEffect
gwin.h
Outline Set effect during focus
371
5. GCS
5.2 Description of GCS Functions
GCSTextboxGetFocusEffect
gwin.h
Outline Get effect during focus
GCSTextboxSetFocusColor
gwin.h
Outline Set background color during focus
372
5. GCS
5.2 Description of GCS Functions
GCSTextboxGetFocusColor
gwin.h
Outline Get background color during focus
GCSTextboxSetNormalColor
gwin.h
Outline Set normal background color
373
5. GCS
5.2 Description of GCS Functions
GCSTextboxGetNormalColor
gwin.h
Outline Get normal background color
GCSTextboxSetDisableColor
gwin.h
Outline Set background color when disabled
374
5. GCS
5.2 Description of GCS Functions
GCSTextboxGetDisableColor
gwin.h
Outline Get background color when disabled
Return value Color code for background color setting when disabled
GCSTextboxSetTextType
gwin.h
Outline Set character string type
375
5. GCS
5.2 Description of GCS Functions
GCSTextboxGetTextType
gwin.h
Outline Get character string type
GCSTextboxSetFormatID
gwin.h
Outline Set character string display format resource ID
Details Sets the character string resource ID used as the format when display in a text
box.
After the character string resource ID is set, the control area is registered as a
redraw area.
376
5. GCS
5.2 Description of GCS Functions
GCSTextboxGetFormatID
gwin.h
Outline Get character string display format resource ID
Details Gets the character string resource ID used as the display format.
GCSTextboxSetPasswordStatus
gwin.h
Outline Set password display status
Details Sets whether the password will be displayed for text boxes or not.
After the password display status is set, the control area is registered as a
redraw area.
377
5. GCS
5.2 Description of GCS Functions
GCSTextboxGetPasswordStatus
gwin.h
Outline Get password display status
Details Gets whether the test box display status is normal display status or the
password display status.
GCSTextboxSetCommaStatus
gwin.h
Outline Set comma display status
Details Sets whether commas will be displayed for text boxes or not.
After the comma display status is set, the control area is registered as a redraw
area.
378
5. GCS
5.2 Description of GCS Functions
GCSTextboxGetCommaStatus
gwin.h
Outline Get comma display status
Details Gets the setting as to whether the test box display status is normal display
status or the comma display status.
GCSTextboxSetRefuseInputNumberStatus
gwin.h
Outline Set numerical input disabled status
Details Sets whether numerical input will be rejected for text boxes or not.
379
5. GCS
5.2 Description of GCS Functions
GCSTextboxGetRefuseInputNumberStatus
gwin.h
Outline Get numerical input disabled status
Details Gets the setting as to whether numerical input will be rejected for text boxes or
not.
GCSTextboxSetRefuseInputSmallLetterStatus
gwin.h
Outline Set one-byte lower case character input disabled status
Details Sets whether one-byte lower case character input will be rejected for text boxes
or not.
380
5. GCS
5.2 Description of GCS Functions
GCSTextboxGetRefuseInputSmallLetterStatus
gwin.h
Outline Get one-byte lower case character input disabled status
Details Gets the setting as to whether one-byte lower case character input will be
rejected for text boxes or not.
GCSTextboxSetRefuseInputCapitalLetterStatus
gwin.h
Outline Set one-byte upper case character input disabled status
Details Sets whether one-byte upper case character input will be rejected for text
boxes or not.
381
5. GCS
5.2 Description of GCS Functions
GCSTextboxGetRefuseInputCapitalLetterStatus
gwin.h
Outline Get one-byte upper case character input disabled status
Details Gets whether one-byte upper case character input will be rejected for text
boxes or not.
GCSTextboxSetRefuseInputSymbolLetterStatus
gwin.h
Outline Set one-byte symbol input disabled status
Details Sets whether one-byte symbol input will be rejected for text boxes or not.
382
5. GCS
5.2 Description of GCS Functions
GCSTextboxGetRefuseInputSymbolLetterStatus
gwin.h
Outline Get one-byte symbol input disabld status
Details Gets whether one-byte symbol input will be rejected for text boxes or not.
GCSTextboxSetRefuseInputFullLetterStatus
gwin.h
Outline Set two-byte character input disabled status
Details Sets whether two-byte character input will be rejected for text boxes or not.
383
5. GCS
5.2 Description of GCS Functions
GCSTextboxGetRefuseInputFullLetterStatus
gwin.h
Outline Get two-byte character input disabled status
Details Gets setting as to whether two-byte character input will be rejected for text
boxes or not.
GCSTextboxSetCheckMaxStatus
gwin.h
Outline Set maximum value check status
Details Sets whether the maximum value will be checked with SetValue and GetValue
for text boxes.
384
5. GCS
5.2 Description of GCS Functions
GCSTextboxGetCheckMaxStatus
gwin.h
Outline Get maximum value check status
Details Gets the setting as to whether the maximum value will be checked with
SetValue and GetValue from text boxes.
GCSTextboxSetCheckMinStatus
gwin.h
Outline Set minimum value check status
Details Sets whether the maximum value will be checked with SetValue and GetValue
for text boxes.
385
5. GCS
5.2 Description of GCS Functions
GCSTextboxGetCheckMinStatus
gwin.h
Outline Get minimum value check status
Details Gets the setting as to whether the minimum value will be checked with
SetValue and GetValue from text boxes.
GCSTextboxSetMaxGValue
gwin.h
Outline Set maximum value
Details Sets the maximum value when checking the maximum value with SetValue and
GetValue for text boxes.
386
5. GCS
5.2 Description of GCS Functions
GCSTextboxGetMaxGValue
gwin.h
Outline Get maximum value
Details Gets the maximum value when checking the maximum value for SetValue and
GetValue from text boxes.
GCSTextboxSetMinGValue
gwin.h
Outline Set minimum value
Details Sets the minimum value when checking the minimum value with SetValue and
GetValue for text boxes.
387
5. GCS
5.2 Description of GCS Functions
GCSTextboxGetMinGValue
gwin.h
Outline Get minimum value
Details Gets the minimum value when checking the minimum value with SetValue and
GetValue from text boxes.
GCSTextboxSetString
gwin.h
Outline Set display character string
388
5. GCS
5.2 Description of GCS Functions
GCSTextboxGetString
gwin.h
Outline Get display character string
389
5. GCS
5.2 Description of GCS Functions
GCSTextboxSetGValue
gwin.h
Outline Set display value
390
5. GCS
5.2 Description of GCS Functions
GCSTextboxGetGValue
gwin.h
Outline Get display value
391
5. GCS
5.2 Description of GCS Functions
GCSTextboxSetStringBuffer
gwin.h
Outline Set display buffer
GCSTextboxGetStringBuffer
gwin.h
Outline Get display buffer
392
5. GCS
5.2 Description of GCS Functions
GCSTextboxSetBackGroundPattern
gwin.h
Outline Set background fill status
GCSTextboxGetBackGroundPattern
gwin.h
Outline Get background fill status
393
5. GCS
5.2 Description of GCS Functions
GCSBWLInit
gwin.h
Outline Initialization
Details Initialization
GCSBWLAdd
gwin.h
Outline Addition
Details Addition
394
5. GCS
5.2 Description of GCS Functions
GCSBWLRemove
gwin.h
Outline Deletion
Details Deletion
GCSBWLClear
gwin.h
Outline All clear
395
5. GCS
5.2 Description of GCS Functions
GCSBWLMoveFirst
gwin.h
Outline Move to first
GCSBWLMoveLast
gwin.h
Outline Move to last
396
5. GCS
5.2 Description of GCS Functions
GCSBWLGetFirst
gwin.h
Outline Get first object
GCSBWLGetLast
gwin.h
Outline Get last object
397
5. GCS
5.2 Description of GCS Functions
GCSBWLFindListItem
gwin.h
Outline Find object
GCSBWLFindFirstItem
gwin.h
Outline Move search position to first item
398
5. GCS
5.2 Description of GCS Functions
GCSBWLFindNextItem
gwin.h
Outline Acquire object at search position and move search position to next
Details Gets the object at search position and moves search position to the next.
GCSBWLFindLastItem
gwin.h
Outline Move search position to last item
399
5. GCS
5.2 Description of GCS Functions
GCSBWLFindPrevItem
gwin.h
Outline Acquire object at search position and move search position to previous
Details Gets the object at search position and moves search position to the previous.
GCSBWLCount
gwin.h
Outline Get number of list items
400
5. GCS
5.2 Description of GCS Functions
GCSBWLSetItemPosition
gwin.h
Outline Set current list search position
GCSBWLGetItemPosition
gwin.h
Outline Get current list search position
401
5. GCS
5.2 Description of GCS Functions
GCSBWLNew
gwin.h
Outline Create list object
Argument None
GCSBWLDelete
gwin.h
Outline Delete list object
402
5. GCS
5.2 Description of GCS Functions
GCSWDCGetHGDRAW
gwin.h
Outline Get drawing handle
GCSWDCOffsetOrigin
gwin.h
Outline Move position of origin
403
5. GCS
5.2 Description of GCS Functions
GCSWDCSetClipRect
gwin.h
Outline Define clipping area
GCSWDCGetClipRect
gwin.h
Outline Get clipping area
404
5. GCS
5.2 Description of GCS Functions
GCSWDCInceptClipRect
gwin.h
Outline Define clipping for the part overlapping the current clipping area
Details Defines the clipping area as the part overlapping between the current clipping
area and pClip.
GCSWDCBeginDraw
gwin.h
Outline Start drawing process
405
5. GCS
5.2 Description of GCS Functions
GCSWDCEndDraw
gwin.h
Outline End drawing process
GCSWDCNew
gwin.h
Outline Create device context
406
5. GCS
5.2 Description of GCS Functions
GCSWDCDelete
gwin.h
Outline Delete device context
GCSWDCSetOrigin
gwin.h
Outline Set position of origin
407
5. GCS
5.2 Description of GCS Functions
GCSPictureSetDisplay
gwin.h
Outline Set picture display
408
5. GCS
5.2 Description of GCS Functions
GCSPictureGetDisplay
gwin.h
Outline Get picture display
409
5. GCS
5.2 Description of GCS Functions
GCSPictureSetBorderID
gwin.h
Outline Set 3D border resource ID
GCSPictureGetBorderID
gwin.h
Outline Get 3D border resource ID
410
5. GCS
5.2 Description of GCS Functions
GCSPictureSetFontID
gwin.h
Outline Set font resource ID
GCSPictureGetFontID
gwin.h
Outline Get font resource ID
411
5. GCS
5.2 Description of GCS Functions
GCSPictureSetStringID
gwin.h
Outline Set caption character string resource ID
GCSPictureGetStringID
gwin.h
Outline Get caption character string resource ID
412
5. GCS
5.2 Description of GCS Functions
GCSPictureSetCaption
gwin.h
Outline Set caption information
GCSPictureGetCaption
gwin.h
Outline Get caption information
413
5. GCS
5.2 Description of GCS Functions
GCSPictureSetStatus
gwin.h
Outline Set object status
GCSPictureGetStatus
gwin.h
Outline Get object status
414
5. GCS
5.2 Description of GCS Functions
GCSPictureSetMaxStatus
gwin.h
Outline Set maximus picture status
GCSPictureGetMaxStatus
gwin.h
Outline Get maximus picture status
415
5. GCS
5.2 Description of GCS Functions
GCSPictureSetStatusDesign
gwin.h
Outline Set picture status design
GCSPictureGetStatusDesign
gwin.h
Outline Get picture status design
416
5. GCS
5.2 Description of GCS Functions
GCSChangeActiveFocus
gwin.h
Outline Change active focus
GCSNCPLCButtonSetAction
gncwin.h
Outline Set PLC button operations
417
5. GCS
5.2 Description of GCS Functions
GCSNCPLCButtonGetAction
gncwin.h
Outline Get PLC button operations
418
5. GCS
5.2 Description of GCS Functions
GCSNCPLCButtonSetDisplay
gncwin.h
Outline Set PLC button display
419
5. GCS
5.2 Description of GCS Functions
GCSNCPLCButtonGetDisplay
gncwin.h
Outline Get PLC button display
GCSNCPLCButtonSetBorderID
gncwin.h
Outline Set 3D border resource ID
420
5. GCS
5.2 Description of GCS Functions
GCSNCPLCButtonGetBorderID
gncwin.h
Outline Get 3D border resource ID
GCSNCPLCButtonSetOnDesign
gncwin.h
Outline Set ON status design
421
5. GCS
5.2 Description of GCS Functions
GCSNCPLCButtonGetOnDesign
gncwin.h
Outline Get ON status design
GCSNCPLCButtonSetOffDesign
gncwin.h
Outline Set OFF status design
422
5. GCS
5.2 Description of GCS Functions
GCSNCPLCButtonGetOffDesign
gncwin.h
Outline Get OFF status design
GCSNCPLCButtonSetOnOnDesign
gncwin.h
Outline Set ONON status design
423
5. GCS
5.2 Description of GCS Functions
GCSNCPLCButtonGetOnOnDesign
gncwin.h
Outline Get ONON status design
GCSNCPLCButtonSetOnOffDesign
gncwin.h
Outline Set ONOFF status design
424
5. GCS
5.2 Description of GCS Functions
GCSNCPLCButtonGetOnOffDesign
gncwin.h
Outline Get ONOFF status design
GCSNCPLCButtonSetFocusDesign
gncwin.h
Outline Set FOCUS status design
425
5. GCS
5.2 Description of GCS Functions
GCSNCPLCButtonGetFocusDesign
gncwin.h
Outline Get FOCUS status design
GCSNCPLCButtonSetDisableDesign
gncwin.h
Outline Set Disable status design
426
5. GCS
5.2 Description of GCS Functions
GCSNCPLCButtonGetDisableDesign
gncwin.h
Outline Get Disable status design
GCSNCPLCButtonSetFontID
gncwin.h
Outline Set font resource ID
427
5. GCS
5.2 Description of GCS Functions
GCSNCPLCButtonGetFontID
gncwin.h
Outline Get font resource ID
GCSNCPLCButtonSetOnStringID
gncwin.h
Outline Set ON status caption character string resource ID
428
5. GCS
5.2 Description of GCS Functions
GCSNCPLCButtonGetOnStringID
gncwin.h
Outline Get ON status caption character string resource ID
GCSNCPLCButtonSetOffStringID
gncwin.h
Outline Set OFF status caption character string resource ID
Details Sets the OFF status caption character string resource ID.
After the OFF status caption character string resource ID is set, the control area
is registered as a redraw area.
429
5. GCS
5.2 Description of GCS Functions
GCSNCPLCButtonGetOffStringID
gncwin.h
Outline Get OFF status caption character string resource ID
Details Gets the OFF status caption character string resource ID.
GCSNCPLCButtonSetOnOnStringID
gncwin.h
Outline Set ONON status caption character string resource ID
Details Sets the ONON status caption character string resource ID.
After the ONON status caption character string resource ID is set, the control
area is registered as a redraw area.
430
5. GCS
5.2 Description of GCS Functions
GCSNCPLCButtonGetOnOnStringID
gncwin.h
Outline Get ONON status caption character string resource ID
Details Gets the ONON status caption character string resource ID.
GCSNCPLCButtonSetOnOffStringID
gncwin.h
Outline Set ONOFF status caption character string resource ID
Details Sets the ONOFF status caption character string resource ID.
After the ONOFF status caption character string resource ID is set, the control
area is registered as a redraw area.
431
5. GCS
5.2 Description of GCS Functions
GCSNCPLCButtonGetOnOffStringID
gncwin.h
Outline Get ONOFF status caption character string resource ID
Details Gets the ONOFF status caption character string resource ID.
GCSNCPLCButtonSetCaption
gncwin.h
Outline Set caption information
432
5. GCS
5.2 Description of GCS Functions
GCSNCPLCButtonGetCaption
gncwin.h
Outline Get caption information
GCSNCPLCButtonSetFocusEffect
gncwin.h
Outline Set effect during focus
433
5. GCS
5.2 Description of GCS Functions
GCSNCPLCButtonGetFocusEffect
gncwin.h
Outline Get effect during focus
GCSNCPLCButtonSetStatus
gncwin.h
Outline Set object status
434
5. GCS
5.2 Description of GCS Functions
GCSNCPLCButtonGetStatus
gncwin.h
Outline Get object status
GCSNCPLCButtonSetDeviceType
gncwin.h
Outline Set PLC device operations
435
5. GCS
5.2 Description of GCS Functions
GCSNCPLCButtonGetDeviceType
gncwin.h
Outline Get PLC device operations
GCSNCPLCButtonSetDevice
gncwin.h
Outline Set PLC device
436
5. GCS
5.2 Description of GCS Functions
GCSNCPLCButtonGetDevice
gncwin.h
Outline Get PLC device
GCSNCPLCButtonSetDeviceVal
gncwin.h
Outline Set PLC device value
437
5. GCS
5.2 Description of GCS Functions
GCSNCPLCButtonGetDeviceVal
gncwin.h
Outline Get PLC device value
GCSNCPLCTextboxSetBorderID
gncwin.h
Outline Set 3D border resource ID
438
5. GCS
5.2 Description of GCS Functions
GCSNCPLCTextboxGetBorderID
gncwin.h
Outline Get 3D border resource ID
GCSNCPLCTextboxSetFontID
gncwin.h
Outline Set font resource ID
439
5. GCS
5.2 Description of GCS Functions
GCSNCPLCTextboxGetFontID
gncwin.h
Outline Get font resource ID
GCSNCPLCTextboxSetCaption
gncwin.h
Outline Set caption information
440
5. GCS
5.2 Description of GCS Functions
GCSNCPLCTextboxGetCaption
gncwin.h
Outline Get caption information
GCSNCPLCTextboxSetFocusEffect
gncwin.h
Outline Set effect during focus
441
5. GCS
5.2 Description of GCS Functions
GCSNCPLCTextboxGetFocusEffect
gncwin.h
Outline Get effect during focus
GCSNCPLCTextboxSetFocusColor
gncwin.h
Outline Set background color during focus
442
5. GCS
5.2 Description of GCS Functions
GCSNCPLCTextboxGetFocusColor
gncwin.h
Outline Get background color during focus
GCSNCPLCTextboxSetNormalColor
gncwin.h
Outline Set normal background color
443
5. GCS
5.2 Description of GCS Functions
GCSNCPLCTextboxGetNormalColor
gncwin.h
Outline Get normal background color
GCSNCPLCTextboxSetDisableColor
gncwin.h
Outline Set background color when disabled
444
5. GCS
5.2 Description of GCS Functions
GCSNCPLCTextboxGetDisableColor
gncwin.h
Outline Get background color when disabled
Return value Color code for background color setting when disabled
GCSNCPLCTextboxSetTextType
gncwin.h
Outline Set character string type
445
5. GCS
5.2 Description of GCS Functions
GCSNCPLCTextboxGetTextType
gncwin.h
Outline Get character string type
GCSNCPLCTextboxSetPasswordStatus
gncwin.h
Outline Set password display status
Details Sets whether the password will be displayed for text boxes or not.
After the password display status is set, the control area is registered as a
redraw area.
446
5. GCS
5.2 Description of GCS Functions
GCSNCPLCTextboxGetPasswordStatus
gncwin.h
Outline Get password display status
Details Gets whether the test box display status is normal display status or the
password display status.
GCSNCPLCTextboxSetCommaStatus
gncwin.h
Outline Set comma display status
Details Sets whether commas will be displayed or not for text boxes.
After the comma display status is set, the control area is registered as a redraw
area.
447
5. GCS
5.2 Description of GCS Functions
GCSNCPLCTextboxGetCommaStatus
gncwin.h
Outline Get comma display status
Details Gets the setting as to whether the test box display status is normal display
status or the comma display status.
GCSNCPLCTextboxSetCheckMaxStatus
gncwin.h
Outline Set maximum value check status
Details Sets the status of the maximum value check during SetValue/GetValue for the
PLC text box.
448
5. GCS
5.2 Description of GCS Functions
GCSNCPLCTextboxGetCheckMaxStatus
gncwin.h
Outline Get maximum value check status
Details Gets the status of the maximum value check during SetValue/GetValue from
the PLC text box.
GCSNCPLCTextboxSetCheckMinStatus
gncwin.h
Outline Set minimum value check status
Details Sets the status of the maximum value check during SetValue/GetValue for the
PLC text box.
449
5. GCS
5.2 Description of GCS Functions
GCSNCPLCTextboxGetCheckMinStatus
gncwin.h
Outline Get minimum value check status
Details Gets the status of the minimum value check during SetValue/GetValue from the
PLC text box.
GCSNCPLCTextboxSetMaxGValue
gncwin.h
Outline Set maximum value
Details Sets the value of the maximum value check during SetValue/GetValue for the
PLC text box.
450
5. GCS
5.2 Description of GCS Functions
GCSNCPLCTextboxGetMaxGValue
gncwin.h
Outline Get maximum value
Details Gets the value of the maximum value check during SetValue/GetValue from
the PLC text box.
GCSNCPLCTextboxSetMinGValue
gncwin.h
Outline Set minimum value
Details Sets the value of the minimum value check during SetValue/GetValue for the
PLC text box.
451
5. GCS
5.2 Description of GCS Functions
GCSNCPLCTextboxGetMinGValue
gncwin.h
Outline Get minimum value
Details Gets the value of the minimum value check during SetValue/GetValue from the
PLC text box.
GCSNCPLCTextboxSetString
gncwin.h
Outline Set display character string
452
5. GCS
5.2 Description of GCS Functions
GCSNCPLCTextboxGetString
gncwin.h
Outline Get display character string
453
5. GCS
5.2 Description of GCS Functions
GCSNCPLCTextboxSetGValue
gncwin.h
Outline Set display value
454
5. GCS
5.2 Description of GCS Functions
GCSNCPLCTextboxGetGValue
gncwin.h
Outline Get display value
455
5. GCS
5.2 Description of GCS Functions
GCSNCPLCTextboxSetStringBuffer
gncwin.h
Outline Set display buffer
456
5. GCS
5.2 Description of GCS Functions
GCSNCPLCTextboxGetStringBuffer
gncwin.h
Outline Get display buffer
GCSNCPLCTextboxSetBackGroundPattern
gncwin.h
Outline Set background fill status
457
5. GCS
5.2 Description of GCS Functions
GCSNCPLCTextboxGetBackGroundPattern
gncwin.h
Outline Get background fill status
GCSNCPLCTextboxSetSelectStringStartPos
gncwin.h
Outline Set selected character string start position
458
5. GCS
5.2 Description of GCS Functions
GCSNCPLCTextboxGetSelectStringStartPos
gncwin.h
Outline Get selected character string start position
GCSNCPLCTextboxSetSelectStringEndPos
gncwin.h
Outline Set selected character string end position
459
5. GCS
5.2 Description of GCS Functions
GCSNCPLCTextboxGetSelectStringEndPos
gncwin.h
Outline Get selected character string end position
GCSNCPLCTextboxSetIntegerWidth
gncwin.h
Outline Set integer part width
460
5. GCS
5.2 Description of GCS Functions
GCSNCPLCTextboxGetIntegerWidth
gncwin.h
Outline Get integer part width
GCSNCPLCTextboxSetDecimalWidth
gncwin.h
Outline Set decimal part width
461
5. GCS
5.2 Description of GCS Functions
GCSNCPLCTextboxGetDecimalWidth
gncwin.h
Outline Get decimal part width
GCSNCPLCTextboxSetScale
gncwin.h
Outline Set scale
462
5. GCS
5.2 Description of GCS Functions
GCSNCPLCTextboxGetScale
gncwin.h
Outline Get scale
GCSNCPLCTextboxSetOffset
gncwin.h
Outline Set offset
463
5. GCS
5.2 Description of GCS Functions
GCSNCPLCTextboxGetOffset
gncwin.h
Outline Get offset
GCSNCPLCTextboxSetDevice
gncwin.h
Outline Set PLC device
464
5. GCS
5.2 Description of GCS Functions
GCSNCPLCTextboxGetDevice
gncwin.h
Outline Get PLC device
GCSNCPLCTextboxSetTextSize
gncwin.h
Outline Set size
465
5. GCS
5.2 Description of GCS Functions
GCSNCPLCTextboxGetTextSize
gncwin.h
Outline Get size
GCSNCPLCTextboxSetZeroSuppressStatus
gncwin.h
Outline Set zero suppress display status
Details Sets whether the zero suppress will be displayed for text boxes or not.
After the zero suppress display status is set, the control area is registered as a
redraw area.
466
5. GCS
5.2 Description of GCS Functions
GCSNCPLCTextboxGetZeroSuppressStatus
gncwin.h
Outline Get zero suppress display status
Details Gets whether the test box display status is normal display status or the zero
suppress display status.
467
5. GCS
5.2 Description of GCS Functions
GCSNCTableSetCellForeColor
gncwin.h
Outline Set foreground color of each cell
468
5. GCS
5.2 Description of GCS Functions
GCSNCTableSetCellBackColor
gncwin.h
Outline Set background color of each cell
469
5. GCS
5.2 Description of GCS Functions
GCSNCTableSetCellString
gncwin.h
Outline Set character string of each cell
470
5. GCS
5.2 Description of GCS Functions
GCSNCTableGetCellString
gncwin.h
Outline Get character string of each cell
471
5. GCS
5.2 Description of GCS Functions
GCSNCTableSetSubCursorNum
gncwin.h
Outline Set sub-cursor position
472
5. GCS
5.2 Description of GCS Functions
GCSNCTableGetSubCursorNum
gncwin.h
Outline Get sub-cursor position
473
5. GCS
5.2 Description of GCS Functions
GCSNCTableSetCellWidth
gncwin.h
Outline Set cell width
474
5. GCS
5.2 Description of GCS Functions
GCSNCTableSetCellHight
gncwin.h
Outline Set cell height
475
5. GCS
5.2 Description of GCS Functions
GCSNCTableGetCellNumFromPoint
gncwin.h
Outline Get cell No. including pertinent coordinates
476
5. GCS
5.2 Description of GCS Functions
GCSNCTableSetLineTitleString
gncwin.h
Outline Set line title
477
5. GCS
5.2 Description of GCS Functions
GCSNCTableGetLineTitleString
gncwin.h
Outline Get line title
478
5. GCS
5.2 Description of GCS Functions
GCSNCTableSetRowTitleString
gncwin.h
Outline Set row title
479
5. GCS
5.2 Description of GCS Functions
GCSNCTableGetRowTitleString
gncwin.h
Outline Get row title
480
5. GCS
5.2 Description of GCS Functions
GCSNCTableSetLineTitleStringPosition
gncwin.h
Outline Set line title character string position
481
5. GCS
5.2 Description of GCS Functions
GCSNCTableSetRowTitleStringPosition
gncwin.h
Outline Set row title character string position
482
5. GCS
5.2 Description of GCS Functions
GCSNCTableSetCellStringPosition
gncwin.h
Outline Set area part character string position
483
5. GCS
5.2 Description of GCS Functions
GCSNCTableSetBeforeSubCursorNum
gncwin.h
Outline Set last sub-cursor No.
484
5. GCS
5.2 Description of GCS Functions
GCSNCTableGetBeforeSubCursorNum
gncwin.h
Outline Get last sub-cursor No.
485
5. GCS
5.2 Description of GCS Functions
GCSNCTableSetLineTitleForeColor
gncwin.h
Outline Set foreground color of line title
486
5. GCS
5.2 Description of GCS Functions
GCSNCTableSetLineTitleBackColor
gncwin.h
Outline Set background color of line title
487
5. GCS
5.2 Description of GCS Functions
GCSNCTableSetRowTitleForeColor
gncwin.h
Outline Set foreground color of row title
488
5. GCS
5.2 Description of GCS Functions
GCSNCTableSetRowTitleBackColor
gncwin.h
Outline Set background color of row title
489
5. GCS
5.2 Description of GCS Functions
GCSNCTableSetSubCursorForeColor
gncwin.h
Outline Set foreground color of sub-cursor
490
5. GCS
5.2 Description of GCS Functions
GCSNCTableSetSubCursorBackColor
gncwin.h
Outline Set background color of sub-cursor
491
6. GIO
6.1 List of GIP Functions
6. GIO
492
6. GIO
6.2 Description of GIO Functions
GIOOpen
GIO.c
Outline I/O open process
GIOClose
GIO.c
Outline I/O close process
493
6. GIO
6.2 Description of GIO Functions
GIORead
GIO.c
Outline I/O read
494
6. GIO
6.2 Description of GIO Functions
GIOWrite
GIO.c
Outline I/O write
495
6. GIO
6.2 Description of GIO Functions
GIOSeek
GIO.c
Outline File pointer movement
496
7. GMMemory
7.1 List of GMMemory Functions
7. GMMemory
497
7. GMMemory
7.2 Description of GMMemory Functions
GMGMemCreate
GMMemory.c
Outline Create named shared memory area
Details Shared memory with the name specified in pszName and the size specified in
ulSize is allocated.
GMGMemSelect
GMMemory.c
Outline Select memory area
Details Selects the region for the specified name from the shared memory areas
previously created.
498
7. GMMemory
7.2 Description of GMMemory Functions
GMGMemDelete
GMMemory.c
Outline Release shared memory area
GMGMemGetShort
GMMemory.c
Outline Get shared memory 16 bit integer
Details Gets the ulOffset byte data from the beginning of the specified shared memory
as a 16 bit integer value.
499
7. GMMemory
7.2 Description of GMMemory Functions
GMGMemSetShort
GMMemory.c
Outline Set shared memory 16 bit integer
Details Sets a 16 bit integer value in the ulOffset byte data from the beginning of the
specified shared memory.
GMGMemGetChar
GMMemory.c
Outline Get shared memory 8 bit integer
Details Gets the ulOffset byte data from the beginning of the specified shared memory
as an 8 bit integer value.
500
7. GMMemory
7.2 Description of GMMemory Functions
GMGMemSetChar
GMMemory.c
Outline Set shared memory 8 bit integer
Details Sets an 8 bit integer value in the ulOffset byte data from the beginning of the
specified shared memory.
GMGMemGetLong
GMMemory.c
Outline Get shared memory 32 bit integer
Details Gets the ulOffset byte data from the beginning of the specified shared memory
as a 32 bit integer value.
501
7. GMMemory
7.2 Description of GMMemory Functions
GMGMemSetLong
GMMemory.c
Outline Set shared memory 32 bit integer
Details Sets a 32 bit integer value in the ulOffset byte data from the beginning of the
specified shared memory.
GMGMemGetDouble
GMMemory.c
Outline Get shared memory 64 bit floating point value
Details Gets the ulOffset byte memory from the beginning of the specified shared
memory as a 64 bit floating point value.
502
7. GMMemory
7.2 Description of GMMemory Functions
GMGMemSetDouble
GMMemory.c
Outline Set shared memory 64 bit floating point value
Details Sets a 64 bit floating point value in the ulOffset byte data from the beginning of
the specified shared memory.
GMGMemGetString
GMMemory.c
Outline Get shared memory area
Details Gets the ulOffset byte data from the beginning of the specified shared memory
as a character string.
503
7. GMMemory
7.2 Description of GMMemory Functions
GMGMemSetString
GMMemory.c
Outline Set shared memory character string
Details Sets a character string in the ulOffset byte data from the beginning of the
specified shared memory.
504
Appendix 1. Data Type Definitions
The definitions for various structure data types are given in the following.
/*****************************************************************************
* Rectangle structure
*****************************************************************************/
typedef struct _GRect{
short nXmin; /* upper left X coordinate */
short nYmin; /* upper left Y coordinate */
short nXmax; /* lower right X coordinate */
short nYmax; /* lower right Y coordinate */
}GRect;
/*****************************************************************************
* Point structure
*****************************************************************************/
typedef struct _GPoint{
short nX; /* X coordinate */
short nY; /* Y coordinate */
}GPoint;
/*****************************************************************************
* Line structure
*****************************************************************************/
typedef struct _GLine{
short nX1; /* X coordinate for starting point */
short nY1; /* Y coordinate for starting point */
short nX2; /* X coordinate for ending point */
short nY2; /* Y coordinate for ending point */
}GLine;
505
Appendix 1. Data Type Definitions
/*****************************************************************************
* Polygon structure
*****************************************************************************/
typedef struct _GPoly{
short nNumPoints; /* number of vertices */
GPoint *pgptPoints; /* pointer to vertex data */
GRect grBounds; /* outline rectangle */
}GPoly;
/*****************************************************************************
* Brush structure
*****************************************************************************/
typedef struct _GBrush{
short nFillPattern; /* fill pattern */
GColor gcForeColor; /* fill foreground color */
GColor gcBackColor; /* fill background color */
}GBrush;
/*****************************************************************************
* Border structure
*****************************************************************************/
typedef struct _GBorder{
unsigned char fBorder; /* 3D border present or absent */
GColor gcULColor; /* upper left border color */
GColor gcLRColor; /* lower right border color */
GColor gcLineColor; /* line color */
short nSize; /* 3D border size */
}GBorder;
506
Appendix 1. Data Type Definitions
/*****************************************************************************
* Caption structure
*****************************************************************************/
typedef struct _GCaption{
GColor gcColor; /* caption character color */
unsigned char ucHPosition; /* horizontal display position */
unsigned char ucVPosition; /* vertical display position */
short nLeftMargin; /* left margin */
short nRightMargin; /* right margin */
short nTopMargin; /* top margin */
short nBottomMargin; /* bottom margin */
}GCaption;
/*****************************************************************************
* Cursor structure
*****************************************************************************/
typedef struct _GCursor{
unsigned char ucType; /* cursor type */
GColor gcColor; /* cursor color */
}GCursor;
/*****************************************************************************
* Font structure
*****************************************************************************/
typedef struct _GFontSize{
short nAscent; /* height from baseline to top line */
short nDscent; /* height from baseline to bottom line */
unsigned short usWidth; /* basic character width */
unsigned short usHeight; /* character height */
unsigned short usMaxWidth; /* maximum character width */
}GFontSize;
507
Appendix 1. Data Type Definitions
/*****************************************************************************
* Simple font structure
*****************************************************************************/
typedef struct _GSimpleFont{
GTCHAR szFontName[MAX_FONTNAME_LEN+1]; /* font name */
unsigned char ucSize; /* font size */
unsigned char gptXScale; /* horizontal scale */
unsigned char gptYScale; /* vertical scale */
unsigned char ucWeight; /* thickness */
unsigned char ucStyle; /* shape */
}GSimpleFont;
508
Appendix 1. Data Type Definitions
509
Appendix 1. Data Type Definitions
/*****************************************************************************
* Image data structure
*****************************************************************************/
typedef struct _GRFHeader{
short nType; /* image type */
short nWidth; /* width */
short nHeight; /* height */
short nBpp; /* number of bits per pixel */
long lSize; /* data size */
unsigned char *pData; /* pointer to real data */
}GRFHeader;
typedef struct _GRFHeaderDIB{
short nType; /* image type */
short nWidth; /* width */
short nHeight; /* height */
short nBpp; /* number of bits per pixel */
long lSize; /* data size */
unsigned char *pData; /* pointer to real data */
unsigned char *pPalette; /* pointer to palette data */
}GRFHeaderDIB;
/* image structure */
typedef struct _GImage{
GRFHeader *pImage; /* pointer to image data structure */
}GImage;
/*****************************************************************************
* System time structure
*****************************************************************************/
typedef struct _GSystemTime{
unsigned long ulLTime; /* lower-side 32 bits for system time */
unsigned long ulUTime; /* upper-side 32 bits for system time */
}GSystemTime;
510
Appendix 1. Data Type Definitions
/*****************************************************************************
* Drawing environment structure
*****************************************************************************/
/* GDraw structure */
typedef struct _GDraw{
GRect grLocalRect; /* physical coordinate area */
GPoint gptLocalOrigin; /* position of origin on physical coordinates */
GRect grVirtualRect; /* virtual coordinate area */
GRect grClipRect; /* clipping rectangle */
GPoint gptPenPosition; /* current position */
GColor gcPenColor; /* line color */
GPoint gptPenSize; /* line thickness */
short nPenCap; /* line end shape */
short nPenJoin; /* line contact shape */
short nPenDash; /* line type No. */
short nDashOffset; /* line pattern offset */
short nTextMode; /* text mode */
GColor gcForeColor; /* fill foreground color */
GColor gcBackColor; /* fill background color */
short nFillPattern; /* fill pattern No. */
short nDrawCondition; /* drawing condition */
short nDrawingMode; /* raster operation */
HGVRAM hSystemVram; /* display destination VRAM */
HGVRAM hDrawVram; /* drawing destination VRAM */
HGFONT hFont; /* font */
void *vgdftDraw; /* function table for drawing */
char cDashPatterns[NUM_DASH_PATS][DASH_PAT_SIZE];
/* line pattern */
char cFillPatterns[NUM_FILL_PATS][FILL_PAT_SIZE];
/* fill pattern */
GDrawParamPoly gpPoly; /* polygon drawing parameter */
GDrawParamWideLine gpwWideLine; /* wide line drawing parameter */
GDrawParamOval gpwOval; /* circle, arc and sector drawing parameter */
unsigned short usErrorCode; /* previous error code */
unsigned char ucGradationType; /* gradation type */
/* (0: up to down, 1: left to right) */
GColor gcGradationColor1; /* color1 */
GColor gcGradationColor2; /* color2 */
unsigned short usVertexPos; /* gradation vertex position (0 to 100) */
unsigned short usGradationLevel; /* gradation level (0 to 256) */
unsigned char ucColorMode; /* actual VRAM color
environment information */
GColor gcRedMask; /* direct color R value mask */
GColor gcGreenMask; /* direct color G value mask */
GColor gcBlueMask; /* direct color B value mask */
char cRedShift; / * direct color R value shift value */
char cGreenShift; /* direct color G value shift value */
char cBlueShift; /* direct color B value shift value */
GColor gcForeColorOrg; /* foreground color (original) */
GColor gcBackColorOrg; /* background color (original) */
GColor gcPenColorOrg; /* background color (original) */
511
Appendix 1. Data Type Definitions
/*****************************************************************************
* Memory management structure
*****************************************************************************/
typedef struct _GMemory{
unsigned char fUseSpace; /* shows use (0)/not use (1) status for memory space */
unsigned char cReserve[3]; /* reserved space (for 4 byte environment adjustment) */
unsigned long ulSize; /* memory space size */
struct _GMemory *pvPrevMemorySpace;
/* pointer to GMemory in previous memory space */
struct _GMemory *pvSmallMemorySpace; /* pointer to space GMemory in small */
/* memory space */
struct _GMemory *pvLargeMemorySpace; /* pointer to space GMemory in large */
/* memory space */
}GMemory;
512
Appendix 1. Data Type Definitions
/*****************************************************************************
* Control related structures
*****************************************************************************/
/* Design structure */
typedef struct GDesign{
GBrush gbBrush; /* fill brush */
unsigned short usImageID; /* image resource ID */
}GDesign;
/* Value structure */
typedef union GValue{
short nValue; /* short value */
unsigned short usValue; /* unsigned short value */
long lValue; /* long value */
unsigned long ulValue; /* unsigned long value */
float fValue; /* float value */
}GValue;
513
Appendix 1. Data Type Definitions
514
Index
Index
GC GCSButtonSetStatus................................................271
GCSButtonSetStringID.............................................268
GCSA GCSBWLAdd ...........................................................394
GCSBWLClear .........................................................395
GCSAddBlinkControl ............................................... 198 GCSBWLCount ........................................................400
GCSAddChangePageLog........................................ 232 GCSBWLDelete .......................................................402
GCSAddChild .......................................................... 189 GCSBWLFindFirstItem.............................................398
GCSAddDirtyRect.................................................... 172 GCSBWLFindLastItem .............................................399
GCSAddOperationLog............................................. 231 GCSBWLFindListItem ..............................................398
GCSAddPageLog .................................................... 228 GCSBWLFindNextItem ............................................399
GCSAddRefreshRect............................................... 155 GCSBWLFindPrevItem ............................................400
GCSAddScrollControl .............................................. 199 GCSBWLGetFirst .....................................................397
GCSAddTimerObject ............................................... 218 GCSBWLGetItemPosition ........................................401
GCSAddWindow...................................................... 208 GCSBWLGetLast .....................................................397
GCSAttachPanel ..................................................... 200 GCSBWLInit .............................................................394
GCSBWLMoveFirst ..................................................396
GCSBWLMoveLast ..................................................396
GCSB GCSBWLNew...........................................................402
GCSBWLRemove ....................................................395
GCSBeginModal ...................................................... 185 GCSBWLSetItemPosition.........................................401
GCSButtonGetAction............................................... 260
GCSButtonGetBorderID .......................................... 263
GCSButtonGetCaption ............................................ 270 GCSC
GCSButtonGetDisableDesign.................................. 267
GCSButtonGetDisplay ............................................. 262 GCSCalcClientRect..................................................140
GCSButtonGetFocusDesign.................................... 266 GCSCallBackMessage.............................................249
GCSButtonGetFocusEffect...................................... 271 GCSChangeActiveFocus .........................................417
GCSButtonGetFontID .............................................. 268 GCSChangeFocus ...................................................208
GCSButtonGetOffDesign......................................... 265 GCSChar..................................................................167
GCSButtonGetOnDesign......................................... 264 GCSCheckboxGetBorderID......................................273
GCSButtonGetStatus............................................... 272 GCSCheckboxGetBoxColor .....................................281
GCSButtonGetStringID............................................ 269 GCSCheckboxGetBoxSize.......................................280
GCSButtonSetAction ............................................... 259 GCSCheckboxGetCaption .......................................276
GCSButtonSetBorderID........................................... 262 GCSCheckboxGetDisableBoxColor .........................284
GCSButtonSetCaption............................................. 269 GCSCheckboxGetDisableCaptionColor ...................283
GCSButtonSetDisableDesign .................................. 266 GCSCheckboxGetFocusColor..................................282
GCSButtonSetDisplay ............................................. 261 GCSCheckboxGetFocusEffect .................................277
GCSButtonSetFocusDesign .................................... 265 GCSCheckboxGetFontID .........................................274
GCSButtonSetFocusEffect ...................................... 270 GCSCheckboxGetStatus..........................................279
GCSButtonSetFontID .............................................. 267 GCSCheckboxGetStringID .......................................275
GCSButtonSetOffDesign ......................................... 264 GCSCheckboxSetBorderID ......................................272
GCSButtonSetOnDesign ......................................... 263 GCSCheckboxSetBoxColor......................................280
X-1
Index
GCSF
GCSE
GCSFreeLoadData...................................................183
GCSEditAddLine ..................................................... 291
GCSEditAddString ................................................... 286
GCSEditDeleteLine.................................................. 292 GCSG
GCSEditDeleteString ............................................... 290
GCSEditFind............................................................ 301 GCSGetActiveChild..................................................195
GCSEditGetBackColor ............................................ 289 GCSGetActiveControl ..............................................195
GCSEditGetBorderID............................................... 285 GCSGetActiveWindow .............................................220
GCSEditGetBrush.................................................... 306 GCSGetAngle...........................................................253
GCSEditGetCursor .................................................. 294 GCSGetBackGroundDesign.....................................191
GCSEditGetFillPattern............................................. 296 GCSGetBlinkEnableStatus.......................................237
GCSEditGetFontID .................................................. 286 GCSGetBlinkOffInterval ...........................................196
X-2
Index
X-3
Index
X-4
Index
X-5
Index
GCSO GCSR
X-6
Index
X-7
Index
X-8
Index
GDDrawOvalBorder................................................... 22
GDDrawOvalBorderResource ................................... 23
GDDrawPie................................................................ 24
GDM
GDDrawPoly.............................................................. 25
GDMoveTo .................................................................38
GDDrawRect ............................................................. 25
GDDrawRectBorder................................................... 26
GDDrawRectBorderResource ................................... 27
GDO
GDDrawRRect ........................................................... 28
GDDrawString ........................................................... 29 GDOffsetLocalOrigin ..................................................39
GDDrawStringResource ............................................ 29 GDOpenDrawHandle .................................................39
GDE GDQ
GDF
GDR
GDFlushScreen ......................................................... 30
GDFlushScreenForce ................................................ 89 GDRemoveDrawableRegion ......................................91
GDG GDS
X-9
Index
GDSetDrawingMode.................................................. 43
GDSetFillAttribute ...................................................... 44 GEQ
GDSetFillColor........................................................... 45
GDSetFillPattern........................................................ 46 GEQuitEvent ............................................................106
GDSetFont................................................................. 47
GDSetForeColor ........................................................ 47
GDSetGradationInfo .................................................. 92
GES
GDSetLocalMode ...................................................... 48
GESetEvent..............................................................108
GDSetLocalOrigin...................................................... 93
GESetSystemTime...................................................111
GDSetPenColor ......................................................... 48
GESetTimer..............................................................110
GDSetPenDash ......................................................... 49
GDSetPenJoin ........................................................... 50
GDSetPenSize .......................................................... 51
GDSetPixel ................................................................ 51 GF
GDSetSimpleFont...................................................... 52
GFG
GDSetSimpleFontResource ...................................... 52
GDSetVirtualMode..................................................... 53
GFGetFontAttribute ....................................................54
GDSetVirtualRect ...................................................... 53
GFGetFontCount........................................................55
GDSetVram ............................................................... 54
GFGetFontInformation ...............................................55
GFGetFontUserAttribute ............................................56
GFGetSize..................................................................56
GE
GEC GFL
GEG
GFS
GEGetEvent ............................................................ 109
GEGetSystemTime.................................................. 112 GFSetFontAttribute ....................................................58
GFSetFontUserAttribute .............................................58
GFSetSize ..................................................................59
GEI
GIO
GEK
GIOClose..................................................................493
GEKillTimer ............................................................. 110
GIOOpen ..................................................................493
GIORead ..................................................................494
X - 10
Index
GLM
GMM
GLMapLine ................................................................ 72
GMMemoryAlloc.........................................................86
GMMemoryFree .........................................................87
GLO
GMSetMemorySpace .................................................84
GLP
GLPhysicalToVirtualLine ........................................... 73
GP
GPG
GLS
GPGetPoly .................................................................80
GLSetLine.................................................................. 74
GPM
GLV
GPMapPoly ................................................................81
GLVirtualToPhysicalLine ........................................... 75
GPO
GM
GPOffsetPoly..............................................................82
GMD
GPPhysicalToVirtualPoly ...........................................82
X - 11
Index
GRCSetLocale ...........................................................98
GRCSetResourceHandle .........................................102
GPS GRCUnicodeToMultiByte .........................................103
GPSetPoly ................................................................. 83
GRD
GPT GRDuplicateRect........................................................59
GPTDuplicatePoint .................................................... 75
GPTGetPoint ............................................................. 76 GRE
GPTMapPoint ............................................................ 76
GPTMapToScreenPoint............................................. 77 GREqualRect .............................................................60
GPTMapToVirtualPoint.............................................. 77
GPTOffsetPoint ......................................................... 78
GPTPhysicalToVirtualPoint ....................................... 78 GRG
GPTSetPoint.............................................................. 79
GPTVirtualToPhysicalPoint ....................................... 79 GRGetRect.................................................................61
GRI
GPV
GRInceptRect.............................................................62
GPVirtualToPhysicalPoly........................................... 83
GRM
GRMapRect................................................................63
GRMapToScreenRect ................................................63
GR GRMapToVirtualRect .................................................64
GRC
GRO
GRCGetLocale .......................................................... 99
GRCGetResourceHandle ........................................ 102
GROffsetRect .............................................................64
GRCLoadBorder ........................................................ 95
GRCLoadFillPattern................................................... 99
GRCLoadFont ........................................................... 95 GRP
GRCLoadHtmlFileName .......................................... 100
GRCLoadImage......................................................... 96 GRPhysicalToVirtualRect ...........................................65
GRCLoadLanguageStr ............................................ 100 GRPointInRect ...........................................................65
GRCLoadLinePattern .............................................. 101
GRCLoadLocaleFont ................................................. 97
GRCLoadLocaleString............................................... 97 GRR
GRCLoadNowLanguageStr ..................................... 101
GRCLoadPalette ....................................................... 98 GRResizeRect............................................................66
GRCLoadString ......................................................... 96
GRCMultiByteToUnicode......................................... 104
GRS
X - 12
Index
GRSetRect ................................................................ 67
GRShiftRect............................................................... 68
GRU
GRUnionRect ............................................................ 69
GRV
GRVirtualToPhysicalRect .......................................... 69
X - 13
Revision History
ASEAN FA Center
TAIWAN FA Center
North America FA Center (MITSUBISHI ELECTRIC AUTOMATION INC.) ASEAN FA Center (MITSUBISHI ELECTRIC ASIA PTE. LTD.)
Illinois CNC Service Center Singapore CNC Service Center
500 CORPORATE WOODS PARKWAY, VERNON HILLS, IL. 60061, U.S.A. 307 ALEXANDRA ROAD #05-01/02 MITSUBISHI ELECTRIC BUILDING SINGAPORE 159943
TEL: +1-847-478-2500 (Se FAX: +1-847-478-2650 (Se TEL: +65-6473-2308 FAX: +65-6476-7439
California CNC Service Center Thailand MITSUBISHI CNC Agent Service Center (F. A. TECH CO., LTD)
5665 PLAZA DRIVE, CYPRESS, CA. 90630, U.S.A. 898/19,20,21,22 S.V. CITY BUILDING OFFICE TOWER 1 FLOOR 12,14 RAMA III RD BANGPONGPANG,
TEL: +1-714-220-4796 FAX: +1-714-229-3818 YANNAWA, BANGKOK 10120. THAILAND
Georgia CNC Service Center TEL: +66-2-682-6522 FAX: +66-2-682-6020
2810 PREMIERE PARKWAY SUITE 400, DULUTH, GA., 30097, U.S.A. Malaysia MITSUBISHI CNC Agent Service Center
TEL: +1-678-258-4500 FAX: +1-678-258-4519 (FLEXIBLE AUTOMATION SYSTEM SDN. BHD.)
New Jersey CNC Service Center 60, JALAN USJ 10/1B 47620 UEP SUBANG JAYA SELANGOR DARUL EHSAN MALAYSIA
200 COTTONTAIL LANE SOMERSET, NJ. 08873, U.S.A. TEL: +60-3-5631-7605 FAX: +60-3-5631-7636
TEL: +1-732-560-4500 FAX: +1-732-560-4531 JOHOR MITSUBISHI CNC Agent Service Satellite
Michigan CNC Service Satellite (FLEXIBLE AUTOMATION SYSTEM SDN. BHD.)
2545 38TH STREET, ALLEGAN, MI., 49010, U.S.A. NO. 16, JALAN SHAHBANDAR 1, TAMAN UNGKU TUN AMINAH, 81300 SKUDAI, JOHOR MALAYSIA
TEL: +1-847-478-2500 FAX: +1-269-673-4092 TEL: +60-7-557-8218 FAX: +60-7-557-3404
Ohio CNC Service Satellite Indonesia MITSUBISHI CNC Agent Service Center
62 W. 500 S., ANDERSON, IN., 46013, U.S.A. (PT. AUTOTEKNINDO SUMBER MAKMUR)
TEL: +1-847-478-2608 FAX: +1-847-478-2690 WISMA NUSANTARA 14TH FLOOR JL. M.H. THAMRIN 59, JAKARTA 10350 INDONESIA
Texas CNC Service Satellite TEL: +62-21-3917-144 FAX: +62-21-3917-164
1000, NOLEN DRIVE SUITE 200, GRAPEVINE, TX. 76051, U.S.A. India MITSUBISHI CNC Agent Service Center (MESSUNG SALES & SERVICES PVT. LTD.)
TEL: +1-817-251-7468 FAX: +1-817-416-1439 B-36FF, PAVANA INDUSTRIAL PREMISES M.I.D.C., BHOASRI PUNE 411026, INDIA
Canada CNC Service Center TEL: +91-20-2711-9484 FAX: +91-20-2712-8115
4299 14TH AVENUE MARKHAM, ON. L3R OJ2, CANADA BANGALORE MITSUBISHI CNC Agent Service Satellite
TEL: +1-905-475-7728 FAX: +1-905-475-7935 (MESSUNG SALES & SERVICES PVT. LTD.)
Mexico CNC Service Center S 615, 6TH FLOOR, MANIPAL CENTER, BANGALORE 560001, INDIA
MARIANO ESCOBEDO 69 TLALNEPANTLA, 54030 EDO. DE MEXICO TEL: +91-80-509-2119 FAX: +91-80-532-0480
TEL: +52-55-9171-7662 FAX: +52-55-9171-7698 Delhi MITSUBISHI CNC Agent Parts Center (MESSUNG SALES & SERVICES PVT. LTD.)
Monterrey CNC Service Satellite 1197, SECTOR 15 PART-2, OFF DELHI-JAIPUR HIGHWAY BEHIND 32ND MILESTONE GURGAON
ARGENTINA 3900, FRACC. LAS TORRES, MONTERREY, N.L., 64720, MEXICO 122001, INDIA
TEL: +52-81-8365-4171 FAX: +52-81-8365-4171 TEL: +91-98-1024-8895 FAX:
Brazil MITSUBISHI CNC Agent Service Center Philippines MITSUBISHI CNC Agent Service Center
(AUTOMOTION IND. COM. IMP. E EXP. LTDA.) (FLEXIBLE AUTOMATION SYSTEM CORPORATION)
ACESSO JOSE SARTORELLI, KM 2.1 18550-000 BOITUVA – SP, BRAZIL UNIT No.411, ALABAMG CORPORATE CENTER KM 25. WEST SERVICE ROAD SOUTH SUPERHIGHWAY,
TEL: +55-15-3363-9900 FAX: +55-15-3363-9911 ALABAMG MUNTINLUPA METRO MANILA, PHILIPPINES 1771
TEL: +63-2-807-2416 FAX: +63-2-807-2417
European FA Center (MITSUBISHI ELECTRIC EUROPE B.V.) Vietnam MITSUBISHI CNC Agent Service Center (SA GIANG TECHNO CO., LTD)
Germany CNC Service Center 47-49 HOANG SA ST. DAKAO WARD, DIST.1 HO CHI MINH CITY, VIETNAM
GOTHAER STRASSE 8, 40880 RATINGEN, GERMANY TEL: +84-8-910-4763 FAX: +84-8-910-2593
TEL: +49-2102-486-0 FAX:+49-2102486-591
South Germany CNC Service Center China FA Center (MITSUBISHI ELECTRIC AUTOMATION (SHANGHAI) LTD.)
KURZE STRASSE. 40, 70794 FILDERSTADT-BONLANDEN, GERMANY China CNC Service Center
TEL: +49-711-3270-010 FAX: +49-711-3270-0141 2/F., BLOCK 5 BLDG.AUTOMATION INSTRUMENTATION PLAZA, 103 CAOBAO RD. SHANGHAI 200233,
France CNC Service Center CHINA
25, BOULEVARD DES BOUVETS, 92741 NANTERRE CEDEX FRANCE TEL: +86-21-6120-0808 FAX: +86-21-6494-0178
TEL: +33-1-41-02-83-13 FAX: +33-1-49-01-07-25 Shenyang CNC Service Center
Lyon CNC Service Satellite TEL: +86-24-2397-0184 FAX: +86-24-2397-0185
Beijing CNC Service Satellite
U.K CNC Service Center 9/F, OFFICE TOWER1, HENDERSON CENTER, 18 JIANGUOMENNEI DAJIE, DONGCHENG DISTRICT,
TRAVELLERS LANE, HATFIELD, HERTFORDSHIRE, AL10 8XB, U.K. BEIJING 100005, CHINA
TEL: +44-1707-282-846 FAX:-44-1707-278-992 TEL: +86-10-6518-8830 FAX: +86-10-6518-8030
Italy CNC Service Center China MITSUBISHI CNC Agent Service Center
ZONA INDUSTRIALE VIA ARCHIMEDE 35 20041 AGRATE BRIANZA, MILANO ITALY (BEIJING JIAYOU HIGHTECH TECHNOLOGY DEVELOPMENT CO.)
TEL: +39-039-60531-342 FAX: +39-039-6053-206 RM 709, HIGH TECHNOLOGY BUILDING NO.229 NORTH SI HUAN ZHONG ROAD, HAIDIAN DISTRICT ,
Spain CNC Service Satellite BEIJING 100083, CHINA
CTRA. DE RUBI, 76-80 -APDO.420 08190 SAINT CUGAT DEL VALLES, BARCELONA SPAIN TEL: +86-10-8288-3030 FAX: +86-10-6518-8030
TEL: +34-935-65-2236 FAX: Tianjin CNC Service Satellite
Turkey MITSUBISHI CNC Agent Service Center RM909, TAIHONG TOWER, NO220 SHIZILIN STREET, HEBEI DISTRICT, TIANJIN, CHINA 300143
(GENEL TEKNIK SISTEMLER LTD. STI.) TEL: -86-22-2653-9090 FAX: +86-22-2635-9050
DARULACEZE CAD. FAMAS IS MERKEZI A BLOCK NO.43 KAT2 80270 OKMEYDANI ISTANBUL, Shenzhen CNC Service Satellite
TURKEY RM02, UNIT A, 13/F, TIANAN NATIONAL TOWER, RENMING SOUTH ROAD, SHENZHEN, CHINA 518005
TEL: +90-212-320-1640 FAX: +90-212-320-1649 TEL: +86-755-2515-6691 FAX: +86-755-8218-4776
Poland MITSUBISHI CNC Agent Service Center (MPL Technology Sp. z. o. o) Changchun Service Satellite
UL SLICZNA 34, 31-444 KRAKOW, POLAND TEL: +86-431-50214546 FAX: +86-431-5021690
TEL: +48-12-632-28-85 FAX: Hong Kong CNC Service Center
Wroclaw MITSUBISHI CNC Agent Service Satellite (MPL Technology Sp. z. o. o) UNIT A, 25/F RYODEN INDUSTRIAL CENTRE, 26-38 TA CHUEN PING STREET, KWAI CHUNG, NEW
UL KOBIERZYCKA 23, 52-315 WROCLAW, POLAND TERRITORIES, HONG KONG
TEL: +48-71-333-77-53 FAX: +48-71-333-77-53 TEL: +852-2619-8588 FAX: +852-2784-1323
Czech MITSUBISHI CNC Agent Service Center
(AUTOCONT CONTROL SYSTEM S.R.O. ) Taiwan FA Center (MITSUBISHI ELECTRIC TAIWAN CO., LTD.)
NEMOCNICNI 12, 702 00 OSTRAVA 2 CZECH REPUBLIC Taichung CNC Service Center
TEL: +420-596-152-426 FAX: +420-596-152-112 NO.8-1, GONG YEH 16TH RD., TAICHUNG INDUSTIAL PARK TAICHUNG CITY, TAIWAN R.O.C.
TEL: +886-4-2359-0688 FAX: +886-4-2359-0689
Taipei CNC Service Satellite
TEL: +886-4-2359-0688 FAX: +886-4-2359-0689
Tainan CNC Service Satellite
TEL: +886-4-2359-0688 FAX: +886-4-2359-0689
Duplication Prohibited
This manual may not be reproduced in any form, in part or in whole, without written
permission from Mitsubishi Electric Corporation.
© 2004-2007 MITSUBISHI ELECTRIC CORPORATION
ALL RIGHTS RESERVED.