Sponsored Content
Full Discussion: Keyboard vs mouse
The Lounge What is on Your Mind? Keyboard vs mouse Post 302210569 by Perderabo on Tuesday 1st of July 2008 09:13:31 AM
Old 07-01-2008
This thread and poll assumes that a mouse is even available. This century I have tended to use notebooks/laptops which have a touchpad and funny little joystick thingie embedded in the keyboard. I also have a cool keyboard with a roller ball... it works great, unlike those stupid roller ball based mice (mouses?). I don't have a touch screen any more and it's been a long time since I've seen a lightpen, but I'll bet that there other options.

Actually, I have heard about a mouse-like thing that you just wave through the air. Via internal gyros, it figures out what you want to do. Has anyone used that thing yet?

Last edited by Perderabo; 07-01-2008 at 02:54 PM.. Reason: Omitted a key word....
 

9 More Discussions You Might Find Interesting

1. HP-UX

HP-UX 11.11: X doesn't recognize mouse and keyboard

hi folks, i've got a blank hp visualize C3000 workstation and installed HP-UX 11.11. When I want to start X, I get the following error message: # X Fatal server error: Couldn't open X pointer device! Is one attached? I've connected an mouse and a keyboard with an usb/ps2 connector.... (5 Replies)
Discussion started by: grisu
5 Replies

2. What is on Your Mind?

mouse/keyboard wrist lesions.

Anyone ever had any problem related to wrist lesions caused by keyboard or mouse? Tendinitis? Tenosynovitis? How long it lasted? How did it go away? (3 Replies)
Discussion started by: redoubtable
3 Replies

3. AIX

keyboard and mouse not working in graphical login

Dear frnz I face a weird issue with p275 workstation with Aix 5.1 After booting the workstation i am getting dt login screen and i am not able to key in user name and passwd .The mouse pointer is moving but the mouse buttons doesnt work. i am able to login through rsh to the machine... (1 Reply)
Discussion started by: sriram.s
1 Replies

4. Solaris

Solaris don't boot without mouse and keyboard

Hi guys, I've installed Solaris 10 (SunOS 5.10) in a x86 box. I will put this box as a home server to store my files/backups/whatterver shared stuff replacing my old NetBSD machine. But, after installed and correctly configured, when I tried to boot this box without keybord and mouse (USB both),... (4 Replies)
Discussion started by: Timmerman
4 Replies

5. UNIX for Advanced & Expert Users

Check keyboard and mouse activity

I need help from someone that is good at making scripts. I'm trying to make a script file that checks for keyboard and mouse activity during 1 am to 8 am and logs you off if it detects activity. I can't find anything useful in google. ---------- Post updated 06-30-10 at 12:33 AM ----------... (1 Reply)
Discussion started by: cokedude
1 Replies

6. SCO

X Server -> keyboard and mouse are freezing

hi I've configured X Server using Video Configuration Manager on SCO 5.0.6, but the keyboard and mouse are freezing after 5 minutes on the graphical login mask. ---------- Post updated at 01:59 PM ---------- Previous update was at 02:43 AM ---------- BTW I finished the configuration,... (2 Replies)
Discussion started by: ccc
2 Replies

7. AIX

Keyboard Mouse Display not working with Pseries

Hello, Just got a refurbished Pseries when I boot the machine , everything is okay, that is no attention light and panel shows 01 B N but there is nothing on the display ( monitor / console ) which is plugged into the video card port of pseries. The display is empty.... The keyboard... (3 Replies)
Discussion started by: filosophizer
3 Replies

8. UNIX for Dummies Questions & Answers

Strange Keyboard and Mouse Issue

Hello All, PC: CuBox-i (*i.MX6) Mini-PC OS: openSUSE 13.1 (Bottle) (armv7hl) Kernel: 3.14.14-cubox-i # uname -a Linux CuBox-HQ 3.14.14-cubox-i #1 SMP Sat Sep 13 03:48:24 UTC 2014 armv7l armv7l armv7l GNU/LinuxSo I've been having this random issue happen on this PC where a few strange... (12 Replies)
Discussion started by: mrm5102
12 Replies

9. Shell Programming and Scripting

Run command if no mouse or keyboard input

I would like a script that would run pm-suspend if there has been no keyboard or mouse input for a specified time. ------ Post updated at 11:17 AM ------ Never mind. I found a setting in power management that does what I need. (0 Replies)
Discussion started by: drew77
0 Replies
glutDeviceGet(3GLUT)						       GLUT						      glutDeviceGet(3GLUT)

NAME
glutDeviceGet - retrieves GLUT device information represented by integers. SYNTAX
#include <GLUT/glut.h> int glutDeviceGet(GLenum info); ARGUMENTS
info Name of device information to retrieve. GLUT_HAS_KEYBOARD Non-zero if a keyboard is available; zero if not available. For most GLUT implementations, a keyboard can be assumed. GLUT_HAS_MOUSE Non-zero if a mouse is available; zero if not available. For most GLUT implementations, a keyboard can be assumed. GLUT_HAS_SPACEBALL Non-zero if a Spaceball is available; zero if not available. GLUT_HAS_DIAL_AND_BUTTON_BOX Non-zero if a dial & button box is available; zero if not available. GLUT_HAS_TABLET Non-zero if a tablet is available; zero if not available. GLUT_NUM_MOUSE_BUTTONS Number of buttons supported by the mouse. If no mouse is supported, zero is returned. GLUT_NUM_SPACEBALL_BUTTONS Number of buttons supported by the Spaceball. If no Spaceball is supported, zero is returned. GLUT_NUM_BUTTON_BOX_BUTTONS Number of buttons supported by the dial & button box device. If no dials & button box device is supported, zero is returned. GLUT_NUM_DIALS Number of dials supported by the dial & button box device. If no dials & button box device is supported, zero is returned. GLUT_NUM_TABLET_BUTTONS Number of buttons supported by the tablet. If no tablet is supported, zero is returned. GLUT_DEVICE_IGNORE_KEY_REPEAT Returns true if the current window's auto repeated keys are ignored. This state is controlled by glutIgnoreKeyRepeat. GLUT_DEVICE_KEY_REPEAT The window system's global key repeat state. Returns either GLUT_KEY_REPEAT_OFF, GLUT_KEY_REPEAT_ON, or GLUT_KEY_REPEAT_DEFAULT. This will not necessarily return the value last passed to glutSetKeyRepeat. GLUT_JOYSTICK_POLL_RATE Returns the current window's joystick poll rate as set by glutJoystickFunc. If no joystick is supported, the poll rate will always be zero. The joystick poll rate also returns zero if the poll rate last specified to glutJoystickFunc is negative or a NULL call- back was registered. GLUT_HAS_JOYSTICK Non-zero if a joystick is available; zero if not available. GLUT_JOYSTICK_BUTTONS Number of buttons supported by the joystick. If no joystick is supported, zero is returned. GLUT_JOYSTICK_AXES Number of axes supported by the joystick. If no joystick is supposrted, zero is returned. DESCRIPTION
glutDeviceGet retrieves GLUT device information represented by integers. The info parameter determines what type of device information to return. Requesting device information for an invalid GLUT device information name returns negative one. X IMPLEMENTATION NOTES
The current implementation uses to X Input extension to regonize SGI's Spaceball, tablet, and dial and button box devices. WIN32 IMPLEMENTATION NOTES The GLUT_DEVICE_KEY_REPEAT alwasy returns GLUT_KEY_REPEAT_ON. SEE ALSO
glutGet, glutKeyboardFunc, glutMouseFunc, glutSpaceballMotion, glutTabletMotionFunc, glutTabletButtonFunc, glutDialsFunc, glutButtonBox- Func, glutIgnoreKeyRepeat, glutSetKeyRepeat, glutJoystickFunc AUTHOR
Mark J. Kilgard (mjk@nvidia.com) GLUT
3.7 glutDeviceGet(3GLUT)
All times are GMT -4. The time now is 10:29 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy