Unix and Linux Discussions Tagged with box |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
1 |
2,405 |
UNIX for Beginners Questions & Answers |
|
|
|
33 |
10,371 |
Solaris |
|
|
|
1 |
5,304 |
Red Hat |
|
|
|
2 |
2,576 |
Shell Programming and Scripting |
|
|
|
0 |
2,192 |
UNIX for Dummies Questions & Answers |
|
|
|
5 |
4,006 |
UNIX for Dummies Questions & Answers |
|
|
|
4 |
4,239 |
Programming |
|
|
|
0 |
682 |
Software Releases - RSS News |
|
|
|
0 |
826 |
Software Releases - RSS News |
|
|
|
0 |
1,459 |
UNIX and Linux RSS News |
|
|
|
3 |
8,639 |
HP-UX |
|
|
|
4 |
3,359 |
Debian |
|
|
|
2 |
1,734 |
UNIX for Dummies Questions & Answers |
|
|
|
0 |
775 |
Software Releases - RSS News |
|
|
|
3 |
3,258 |
Linux |
|
|
|
0 |
1,412 |
UNIX and Linux RSS News |
|
|
|
0 |
1,931 |
UNIX and Linux RSS News |
|
|
|
0 |
656 |
Software Releases - RSS News |
|
|
|
0 |
697 |
Software Releases - RSS News |
|
|
|
1 |
2,206 |
Solaris |
|
|
|
0 |
1,060 |
Software Releases - RSS News |
|
|
|
1 |
2,747 |
Solaris |
|
|
|
1 |
4,065 |
HP-UX |
|
|
|
6 |
31,034 |
IP Networking |
|
|
|
0 |
734 |
Software Releases - RSS News |
|
|
|
0 |
815 |
Software Releases - RSS News |
|
|
|
0 |
1,036 |
Software Releases - RSS News |
|
|
|
0 |
947 |
UNIX and Linux RSS News |
|
|
|
7 |
84,375 |
Solaris |
|
|
|
4 |
11,070 |
UNIX for Dummies Questions & Answers |
|
|
|
0 |
1,863 |
UNIX and Linux RSS News |
|
|
|
0 |
1,464 |
Complex Event Processing RSS News |
|
|
|
0 |
903 |
Software Releases - RSS News |
|
|
|
0 |
815 |
Software Releases - RSS News |
|
|
|
0 |
1,001 |
Software Releases - RSS News |
|
|
|
9 |
37,221 |
UNIX for Advanced & Expert Users |
|
|
|
2 |
6,346 |
Filesystems, Disks and Memory |
|
|
|
1 |
3,836 |
UNIX Desktop Questions & Answers |
|
|
|
1 |
5,202 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
2,733 |
UNIX for Advanced & Expert Users |
glutButtonBoxFunc(3GLUT) GLUT glutButtonBoxFunc(3GLUT)
NAME
glutButtonBoxFunc - sets the dial & button box button callback for the current window.
SYNTAX
#include <GLUT/glut.h>
void glutButtonBoxFunc(void (*func)(int button, int state));
ARGUMENTS
func The new button box callback function.
DESCRIPTION
glutButtonBoxFunc sets the dial & button box button callback for the current window. The dial & button box button callback for a window is
called when the window has dial & button box input focus (normally, when the mouse is in the window) and the user generates dial & button
box button presses. The button parameter will be the button number (starting at one). The number of available dial & button box buttons can
be determined with glutDeviceGet(GLUT_NUM_BUTTON_BOX_BUTTONS). The state is either GLUT_UP or GLUT_DOWN indicating whether the callback was
due to a release or press respectively.
Registering a dial & button box button callback when a dial & button box device is not available is ineffectual and not an error. In this
case, no dial & button box button callbacks will be generated.
Passing NULL to glutButtonBoxFunc disables the generation of dial & button box button callbacks. When a new window is created, no dial &
button box button callback is initially registered.
SEE ALSO
glutDialsFunc, glutDeviceGet, glutSpaceballButtonFunc, glutTabletButtonFunc
AUTHOR
Mark J. Kilgard (mjk@nvidia.com)
GLUT
3.7 glutButtonBoxFunc(3GLUT)