Files
source/S/lib--tty--mouse.c.html
github-actions[bot] 08571174ab Deploy to GitHub Pages
2026-02-01 17:32:02 +00:00

254 lines
30 KiB
HTML

<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Transitional//EN' 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd'>
<html xmlns='http://www.w3.org/1999/xhtml'>
<head>
<title>lib/tty/mouse.c</title>
<meta name='robots' content='noindex,nofollow' />
<meta name='generator' content='GLOBAL-6.6.11' />
<meta http-equiv='Content-Style-Type' content='text/css' />
<link rel='stylesheet' type='text/css' href='../style.css' />
</head>
<body>
<!-- beginning of fixed guide -->
<div id='guide'><ul>
<li><a href='#L69'><img class='icon' src='../icons/first.png' alt='[^]' /></a></li>
<li><a href='#L169'><img class='icon' src='../icons/last.png' alt='[v]' /></a></li>
<li><a href='#TOP'><img class='icon' src='../icons/top.png' alt='[top]' /></a></li>
<li><a href='#BOTTOM'><img class='icon' src='../icons/bottom.png' alt='[bottom]' /></a></li>
<li><a href='../mains.html'><img class='icon' src='../icons/index.png' alt='[index]' /></a></li>
<li><a href='../help.html'><img class='icon' src='../icons/help.png' alt='[help]' /></a></li>
<li class='standout'><span><a href='../files/lib.html'>lib</a>/<a href='../files/lib--tty.html'>tty</a>/mouse.c</span></li>
</ul></div>
<!-- end of fixed guide -->
<div align='right'>Manual pages:
<a href=man/mc.html>mc</a> &bullet; <a href=man/mcdiff.html>mcdiff</a> &bullet; <a href=man/mcedit.html>mcedit</a> &bullet; <a href=man/mcview.html>mcview</a>
</div>
<a id='TOP' name='TOP'></a><h2 class='header'><a href='../mains.html'>root</a>/<a href='../files/lib.html'>lib</a>/<a href='../files/lib--tty.html'>tty</a>/mouse.c</h2>
<em class='comment'>/* <img class='icon' src='../icons/n_left.png' alt='[previous]' /><img class='icon' src='../icons/n_right.png' alt='[next]' /><a href='#L69'><img class='icon' src='../icons/first.png' alt='[first]' /></a><a href='#L169'><img class='icon' src='../icons/last.png' alt='[last]' /></a><img class='icon' src='../icons/n_top.png' alt='[top]' /><a href='#BOTTOM'><img class='icon' src='../icons/bottom.png' alt='[bottom]' /></a><a href='../mains.html'><img class='icon' src='../icons/index.png' alt='[index]' /></a><a href='../help.html'><img class='icon' src='../icons/help.png' alt='[help]' /></a>&nbsp;<input type='text' readonly onfocus='this.select();' value='+1 lib/tty/mouse.c' /> */</em>
<hr />
<h2 class='header'>DEFINITIONS</h2>
This source file includes following definitions.
<ol>
<li><a href='#L69' title='Defined at 69.'>show_mouse_pointer</a></li>
<li><a href='#L83' title='Defined at 83.'>init_mouse</a></li>
<li><a href='#L111' title='Defined at 111.'>enable_mouse</a></li>
<li><a href='#L169' title='Defined at 169.'>disable_mouse</a></li>
</ol>
<hr />
<pre>
<a id='L1' name='L1'></a> 1 <em class='comment'>/*</em>
<a id='L2' name='L2'></a> 2 <em class='comment'> Mouse managing</em>
<a id='L3' name='L3'></a> 3 <em class='comment'></em>
<a id='L4' name='L4'></a> 4 <em class='comment'> Copyright (C) 1994-2025</em>
<a id='L5' name='L5'></a> 5 <em class='comment'> Free Software Foundation, Inc.</em>
<a id='L6' name='L6'></a> 6 <em class='comment'></em>
<a id='L7' name='L7'></a> 7 <em class='comment'> Written by:</em>
<a id='L8' name='L8'></a> 8 <em class='comment'> Andrew Borodin &lt;aborodin@vmail.ru&gt;, 2009.</em>
<a id='L9' name='L9'></a> 9 <em class='comment'></em>
<a id='L10' name='L10'></a> 10 <em class='comment'> This file is part of the Midnight Commander.</em>
<a id='L11' name='L11'></a> 11 <em class='comment'></em>
<a id='L12' name='L12'></a> 12 <em class='comment'> The Midnight Commander is free software: you can redistribute it</em>
<a id='L13' name='L13'></a> 13 <em class='comment'> and/or modify it under the terms of the GNU General Public License as</em>
<a id='L14' name='L14'></a> 14 <em class='comment'> published by the Free Software Foundation, either version 3 of the License,</em>
<a id='L15' name='L15'></a> 15 <em class='comment'> or (at your option) any later version.</em>
<a id='L16' name='L16'></a> 16 <em class='comment'></em>
<a id='L17' name='L17'></a> 17 <em class='comment'> The Midnight Commander is distributed in the hope that it will be useful,</em>
<a id='L18' name='L18'></a> 18 <em class='comment'> but WITHOUT ANY WARRANTY; without even the implied warranty of</em>
<a id='L19' name='L19'></a> 19 <em class='comment'> MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the</em>
<a id='L20' name='L20'></a> 20 <em class='comment'> GNU General Public License for more details.</em>
<a id='L21' name='L21'></a> 21 <em class='comment'></em>
<a id='L22' name='L22'></a> 22 <em class='comment'> You should have received a copy of the GNU General Public License</em>
<a id='L23' name='L23'></a> 23 <em class='comment'> along with this program. If not, see &lt;https://www.gnu.org/licenses/&gt;.</em>
<a id='L24' name='L24'></a> 24 <em class='comment'> */</em>
<a id='L25' name='L25'></a> 25
<a id='L26' name='L26'></a> 26 <em class='comment'>/** \file mouse.c</em>
<a id='L27' name='L27'></a> 27 <em class='comment'> * \brief Source: mouse managing</em>
<a id='L28' name='L28'></a> 28 <em class='comment'> *</em>
<a id='L29' name='L29'></a> 29 <em class='comment'> * Events received by clients of this library have their coordinates 0 based</em>
<a id='L30' name='L30'></a> 30 <em class='comment'> */</em>
<a id='L31' name='L31'></a> 31
<a id='L32' name='L32'></a> 32 <em class='sharp'>#include</em> &lt;config.h&gt;
<a id='L33' name='L33'></a> 33
<a id='L34' name='L34'></a> 34 <em class='sharp'>#include</em> &lt;stdio.h&gt;
<a id='L35' name='L35'></a> 35 <em class='sharp'>#include</em> &lt;sys/types.h&gt;
<a id='L36' name='L36'></a> 36 <em class='sharp'>#include</em> &lt;unistd.h&gt;
<a id='L37' name='L37'></a> 37
<a id='L38' name='L38'></a> 38 <em class='sharp'>#include</em> "<a href='lib--global.h.html'>lib/global.h</a>"
<a id='L39' name='L39'></a> 39
<a id='L40' name='L40'></a> 40 <em class='sharp'>#include</em> "<a href='lib--tty--tty.h.html'>tty.h</a>"
<a id='L41' name='L41'></a> 41 <em class='sharp'>#include</em> "<a href='lib--tty--tty-internal.h.html'>tty-internal.h</a>" <em class='comment'>// mouse_enabled</em>
<a id='L42' name='L42'></a> 42 <em class='sharp'>#include</em> "<a href='../I/mouse.h.html'>mouse.h</a>"
<a id='L43' name='L43'></a> 43 <em class='sharp'>#include</em> "<a href='lib--tty--key.h.html'>key.h</a>" <em class='comment'>// define sequence</em>
<a id='L44' name='L44'></a> 44
<a id='L45' name='L45'></a> 45 <em class='comment'>/*** global variables ****************************************************************************/</em>
<a id='L46' name='L46'></a> 46
<a id='L47' name='L47'></a> 47 <a href='../S/lib--tty--mouse.h.html#L78' title='Defined at 78 in lib/tty/mouse.h.'>Mouse_Type</a> <a href='../Y/use_mouse_p.html' title='Multiple used in 21 places.'>use_mouse_p</a> = <a href='../S/lib--tty--mouse.h.html#L72' title='Defined at 72 in lib/tty/mouse.h.'>MOUSE_NONE</a>;
<a id='L48' name='L48'></a> 48 <a href='../Y/gboolean.html' title='Multiple used in 1942 places.'>gboolean</a> <a href='../Y/mouse_enabled.html' title='Multiple used in 15 places.'>mouse_enabled</a> = <a href='../Y/FALSE.html' title='Multiple used in 1723 places.'>FALSE</a>;
<a id='L49' name='L49'></a> 49 <strong class='reserved'>int</strong> <a href='../Y/mouse_fd.html' title='Multiple used in 18 places.'>mouse_fd</a> =
<a id='L50' name='L50'></a> 50 -1; <em class='comment'>// for when gpm_fd changes to &lt; 0 and the old one must be cleared from select_set</em>
<a id='L51' name='L51'></a> 51 <strong class='reserved'>const</strong> <strong class='reserved'>char</strong> *<a href='../Y/xmouse_seq.html' title='Multiple used in 10 places.'>xmouse_seq</a>;
<a id='L52' name='L52'></a> 52 <strong class='reserved'>const</strong> <strong class='reserved'>char</strong> *<a href='../Y/xmouse_extended_seq.html' title='Multiple used in 5 places.'>xmouse_extended_seq</a>;
<a id='L53' name='L53'></a> 53 <a href='../Y/gboolean.html' title='Multiple used in 1942 places.'>gboolean</a> <a href='../Y/ncurses_key_mouse_means_extended.html' title='Multiple used in 4 places.'>ncurses_key_mouse_means_extended</a> = <a href='../Y/FALSE.html' title='Multiple used in 1723 places.'>FALSE</a>;
<a id='L54' name='L54'></a> 54
<a id='L55' name='L55'></a> 55 <em class='comment'>/*** file scope macro definitions ****************************************************************/</em>
<a id='L56' name='L56'></a> 56
<a id='L57' name='L57'></a> 57 <em class='comment'>/*** file scope type declarations ****************************************************************/</em>
<a id='L58' name='L58'></a> 58
<a id='L59' name='L59'></a> 59 <em class='comment'>/*** file scope variables ************************************************************************/</em>
<a id='L60' name='L60'></a> 60
<a id='L61' name='L61'></a> 61 <em class='comment'>/*** file scope functions ************************************************************************/</em>
<a id='L62' name='L62'></a> 62 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
<a id='L63' name='L63'></a> 63
<a id='L64' name='L64'></a> 64 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
<a id='L65' name='L65'></a> 65 <em class='comment'>/*** public functions ****************************************************************************/</em>
<a id='L66' name='L66'></a> 66 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
<a id='L67' name='L67'></a> 67
<a id='L68' name='L68'></a> 68 <strong class='reserved'>void</strong>
<a id='L69' name='L69'></a> 69 <a href='../R/show_mouse_pointer.html' title='Multiple referred from 2 places.'>show_mouse_pointer</a> (<strong class='reserved'>int</strong> <a href='../Y/x.html' title='Multiple used in 677 places.'>x</a>, <strong class='reserved'>int</strong> <a href='../Y/y.html' title='Multiple used in 587 places.'>y</a>)
<em class='comment'>/* <img class='icon' src='../icons/n_left.png' alt='[previous]' /><a href='#L83'><img class='icon' src='../icons/right.png' alt='[next]' /></a><img class='icon' src='../icons/n_first.png' alt='[first]' /><a href='#L169'><img class='icon' src='../icons/last.png' alt='[last]' /></a><a href='#TOP'><img class='icon' src='../icons/top.png' alt='[top]' /></a><a href='#BOTTOM'><img class='icon' src='../icons/bottom.png' alt='[bottom]' /></a><a href='../mains.html'><img class='icon' src='../icons/index.png' alt='[index]' /></a><a href='../help.html'><img class='icon' src='../icons/help.png' alt='[help]' /></a>&nbsp;<input type='text' readonly onfocus='this.select();' value='+69 lib/tty/mouse.c' /> */</em>
<a id='L70' name='L70'></a> 70 <em class='brace'>{</em>
<a id='L71' name='L71'></a> 71 <em class='sharp'>#ifdef</em> <a href='../Y/HAVE_LIBGPM.html' title='Multiple used in 13 places.'>HAVE_LIBGPM</a>
<a id='L72' name='L72'></a> 72 <strong class='reserved'>if</strong> (<a href='../Y/use_mouse_p.html' title='Multiple used in 21 places.'>use_mouse_p</a> == <a href='../S/lib--tty--mouse.h.html#L74' title='Defined at 74 in lib/tty/mouse.h.'>MOUSE_GPM</a>)
<a id='L73' name='L73'></a> 73 Gpm_DrawPointer (<a href='../Y/x.html' title='Multiple used in 677 places.'>x</a>, <a href='../Y/y.html' title='Multiple used in 587 places.'>y</a>, gpm_consolefd);
<a id='L74' name='L74'></a> 74 <em class='sharp'>#else</em>
<a id='L75' name='L75'></a> 75 (<strong class='reserved'>void</strong>) <a href='../Y/x.html' title='Multiple used in 677 places.'>x</a>;
<a id='L76' name='L76'></a> 76 (<strong class='reserved'>void</strong>) <a href='../Y/y.html' title='Multiple used in 587 places.'>y</a>;
<a id='L77' name='L77'></a> 77 <em class='sharp'>#endif</em>
<a id='L78' name='L78'></a> 78 <em class='brace'>}</em>
<a id='L79' name='L79'></a> 79
<a id='L80' name='L80'></a> 80 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
<a id='L81' name='L81'></a> 81
<a id='L82' name='L82'></a> 82 <strong class='reserved'>void</strong>
<a id='L83' name='L83'></a> 83 <a href='../R/init_mouse.html' title='Multiple referred from 2 places.'>init_mouse</a> (<strong class='reserved'>void</strong>)
<em class='comment'>/* <a href='#L69'><img class='icon' src='../icons/left.png' alt='[previous]' /></a><a href='#L111'><img class='icon' src='../icons/right.png' alt='[next]' /></a><a href='#L69'><img class='icon' src='../icons/first.png' alt='[first]' /></a><a href='#L169'><img class='icon' src='../icons/last.png' alt='[last]' /></a><a href='#TOP'><img class='icon' src='../icons/top.png' alt='[top]' /></a><a href='#BOTTOM'><img class='icon' src='../icons/bottom.png' alt='[bottom]' /></a><a href='../mains.html'><img class='icon' src='../icons/index.png' alt='[index]' /></a><a href='../help.html'><img class='icon' src='../icons/help.png' alt='[help]' /></a>&nbsp;<input type='text' readonly onfocus='this.select();' value='+83 lib/tty/mouse.c' /> */</em>
<a id='L84' name='L84'></a> 84 <em class='brace'>{</em>
<a id='L85' name='L85'></a> 85 <strong class='reserved'>switch</strong> (<a href='../Y/use_mouse_p.html' title='Multiple used in 21 places.'>use_mouse_p</a>)
<a id='L86' name='L86'></a> 86 <em class='brace'>{</em>
<a id='L87' name='L87'></a> 87 <em class='sharp'>#ifdef</em> <a href='../Y/HAVE_LIBGPM.html' title='Multiple used in 13 places.'>HAVE_LIBGPM</a>
<a id='L88' name='L88'></a> 88 <strong class='reserved'>case</strong> <a href='../S/lib--tty--mouse.h.html#L72' title='Defined at 72 in lib/tty/mouse.h.'>MOUSE_NONE</a>:
<a id='L89' name='L89'></a> 89 <a href='../Y/use_mouse_p.html' title='Multiple used in 21 places.'>use_mouse_p</a> = <a href='../S/lib--tty--mouse.h.html#L74' title='Defined at 74 in lib/tty/mouse.h.'>MOUSE_GPM</a>;
<a id='L90' name='L90'></a> 90 <strong class='reserved'>break</strong>;
<a id='L91' name='L91'></a> 91 <em class='sharp'>#endif</em>
<a id='L92' name='L92'></a> 92
<a id='L93' name='L93'></a> 93 <strong class='reserved'>case</strong> <a href='../S/lib--tty--mouse.h.html#L76' title='Defined at 76 in lib/tty/mouse.h.'>MOUSE_XTERM_NORMAL_TRACKING</a>:
<a id='L94' name='L94'></a> 94 <strong class='reserved'>case</strong> <a href='../S/lib--tty--mouse.h.html#L77' title='Defined at 77 in lib/tty/mouse.h.'>MOUSE_XTERM_BUTTON_EVENT_TRACKING</a>:
<a id='L95' name='L95'></a> 95 <strong class='reserved'>if</strong> (<a href='../Y/xmouse_seq.html' title='Multiple used in 10 places.'>xmouse_seq</a> != <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>)
<a id='L96' name='L96'></a> 96 <a href='../S/lib--tty--key.c.html#L1608' title='Defined at 1608 in lib/tty/key.c.'>define_sequence</a> (<a href='../S/lib--tty--key.h.html#L34' title='Defined at 34 in lib/tty/key.h.'>MCKEY_MOUSE</a>, <a href='../Y/xmouse_seq.html' title='Multiple used in 10 places.'>xmouse_seq</a>, <a href='../S/lib--tty--key.h.html#L30' title='Defined at 30 in lib/tty/key.h.'>MCKEY_NOACTION</a>);
<a id='L97' name='L97'></a> 97 <strong class='reserved'>if</strong> (<a href='../Y/xmouse_extended_seq.html' title='Multiple used in 5 places.'>xmouse_extended_seq</a> != <a href='../Y/NULL.html' title='Multiple used in 5498 places.'>NULL</a>)
<a id='L98' name='L98'></a> 98 <a href='../S/lib--tty--key.c.html#L1608' title='Defined at 1608 in lib/tty/key.c.'>define_sequence</a> (<a href='../S/lib--tty--key.h.html#L37' title='Defined at 37 in lib/tty/key.h.'>MCKEY_EXTENDED_MOUSE</a>, <a href='../Y/xmouse_extended_seq.html' title='Multiple used in 5 places.'>xmouse_extended_seq</a>, <a href='../S/lib--tty--key.h.html#L30' title='Defined at 30 in lib/tty/key.h.'>MCKEY_NOACTION</a>);
<a id='L99' name='L99'></a> 99 <strong class='reserved'>break</strong>;
<a id='L100' name='L100'></a> 100
<a id='L101' name='L101'></a> 101 <strong class='reserved'>default</strong>:
<a id='L102' name='L102'></a> 102 <strong class='reserved'>break</strong>;
<a id='L103' name='L103'></a> 103 <em class='brace'>}</em>
<a id='L104' name='L104'></a> 104
<a id='L105' name='L105'></a> 105 <a href='../S/lib--tty--mouse.c.html#L111' title='Defined at 111 in lib/tty/mouse.c.'>enable_mouse</a> ();
<a id='L106' name='L106'></a> 106 <em class='brace'>}</em>
<a id='L107' name='L107'></a> 107
<a id='L108' name='L108'></a> 108 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
<a id='L109' name='L109'></a> 109
<a id='L110' name='L110'></a> 110 <strong class='reserved'>void</strong>
<a id='L111' name='L111'></a> 111 <a href='../R/enable_mouse.html' title='Multiple referred from 4 places.'>enable_mouse</a> (<strong class='reserved'>void</strong>)
<em class='comment'>/* <a href='#L83'><img class='icon' src='../icons/left.png' alt='[previous]' /></a><a href='#L169'><img class='icon' src='../icons/right.png' alt='[next]' /></a><a href='#L69'><img class='icon' src='../icons/first.png' alt='[first]' /></a><a href='#L169'><img class='icon' src='../icons/last.png' alt='[last]' /></a><a href='#TOP'><img class='icon' src='../icons/top.png' alt='[top]' /></a><a href='#BOTTOM'><img class='icon' src='../icons/bottom.png' alt='[bottom]' /></a><a href='../mains.html'><img class='icon' src='../icons/index.png' alt='[index]' /></a><a href='../help.html'><img class='icon' src='../icons/help.png' alt='[help]' /></a>&nbsp;<input type='text' readonly onfocus='this.select();' value='+111 lib/tty/mouse.c' /> */</em>
<a id='L112' name='L112'></a> 112 <em class='brace'>{</em>
<a id='L113' name='L113'></a> 113 <strong class='reserved'>if</strong> (<a href='../Y/mouse_enabled.html' title='Multiple used in 15 places.'>mouse_enabled</a>)
<a id='L114' name='L114'></a> 114 <strong class='reserved'>return</strong>;
<a id='L115' name='L115'></a> 115
<a id='L116' name='L116'></a> 116 <strong class='reserved'>switch</strong> (<a href='../Y/use_mouse_p.html' title='Multiple used in 21 places.'>use_mouse_p</a>)
<a id='L117' name='L117'></a> 117 <em class='brace'>{</em>
<a id='L118' name='L118'></a> 118 <em class='sharp'>#ifdef</em> <a href='../Y/HAVE_LIBGPM.html' title='Multiple used in 13 places.'>HAVE_LIBGPM</a>
<a id='L119' name='L119'></a> 119 <strong class='reserved'>case</strong> <a href='../S/lib--tty--mouse.h.html#L74' title='Defined at 74 in lib/tty/mouse.h.'>MOUSE_GPM</a>:
<a id='L120' name='L120'></a> 120 <em class='brace'>{</em>
<a id='L121' name='L121'></a> 121 Gpm_Connect <a href='../Y/conn.html' title='Multiple used in 6 places.'>conn</a>;
<a id='L122' name='L122'></a> 122
<a id='L123' name='L123'></a> 123 <a href='../Y/conn.html' title='Multiple used in 6 places.'>conn</a>.eventMask = ~<a href='../S/lib--tty--mouse.h.html#L46' title='Defined at 46 in lib/tty/mouse.h.'>GPM_MOVE</a>;
<a id='L124' name='L124'></a> 124 <a href='../Y/conn.html' title='Multiple used in 6 places.'>conn</a>.defaultMask = <a href='../S/lib--tty--mouse.h.html#L46' title='Defined at 46 in lib/tty/mouse.h.'>GPM_MOVE</a>;
<a id='L125' name='L125'></a> 125 <a href='../Y/conn.html' title='Multiple used in 6 places.'>conn</a>.minMod = 0;
<a id='L126' name='L126'></a> 126 <a href='../Y/conn.html' title='Multiple used in 6 places.'>conn</a>.maxMod = 0;
<a id='L127' name='L127'></a> 127
<a id='L128' name='L128'></a> 128 <a href='../Y/mouse_fd.html' title='Multiple used in 18 places.'>mouse_fd</a> = Gpm_Open (&amp;<a href='../Y/conn.html' title='Multiple used in 6 places.'>conn</a>, 0);
<a id='L129' name='L129'></a> 129 <strong class='reserved'>if</strong> (<a href='../Y/mouse_fd.html' title='Multiple used in 18 places.'>mouse_fd</a> == -1)
<a id='L130' name='L130'></a> 130 <em class='brace'>{</em>
<a id='L131' name='L131'></a> 131 <a href='../Y/use_mouse_p.html' title='Multiple used in 21 places.'>use_mouse_p</a> = <a href='../S/lib--tty--mouse.h.html#L72' title='Defined at 72 in lib/tty/mouse.h.'>MOUSE_NONE</a>;
<a id='L132' name='L132'></a> 132 <strong class='reserved'>return</strong>;
<a id='L133' name='L133'></a> 133 <em class='brace'>}</em>
<a id='L134' name='L134'></a> 134 <a href='../Y/mouse_enabled.html' title='Multiple used in 15 places.'>mouse_enabled</a> = <a href='../Y/TRUE.html' title='Multiple used in 1990 places.'>TRUE</a>;
<a id='L135' name='L135'></a> 135 <em class='brace'>}</em>
<a id='L136' name='L136'></a> 136 <strong class='reserved'>break</strong>;
<a id='L137' name='L137'></a> 137 <em class='sharp'>#endif</em>
<a id='L138' name='L138'></a> 138
<a id='L139' name='L139'></a> 139 <strong class='reserved'>case</strong> <a href='../S/lib--tty--mouse.h.html#L76' title='Defined at 76 in lib/tty/mouse.h.'>MOUSE_XTERM_NORMAL_TRACKING</a>:
<a id='L140' name='L140'></a> 140 <em class='comment'>// save old highlight mouse tracking</em>
<a id='L141' name='L141'></a> 141 <a href='../Y/printf.html' title='Multiple used in 63 places.'>printf</a> (<a href='../S/lib--unixcompat.h.html#L110' title='Defined at 110 in lib/unixcompat.h.'>ESC_STR</a> "[?1001s");
<a id='L142' name='L142'></a> 142
<a id='L143' name='L143'></a> 143 <em class='comment'>// enable mouse tracking and SGR extended mouse reporting</em>
<a id='L144' name='L144'></a> 144 <a href='../Y/printf.html' title='Multiple used in 63 places.'>printf</a> (<a href='../S/lib--unixcompat.h.html#L110' title='Defined at 110 in lib/unixcompat.h.'>ESC_STR</a> "[?1000;1006h");
<a id='L145' name='L145'></a> 145
<a id='L146' name='L146'></a> 146 <a href='../Y/fflush.html' title='Multiple used in 32 places.'>fflush</a> (<a href='../Y/stdout.html' title='Multiple used in 30 places.'>stdout</a>);
<a id='L147' name='L147'></a> 147 <a href='../Y/mouse_enabled.html' title='Multiple used in 15 places.'>mouse_enabled</a> = <a href='../Y/TRUE.html' title='Multiple used in 1990 places.'>TRUE</a>;
<a id='L148' name='L148'></a> 148 <strong class='reserved'>break</strong>;
<a id='L149' name='L149'></a> 149
<a id='L150' name='L150'></a> 150 <strong class='reserved'>case</strong> <a href='../S/lib--tty--mouse.h.html#L77' title='Defined at 77 in lib/tty/mouse.h.'>MOUSE_XTERM_BUTTON_EVENT_TRACKING</a>:
<a id='L151' name='L151'></a> 151 <em class='comment'>// save old highlight mouse tracking</em>
<a id='L152' name='L152'></a> 152 <a href='../Y/printf.html' title='Multiple used in 63 places.'>printf</a> (<a href='../S/lib--unixcompat.h.html#L110' title='Defined at 110 in lib/unixcompat.h.'>ESC_STR</a> "[?1001s");
<a id='L153' name='L153'></a> 153
<a id='L154' name='L154'></a> 154 <em class='comment'>// enable mouse tracking and SGR extended mouse reporting</em>
<a id='L155' name='L155'></a> 155 <a href='../Y/printf.html' title='Multiple used in 63 places.'>printf</a> (<a href='../S/lib--unixcompat.h.html#L110' title='Defined at 110 in lib/unixcompat.h.'>ESC_STR</a> "[?1002;1006h");
<a id='L156' name='L156'></a> 156
<a id='L157' name='L157'></a> 157 <a href='../Y/fflush.html' title='Multiple used in 32 places.'>fflush</a> (<a href='../Y/stdout.html' title='Multiple used in 30 places.'>stdout</a>);
<a id='L158' name='L158'></a> 158 <a href='../Y/mouse_enabled.html' title='Multiple used in 15 places.'>mouse_enabled</a> = <a href='../Y/TRUE.html' title='Multiple used in 1990 places.'>TRUE</a>;
<a id='L159' name='L159'></a> 159 <strong class='reserved'>break</strong>;
<a id='L160' name='L160'></a> 160
<a id='L161' name='L161'></a> 161 <strong class='reserved'>default</strong>:
<a id='L162' name='L162'></a> 162 <strong class='reserved'>break</strong>;
<a id='L163' name='L163'></a> 163 <em class='brace'>}</em>
<a id='L164' name='L164'></a> 164 <em class='brace'>}</em>
<a id='L165' name='L165'></a> 165
<a id='L166' name='L166'></a> 166 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
<a id='L167' name='L167'></a> 167
<a id='L168' name='L168'></a> 168 <strong class='reserved'>void</strong>
<a id='L169' name='L169'></a> 169 <a href='../R/disable_mouse.html' title='Multiple referred from 5 places.'>disable_mouse</a> (<strong class='reserved'>void</strong>)
<em class='comment'>/* <a href='#L111'><img class='icon' src='../icons/left.png' alt='[previous]' /></a><img class='icon' src='../icons/n_right.png' alt='[next]' /><a href='#L69'><img class='icon' src='../icons/first.png' alt='[first]' /></a><img class='icon' src='../icons/n_last.png' alt='[last]' /><a href='#TOP'><img class='icon' src='../icons/top.png' alt='[top]' /></a><a href='#BOTTOM'><img class='icon' src='../icons/bottom.png' alt='[bottom]' /></a><a href='../mains.html'><img class='icon' src='../icons/index.png' alt='[index]' /></a><a href='../help.html'><img class='icon' src='../icons/help.png' alt='[help]' /></a>&nbsp;<input type='text' readonly onfocus='this.select();' value='+169 lib/tty/mouse.c' /> */</em>
<a id='L170' name='L170'></a> 170 <em class='brace'>{</em>
<a id='L171' name='L171'></a> 171 <strong class='reserved'>if</strong> (!<a href='../Y/mouse_enabled.html' title='Multiple used in 15 places.'>mouse_enabled</a>)
<a id='L172' name='L172'></a> 172 <strong class='reserved'>return</strong>;
<a id='L173' name='L173'></a> 173
<a id='L174' name='L174'></a> 174 <a href='../Y/mouse_enabled.html' title='Multiple used in 15 places.'>mouse_enabled</a> = <a href='../Y/FALSE.html' title='Multiple used in 1723 places.'>FALSE</a>;
<a id='L175' name='L175'></a> 175
<a id='L176' name='L176'></a> 176 <strong class='reserved'>switch</strong> (<a href='../Y/use_mouse_p.html' title='Multiple used in 21 places.'>use_mouse_p</a>)
<a id='L177' name='L177'></a> 177 <em class='brace'>{</em>
<a id='L178' name='L178'></a> 178 <em class='sharp'>#ifdef</em> <a href='../Y/HAVE_LIBGPM.html' title='Multiple used in 13 places.'>HAVE_LIBGPM</a>
<a id='L179' name='L179'></a> 179 <strong class='reserved'>case</strong> <a href='../S/lib--tty--mouse.h.html#L74' title='Defined at 74 in lib/tty/mouse.h.'>MOUSE_GPM</a>:
<a id='L180' name='L180'></a> 180 Gpm_Close ();
<a id='L181' name='L181'></a> 181 <strong class='reserved'>break</strong>;
<a id='L182' name='L182'></a> 182 <em class='sharp'>#endif</em>
<a id='L183' name='L183'></a> 183 <strong class='reserved'>case</strong> <a href='../S/lib--tty--mouse.h.html#L76' title='Defined at 76 in lib/tty/mouse.h.'>MOUSE_XTERM_NORMAL_TRACKING</a>:
<a id='L184' name='L184'></a> 184 <em class='comment'>// disable SGR extended mouse reporting and mouse tracking</em>
<a id='L185' name='L185'></a> 185 <a href='../Y/printf.html' title='Multiple used in 63 places.'>printf</a> (<a href='../S/lib--unixcompat.h.html#L110' title='Defined at 110 in lib/unixcompat.h.'>ESC_STR</a> "[?1006;1000l");
<a id='L186' name='L186'></a> 186
<a id='L187' name='L187'></a> 187 <em class='comment'>// restore old highlight mouse tracking</em>
<a id='L188' name='L188'></a> 188 <a href='../Y/printf.html' title='Multiple used in 63 places.'>printf</a> (<a href='../S/lib--unixcompat.h.html#L110' title='Defined at 110 in lib/unixcompat.h.'>ESC_STR</a> "[?1001r");
<a id='L189' name='L189'></a> 189
<a id='L190' name='L190'></a> 190 <a href='../Y/fflush.html' title='Multiple used in 32 places.'>fflush</a> (<a href='../Y/stdout.html' title='Multiple used in 30 places.'>stdout</a>);
<a id='L191' name='L191'></a> 191 <strong class='reserved'>break</strong>;
<a id='L192' name='L192'></a> 192 <strong class='reserved'>case</strong> <a href='../S/lib--tty--mouse.h.html#L77' title='Defined at 77 in lib/tty/mouse.h.'>MOUSE_XTERM_BUTTON_EVENT_TRACKING</a>:
<a id='L193' name='L193'></a> 193 <em class='comment'>// disable SGR extended mouse reporting and mouse tracking</em>
<a id='L194' name='L194'></a> 194 <a href='../Y/printf.html' title='Multiple used in 63 places.'>printf</a> (<a href='../S/lib--unixcompat.h.html#L110' title='Defined at 110 in lib/unixcompat.h.'>ESC_STR</a> "[?1006;1002l");
<a id='L195' name='L195'></a> 195
<a id='L196' name='L196'></a> 196 <em class='comment'>// restore old highlight mouse tracking</em>
<a id='L197' name='L197'></a> 197 <a href='../Y/printf.html' title='Multiple used in 63 places.'>printf</a> (<a href='../S/lib--unixcompat.h.html#L110' title='Defined at 110 in lib/unixcompat.h.'>ESC_STR</a> "[?1001r");
<a id='L198' name='L198'></a> 198
<a id='L199' name='L199'></a> 199 <a href='../Y/fflush.html' title='Multiple used in 32 places.'>fflush</a> (<a href='../Y/stdout.html' title='Multiple used in 30 places.'>stdout</a>);
<a id='L200' name='L200'></a> 200 <strong class='reserved'>break</strong>;
<a id='L201' name='L201'></a> 201 <strong class='reserved'>default</strong>:
<a id='L202' name='L202'></a> 202 <strong class='reserved'>break</strong>;
<a id='L203' name='L203'></a> 203 <em class='brace'>}</em>
<a id='L204' name='L204'></a> 204 <em class='brace'>}</em>
<a id='L205' name='L205'></a> 205
<a id='L206' name='L206'></a> 206 <em class='comment'>/* --------------------------------------------------------------------------------------------- */</em>
</pre>
<hr />
<a id='BOTTOM' name='BOTTOM'></a>
<em class='comment'>/* <img class='icon' src='../icons/n_left.png' alt='[previous]' /><img class='icon' src='../icons/n_right.png' alt='[next]' /><a href='#L69'><img class='icon' src='../icons/first.png' alt='[first]' /></a><a href='#L169'><img class='icon' src='../icons/last.png' alt='[last]' /></a><a href='#TOP'><img class='icon' src='../icons/top.png' alt='[top]' /></a><img class='icon' src='../icons/n_bottom.png' alt='[bottom]' /><a href='../mains.html'><img class='icon' src='../icons/index.png' alt='[index]' /></a><a href='../help.html'><img class='icon' src='../icons/help.png' alt='[help]' /></a>&nbsp;<input type='text' readonly onfocus='this.select();' value='+206 lib/tty/mouse.c' /> */</em>
</body>
</html>