Sponsored Content
Full Discussion: Mouse Problems
Operating Systems Linux Mouse Problems Post 57399 by woofie on Tuesday 26th of October 2004 10:10:13 PM
Old 10-26-2004
What type of mouse is it ? model? Brand? USB? PS/2?


Have you tested this mouse on another computer?

have you tried using another mouse in the same port?
 

8 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Mouse wheel...

Hello. I've got round to installing RedHat 7.1, and i have this slight problem. I'm not able to use my mouse wheel. Is this just not possible in RedHat or is there a way to configure my mouse so i can use my mouse wheel. Thank you. (1 Reply)
Discussion started by: Mr-Pixie
1 Replies

2. UNIX for Dummies Questions & Answers

Mouse settings

How do I change the mouse pointer speed settings in Unix. I know in Windows there is the option to change the pointer speed. (3 Replies)
Discussion started by: chyzm
3 Replies

3. BSD

BSD mouse

Hey guys am runing FreeBSD 5.3 on my laptop, i know i have done it before but i cannot for the life of me get my wireless microsoft mouse working in kde. is is connected threw usb. I ran a dmesg and it see the mouse in uhid0. let me know if ya guys could give me a hand in this thanks. (1 Reply)
Discussion started by: THCue
1 Replies

4. UNIX for Advanced & Expert Users

Indigo mouse

A few years ago i found i the Net a "homework" about how to convert ps2 mouse to Indigo mouse. But i do not save it. Anybody helps me? There are about 10 Indigo mice in all of my country. Thanks in advance (2 Replies)
Discussion started by: mikidimov
2 Replies

5. Shell Programming and Scripting

Building a better mouse trap, or How many lines of code does it take to trap a mouse?

Hello all, I'm hoping to get a little insight from some of the wily veterans amongst you. I've written a script to check for new outgoing files to our vendors located on our ssl server. It seems to be working ok, but the final question here, will be one of logic, and/or a better way to... (4 Replies)
Discussion started by: mph
4 Replies

6. HP-UX

reset mouse

I have a Belkin KVM switcher, but when I switch from Unix to Windows, then back to Unix, the mouse stops working is there any way to reset the mouse without restarting the workstation? thanks! (0 Replies)
Discussion started by: xRonin
0 Replies

7. UNIX for Dummies Questions & Answers

Changing middle mouse button for pasting to right mouse button in cygwin rxvt

Hi, I'm using rxvt in Cygwin and I'm wondering how to change my mouse bindings from the middle button for pasting to the right button. The main reason why I want to do this is because my laptop doesn't have a middle mouse button. Thanks for any help! (2 Replies)
Discussion started by: sayeo
2 Replies

8. What is on Your Mind?

Keyboard vs mouse

Which Input device do you use the most ? for me... keyboard ofcourse !! (56 Replies)
Discussion started by: vpraveen84
56 Replies
NCURSES_MOUSEMASK(3)							 1						      NCURSES_MOUSEMASK(3)

ncurses_mousemask - Sets mouse options

SYNOPSIS
int ncurses_mousemask (int $newmask, int &$oldmask) DESCRIPTION
Warning This function is EXPERIMENTAL. The behaviour of this function, its name, and surrounding documentation may change without notice in a future release of PHP. This function should be used at your own risk. Sets mouse events to be reported. By default no mouse events will be reported. Mouse events are represented by NCURSES_KEY_MOUSE in the ncurses_wgetch(3) input stream. To read the event data and pop the event of queue, call ncurses_getmouse(3). PARAMETERS
o $newmask - Mouse mask options can be set with the following predefined constants: oNCURSES_BUTTON1_PRESSED oNCURSES_BUTTON1_RELEASED oNCURSES_BUTTON1_CLICKED oNCURSES_BUTTON1_DOUBLE_CLICKED oNCURSES_BUTTON1_TRIPLE_CLICKED oNCURSES_BUTTON2_PRESSED oNCURSES_BUTTON2_RELEASED oNCURSES_BUTTON2_CLICKED oNCURSES_BUTTON2_DOUBLE_CLICKED oNCURSES_BUTTON2_TRIPLE_CLICKED oNCURSES_BUTTON3_PRESSED oNCURSES_BUTTON3_RELEASED oNCURSES_BUTTON3_CLICKED oNCURSES_BUTTON3_DOUBLE_CLICKED oNCURSES_BUTTON3_TRIPLE_CLICKED oNCURSES_BUTTON4_PRESSED oNCURSES_BUTTON4_RELEASED oNCURSES_BUTTON4_CLICKED oNCURSES_BUTTON4_DOUBLE_CLICKED oNCURSES_BUTTON4_TRIPLE_CLICKED oNCURSES_BUTTON_SHIFT> oNCURSES_BUTTON_CTRL oNCURSES_BUTTON_ALT oNCURSES_ALL_MOUSE_EVENTS oNCURSES_REPORT_MOUSE_POSITION As a side effect, setting a zero mousemask in $newmask turns off the mouse pointer. Setting a non zero value turns mouse pointer on. o $oldmask - This will be set to the previous value of the mouse event mask. RETURN VALUES
Returns the mask of reportable events. On complete failure, it returns 0. EXAMPLES
Example #1 ncurses_mousemask(3) example <?php $newmask = NCURSES_BUTTON1_CLICKED + NCURSES_BUTTON1_RELEASED; $mask = ncurses_mousemask($newmask, $oldmask); if ($mask & $newmask){ printf("All specified mouse options will be supported "); } ?> SEE ALSO
ncurses_getch(3), ncurses_getmouse(3), ncurses_ungetmouse(3). PHP Documentation Group NCURSES_MOUSEMASK(3)
All times are GMT -4. The time now is 08:29 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy