mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-25 14:48:12 +02:00
147 lines
3.1 KiB
C++
147 lines
3.1 KiB
C++
|
|
/***********************************************************
|
||
|
|
* Copyright (C) 1997, Be Inc. All rights reserved.
|
||
|
|
*
|
||
|
|
* FILE: glutCallback.cpp
|
||
|
|
*
|
||
|
|
* DESCRIPTION: put all the callback setting routines in
|
||
|
|
* one place
|
||
|
|
***********************************************************/
|
||
|
|
|
||
|
|
/***********************************************************
|
||
|
|
* Headers
|
||
|
|
***********************************************************/
|
||
|
|
#include <GL/glut.h>
|
||
|
|
#include "glutint.h"
|
||
|
|
#include "glutState.h"
|
||
|
|
|
||
|
|
/***********************************************************
|
||
|
|
* Window related callbacks
|
||
|
|
***********************************************************/
|
||
|
|
void APIENTRY
|
||
|
|
glutDisplayFunc(GLUTdisplayCB displayFunc)
|
||
|
|
{
|
||
|
|
/* XXX Remove the warning after GLUT 3.0. */
|
||
|
|
if (!displayFunc)
|
||
|
|
__glutFatalError("NULL display callback not allowed in GLUT 3.0; update your code.");
|
||
|
|
gState.currentWindow->display = displayFunc;
|
||
|
|
}
|
||
|
|
|
||
|
|
void APIENTRY
|
||
|
|
glutKeyboardFunc(GLUTkeyboardCB keyboardFunc)
|
||
|
|
{
|
||
|
|
gState.currentWindow->keyboard = keyboardFunc;
|
||
|
|
}
|
||
|
|
|
||
|
|
void APIENTRY
|
||
|
|
glutSpecialFunc(GLUTspecialCB specialFunc)
|
||
|
|
{
|
||
|
|
gState.currentWindow->special = specialFunc;
|
||
|
|
}
|
||
|
|
|
||
|
|
void APIENTRY
|
||
|
|
glutMouseFunc(GLUTmouseCB mouseFunc)
|
||
|
|
{
|
||
|
|
gState.currentWindow->mouse = mouseFunc;
|
||
|
|
}
|
||
|
|
|
||
|
|
void APIENTRY
|
||
|
|
glutMotionFunc(GLUTmotionCB motionFunc)
|
||
|
|
{
|
||
|
|
gState.currentWindow->motion = motionFunc;
|
||
|
|
}
|
||
|
|
|
||
|
|
void APIENTRY
|
||
|
|
glutPassiveMotionFunc(GLUTpassiveCB passiveMotionFunc)
|
||
|
|
{
|
||
|
|
gState.currentWindow->passive = passiveMotionFunc;
|
||
|
|
}
|
||
|
|
|
||
|
|
void APIENTRY
|
||
|
|
glutEntryFunc(GLUTentryCB entryFunc)
|
||
|
|
{
|
||
|
|
gState.currentWindow->entry = entryFunc;
|
||
|
|
if (!entryFunc) {
|
||
|
|
gState.currentWindow->entryState = -1;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
void APIENTRY
|
||
|
|
glutVisibilityFunc(GLUTvisibilityCB visibilityFunc)
|
||
|
|
{
|
||
|
|
gState.currentWindow->visibility = visibilityFunc;
|
||
|
|
}
|
||
|
|
|
||
|
|
void APIENTRY
|
||
|
|
glutReshapeFunc(GLUTreshapeCB reshapeFunc)
|
||
|
|
{
|
||
|
|
if (reshapeFunc) {
|
||
|
|
gState.currentWindow->reshape = reshapeFunc;
|
||
|
|
} else {
|
||
|
|
gState.currentWindow->reshape = __glutDefaultReshape;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
/***********************************************************
|
||
|
|
* General callbacks (timer callback in glutEvent.cpp)
|
||
|
|
***********************************************************/
|
||
|
|
/* DEPRICATED, use glutMenuStatusFunc instead. */
|
||
|
|
void APIENTRY
|
||
|
|
glutMenuStateFunc(GLUTmenuStateCB menuStateFunc)
|
||
|
|
{
|
||
|
|
gState.menuStatus = (GLUTmenuStatusCB) menuStateFunc;
|
||
|
|
}
|
||
|
|
|
||
|
|
void APIENTRY
|
||
|
|
glutMenuStatusFunc(GLUTmenuStatusCB menuStatusFunc)
|
||
|
|
{
|
||
|
|
gState.menuStatus = menuStatusFunc;
|
||
|
|
}
|
||
|
|
|
||
|
|
void APIENTRY
|
||
|
|
glutIdleFunc(GLUTidleCB idleFunc)
|
||
|
|
{
|
||
|
|
gState.idle = idleFunc;
|
||
|
|
}
|
||
|
|
|
||
|
|
/***********************************************************
|
||
|
|
* Unsupported callbacks
|
||
|
|
***********************************************************/
|
||
|
|
void APIENTRY
|
||
|
|
glutOverlayDisplayFunc(GLUTdisplayCB displayFunc)
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
void APIENTRY
|
||
|
|
glutSpaceballMotionFunc(GLUTspaceMotionCB spaceMotionFunc)
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
void APIENTRY
|
||
|
|
glutSpaceballRotateFunc(GLUTspaceRotateCB spaceRotateFunc)
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
void APIENTRY
|
||
|
|
glutSpaceballButtonFunc(GLUTspaceButtonCB spaceButtonFunc)
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
void APIENTRY
|
||
|
|
glutButtonBoxFunc(GLUTbuttonBoxCB buttonBoxFunc)
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
void APIENTRY
|
||
|
|
glutDialsFunc(GLUTdialsCB dialsFunc)
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
void APIENTRY
|
||
|
|
glutTabletMotionFunc(GLUTtabletMotionCB tabletMotionFunc)
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
void APIENTRY
|
||
|
|
glutTabletButtonFunc(GLUTtabletButtonCB tabletButtonFunc)
|
||
|
|
{
|
||
|
|
}
|