pascalabcnet/PABCNetHelp/Examples/GraphABCEvents/GEv1.html

38 lines
909 B
HTML

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1251">
<title></title>
<link rel="StyleSheet" href="../../default.css">
</head>
<body>
<H1>Ðèñîâàíèå ìûøüþ â ãðàôè÷åñêîì îêíå</H1>
Äàííàÿ ïðîãðàììà îñóùåñòâëÿåò ðèñîâàíèå ìûøüþ â ãðàôè÷åñêîì îêíå:
<blockquote>
<pre>
<code><b>uses</b> GraphABC;<b>
<span style="font-size: 4pt">
</span>procedure</b> MouseDown(x,y,mb: integer);
<b>begin</b>
MoveTo(x,y);
<b>end</b>;
<b><span style="font-size: 4pt">
</span>procedure</b> MouseMove(x,y,mb: integer);
<b>begin</b>
<b>if</b> mb=1 <b>then</b> LineTo(x,y);
<b>end</b>;
<b><span style="font-size: 4pt">
</span>begin
</b> // Ïðèâÿçêà îáðàáîò÷èêîâ ê ñîáûòèÿì
<a href="../../PABCUnits/GraphABC/gr_events.html">OnMouseDown</a> := MouseDown;
<a href="../../PABCUnits/GraphABC/gr_events.html">OnMouseMove</a> := MouseMove
<b>end</b>.</code>
</pre>
</blockquote>
</body>
</html>