Sponsored Content
Special Forums Hardware Middle Mouse Button stopped working Post 302590786 by Corona688 on Tuesday 17th of January 2012 02:26:14 PM
Old 01-17-2012
Did you try another mouse?
 

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

right mouse button menu

under HP-UX 10.20, I used to have a little thing where if I right clicked on the desktop I would get a menu listing programs that could run, for example netscape and stuff. however after a reboot, I have lost this function. Is there a configuration file anywhere that you can add the paths of... (2 Replies)
Discussion started by: maddave
2 Replies

2. Solaris

Mouse button bindings

Hello, On one of our Solaris machines the user has managed to destroy his mouse key bindings. Usally if he clicks the middle button it presents some applications but now it just minimises the CDE panel to the top. I have compared his /usr/dt/config/C/sys.dtwmrc with another machine that is... (0 Replies)
Discussion started by: Mr Pink
0 Replies

3. 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

4. Linux

Cronjobs stopped working

Hi All, I am user of a Linux machine and I have approximatly 15 cronjobs scheduled in my crontab. Yesterday my administrator made LDAP active on my userid and all the things are doing fine after that. But all cronjobs for my user id stored in my crontab have stopped working after that. Could... (1 Reply)
Discussion started by: bisla.yogender
1 Replies

5. Shell Programming and Scripting

cronjobs stopped working

Hello people, I had these cronjobs scheduled in some Unix boxes which were running fine until yesterday.But then the password was changed for that user id and then the jobs stopped working. As far as i know cron jobs run from super user. I am completely lost over here now. Thanks. (2 Replies)
Discussion started by: King Nothing
2 Replies

6. Shell Programming and Scripting

shell script getting stopped at the middle.

I have created a shell scrit to run the informatica workflows sequentially.In the script i am executing 7 workflows sequentially after running 4 workflows the scrpt getting stop and it is not continuing next step evn it is updating logs.4th workflow will take more time to finish is that making... (1 Reply)
Discussion started by: katakamvivek
1 Replies

7. Shell Programming and Scripting

Perl script stopped working

Hi, I have the following segment of a script which is supposed to prompt a user for password and then capture the password entered by the user. The function is called in by another script and used to work without issue, the problem is that recently the script is not waiting for the user to... (3 Replies)
Discussion started by: belalr
3 Replies

8. AIX

Printer stopped working

I have a serial printer connected to a 16 port ran. All of a sudden my printer stopped working and not sure how to get it back. Can anyone help pint me in the write direction? lsdev -Cc printer gives me the following. lp0 Defined 0A-08-11-00 Other serial printer lp1 Defined 0A-08-11-03... (3 Replies)
Discussion started by: Gmanx
3 Replies

9. Solaris

Mailx stopped working

after a new patch set on the 14th. I noticed that mailx stopped working, as far a I can tell that is the only thing that changed. solaris 10 OS it seems everything is the same, sendmail seems to be running root@server # ps -ef | grep -i sendmail smmsp 687 1 0 10:42:25 ? ... (0 Replies)
Discussion started by: goya
0 Replies
SoMouseButtonEvent(3)						       Coin						     SoMouseButtonEvent(3)

NAME
SoMouseButtonEvent - The SoMouseButtonEvent class contains information about mousebutton interaction. When the user presses any buttons on the mouse, these will be translated from a system specific event into a Coin event and sent to the scenegraph by using instances of this class. SYNOPSIS
#include <Inventor/events/SoMouseButtonEvent.h> Inherits SoButtonEvent. Public Types enum Button { ANY, BUTTON1, BUTTON2, BUTTON3, BUTTON4, BUTTON5 } Public Member Functions virtual SoType getTypeId (void) const SoMouseButtonEvent (void) virtual ~SoMouseButtonEvent () void setButton (Button button) Button getButton (void) const Static Public Member Functions static SoType getClassTypeId (void) static void initClass (void) static SbBool isButtonPressEvent (const SoEvent *e, Button whichButton) static SbBool isButtonReleaseEvent (const SoEvent *e, Button whichButton) static SbBool enumToString (Button enumval, SbString &stringrep) Detailed Description The SoMouseButtonEvent class contains information about mousebutton interaction. When the user presses any buttons on the mouse, these will be translated from a system specific event into a Coin event and sent to the scenegraph by using instances of this class. See also: SoEvent, SoButtonEvent, SoSpaceballButtonEvent, SoKeyboardEvent SoEventCallback, SoHandleEventAction Member Enumeration Documentation enum SoMouseButtonEvent::Button This enum contains all mouse buttons detected by Coin. Enumerator: ANY Unknown button. BUTTON1 First mouse button (usually the leftmost button). BUTTON2 Second mouse button (usually the middle button). BUTTON3 Third mouse button (usually the rightmost button). BUTTON4 Fourth mouse button (typically from a wheelmouse). This is not part of the original Open Inventor API. BUTTON5 Fifth mouse button (typically from a wheelmouse). This is not part of the original Open Inventor API. Constructor &; Destructor Documentation SoMouseButtonEvent::SoMouseButtonEvent (void) Constructor. SoMouseButtonEvent::~SoMouseButtonEvent () [virtual] Destructor. Member Function Documentation SoType SoMouseButtonEvent::getClassTypeId (void) [static] This static method returns the SoType object associated with objects of this class. Reimplemented from SoButtonEvent. SoType SoMouseButtonEvent::getTypeId (void) const [virtual] Returns the actual type id of an instantiated object. Reimplemented from SoButtonEvent. void SoMouseButtonEvent::initClass (void) [static] Initialize the type information data. Reimplemented from SoButtonEvent. void SoMouseButtonEvent::setButton (SoMouseButtonEvent::Buttonbuttonarg) Set the value of the button which the user interacted with. This method is used from the window specific device classes when translating events to the generic Coin library. See also: getButton() SoMouseButtonEvent::Button SoMouseButtonEvent::getButton (void) const Returns the value of the button which was pressed or released. See also: getState() wasShiftDown(), wasCtrlDown(), wasAltDown(), getPosition(), getTime() SbBool SoMouseButtonEvent::isButtonPressEvent (const SoEvent *e, SoMouseButtonEvent::ButtonwhichButton) [static] Convenience method for quickly checking if the given event is a press on the given button, whichButton. See also: isButtonReleaseEvent(), isOfType(), getButton(), getState() SbBool SoMouseButtonEvent::isButtonReleaseEvent (const SoEvent *e, SoMouseButtonEvent::ButtonwhichButton) [static] Convenience method for quickly checking if the given event is a release of the given button, whichButton. See also: isButtonPressEvent(), isOfType(), getButton(), getState() SbBool SoMouseButtonEvent::enumToString (Buttonenumval, SbString &stringrep) [static] Converts from an enum value of type SoMouseButtonEvent::Button to a string containing the enum symbol. This function is an extension for Coin, and it is not available in the original SGI Open Inventor v2.1 API. Since: Coin 3.0 Author Generated automatically by Doxygen for Coin from the source code. Version 3.1.3 Wed May 23 2012 SoMouseButtonEvent(3)
All times are GMT -4. The time now is 06:09 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy