MCPcopy Create free account
hub / github.com/ProgerXP/Notepad2e / Point

Class Point

scintilla/include/Platform.h:91–102  ·  view source on GitHub ↗

* A geometric point class. * Point is exactly the same as the Win32 POINT and GTK+ GdkPoint so can be used interchangeably. */

Source from the content-addressed store, hash-verified

89 * Point is exactly the same as the Win32 POINT and GTK+ GdkPoint so can be used interchangeably.
90 */
91class Point {
92public:
93 XYPOSITION x;
94 XYPOSITION y;
95
96 explicit Point(XYPOSITION x_=0, XYPOSITION y_=0) : x(x_), y(y_) {
97 }
98
99 // Other automatically defined methods (assignment, copy constructor, destructor) are fine
100
101 static Point FromLong(long lpoint);
102};
103
104/**
105 * A geometric rectangle class.

Callers 15

MoveCaretInsideViewMethod · 0.85
PaintSelMarginMethod · 0.85
PageMoveMethod · 0.85
CursorUpOrDownMethod · 0.85
MouseLeaveMethod · 0.85
WndProcMethod · 0.85
DrawMethod · 0.85
DrawChunkMethod · 0.85
FromLongMethod · 0.85
CreateMethod · 0.85
GetClientExtentMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected