Sponsored Content
Full Discussion: Sun Ray Mouse Scroll Wheel
Top Forums UNIX for Dummies Questions & Answers Sun Ray Mouse Scroll Wheel Post 302919027 by nite2viper on Friday 26th of September 2014 10:19:21 PM
Old 09-26-2014
Sun Ray Mouse Scroll Wheel

Have a user on a Solaris 10 sunray CDE environment her mouse wheel will not scroll up or down in windows it will paste but not scroll. Other users logged into sunray have no issues with mouse wheel. Any ideas on what the fix could be?

ThanksSmilie

---------- Post updated at 08:19 PM ---------- Previous update was at 07:29 PM ----------

I found fix

vi $HOME/.dt/sessions/current/dt.settings

change ButtonMap 1,2,3,0,0 to 1,2,3,4,5 Smilie

could also be in $HOME/.dt/sessions/home/dt.settings
This User Gave Thanks to nite2viper For This Post:
 

7 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

wheel Mouse

Hi Everyone, Just a short question. I have SuSe linux 7.1 and need configure my logitech wheel mouse. My left and right mouse button works but not the wheel. Does anyone have any Ideas??? Thanks Peter (1 Reply)
Discussion started by: Peterh
1 Replies

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

3. UNIX for Dummies Questions & Answers

How to get the mouse wheel to work without root privilege

Hi, I use a nomachine terminal to access KDE desktop(redhat linux enterprise) on a server. Is there any way to get the mouse wheel to work without root privilege ? I have a usb mouse connected to a nomachine terminal,most likely the mouse wheel problem is not the problem of nomachine, but... (1 Reply)
Discussion started by: grossgermany
1 Replies

4. Solaris

Sun Ray 3

Hi All, I going to install Sun Ray 3 and X4170 with sol 10 and VDI 3.2. I don't know how to do it because I don't have any idea on VDI and Sun Ray 3. Can all the guru here provide some info or theory on the whole idea for this kind of installation and maybe some steps. I now have 2 servers... (1 Reply)
Discussion started by: mailbox80
1 Replies

5. Solaris

Sun Ray Smart Cards

I had instructions on linking 2 smart cards to one user, Does anyone remember any website on this or have instructions I lost mine :( it was basically used for leaving one card at work and one at home so they can use both to pull up same session. (1 Reply)
Discussion started by: nite2viper
1 Replies

6. Solaris

Sun Ray Install 5.4.5 on Solaris 11.3

I had an issue installing Sun Ray Server 5.4.5 on Solaris 11.3, and was unable to find an answer. However, I was able to noodle through it and got things running. So, for the benefit of the few that might be interested, here are the issues regarding installation of Sun Ray Server 5.4.5 on... (0 Replies)
Discussion started by: apljavaman
0 Replies

7. Hardware

Sun Ray 1g thin client Software?

Hello! I acquired a Sun Ray 1g thin client and i want to connect it to my Linux machine but i m having some difficulty finding software for it (sun ray server). After some recearch i fount that the software can be downloaded from Oracle ,but only if i have support for it ,which i dont :p.Also i... (2 Replies)
Discussion started by: kotseman
2 Replies
QWheelEvent(3qt)														  QWheelEvent(3qt)

NAME
QWheelEvent - Parameters that describe a wheel event SYNOPSIS
#include <qevent.h> Inherits QEvent. Public Members QWheelEvent ( const QPoint & pos, int delta, int state, Orientation orient = Vertical ) QWheelEvent ( const QPoint & pos, const QPoint & globalPos, int delta, int state, Orientation orient = Vertical ) int delta () const const QPoint & pos () const const QPoint & globalPos () const int x () const int y () const int globalX () const int globalY () const ButtonState state () const Orientation orientation () const bool isAccepted () const void accept () void ignore () DESCRIPTION
The QWheelEvent class contains parameters that describe a wheel event. Wheel events are sent to the widget under the mouse, and if that widget does not handle the event they are sent to the focus widget. The rotation distance is provided by delta(). The functions pos() and globalPos() return the mouse pointer location at the time of the event. A wheel event contains a special accept flag that indicates whether the receiver wants the event. You should call QWheelEvent::accept() if you handle the wheel event; otherwise it will be sent to the parent widget. The QWidget::setEnable() function can be used to enable or disable mouse and keyboard events for a widget. The event handler QWidget::wheelEvent() receives wheel events. See also QMouseEvent, QWidget::grabMouse(), and Event Classes. MEMBER FUNCTION DOCUMENTATION
QWheelEvent::QWheelEvent ( const QPoint & pos, int delta, int state, Orientation orient = Vertical ) Constructs a wheel event object. The globalPos() is initialized to QCursor::pos(), i.e. pos, which is usually (but not always) right. Use the other constructor if you need to specify the global position explicitly. delta contains the rotation distance, state holds the keyboard modifier flags at the time of the event and orient holds the wheel's orientation. See also pos(), delta(), and state(). QWheelEvent::QWheelEvent ( const QPoint & pos, const QPoint & globalPos, int delta, int state, Orientation orient = Vertical ) Constructs a wheel event object. The position when the event occurred is given in pos and globalPos. delta contains the rotation distance, state holds the keyboard modifier flags at the time of the event and orient holds the wheel's orientation. See also pos(), globalPos(), delta(), and state(). void QWheelEvent::accept () Sets the accept flag of the wheel event object. Setting the accept parameter indicates that the receiver of the event wants the wheel event. Unwanted wheel events are sent to the parent widget. The accept flag is set by default. See also ignore(). int QWheelEvent::delta () const Returns the distance that the wheel is rotated expressed in multiples or divisions of the wheel delta, which is currently defined to be 120. A positive value indicates that the wheel was rotated forwards away from the user; a negative value indicates that the wheel was rotated backwards toward the user. The wheel delta constant was defined to be 120 by wheel mouse vendors to allow building finer-resolution wheels in the future, including perhaps a freely rotating wheel with no notches. The expectation is that such a device would send more messages per rotation but with a smaller value in each message. const QPoint &; QWheelEvent::globalPos () const Returns the global position of the mouse pointer at the time of the event. This is important on asynchronous window systems such as X11; whenever you move your widgets around in response to mouse events, globalPos() can differ a lot from the current pointer position QCursor::pos(). See also globalX() and globalY(). int QWheelEvent::globalX () const Returns the global x-position of the mouse pointer at the time of the event. See also globalY() and globalPos(). int QWheelEvent::globalY () const Returns the global y-position of the mouse pointer at the time of the event. See also globalX() and globalPos(). void QWheelEvent::ignore () Clears the accept flag parameter of the wheel event object. Clearing the accept parameter indicates that the event receiver does not want the wheel event. Unwanted wheel events are sent to the parent widget. The accept flag is set by default. See also accept(). bool QWheelEvent::isAccepted () const Returns TRUE if the receiver of the event handles the wheel event; otherwise returns FALSE. Orientation QWheelEvent::orientation () const Returns the wheel's orientation. const QPoint &; QWheelEvent::pos () const Returns the position of the mouse pointer, relative to the widget that received the event. If you move your widgets around in response to mouse events, use globalPos() instead of this function. See also x(), y(), and globalPos(). ButtonState QWheelEvent::state () const Returns the keyboard modifier flags of the event. The returned value is ShiftButton, ControlButton, and AltButton OR'ed together. int QWheelEvent::x () const Returns the x-position of the mouse pointer, relative to the widget that received the event. See also y() and pos(). int QWheelEvent::y () const Returns the y-position of the mouse pointer, relative to the widget that received the event. See also x() and pos(). SEE ALSO
http://doc.trolltech.com/qwheelevent.html http://www.trolltech.com/faq/tech.html COPYRIGHT
Copyright 1992-2007 Trolltech ASA, http://www.trolltech.com. See the license file included in the distribution for a complete license statement. AUTHOR
Generated automatically from the source code. BUGS
If you find a bug in Qt, please report it as described in http://doc.trolltech.com/bughowto.html. Good bug reports help us to help you. Thank you. The definitive Qt documentation is provided in HTML format; it is located at $QTDIR/doc/html and can be read using Qt Assistant or with a web browser. This man page is provided as a convenience for those users who prefer man pages, although this format is not officially supported by Trolltech. If you find errors in this manual page, please report them to qt-bugs@trolltech.com. Please include the name of the manual page (qwheelevent.3qt) and the Qt version (3.3.8). Trolltech AS 2 February 2007 QWheelEvent(3qt)
All times are GMT -4. The time now is 08:20 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy