glui_window.cpp
上传用户:gb3593
上传日期:2022-01-07
资源大小:3028k
文件大小:1k
源码类别:

游戏引擎

开发平台:

Visual C++

  1. /*
  2.   glui_window.cpp - GLUI_Button control class
  3.   GLUI User Interface Toolkit (LGPL)
  4.   Copyright (c) 1998 Paul Rademacher
  5.   WWW:    http://sourceforge.net/projects/glui/
  6.   Forums: http://sourceforge.net/forum/?group_id=92496
  7.   This library is free software; you can redistribute it and/or
  8.   modify it under the terms of the GNU Lesser General Public
  9.   License as published by the Free Software Foundation; either
  10.   version 2.1 of the License, or (at your option) any later version.
  11.   This library is distributed in the hope that it will be useful,
  12.   but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  14.   Lesser General Public License for more details.
  15.   You should have received a copy of the GNU Lesser General Public
  16.   License along with this library; if not, write to the Free Software
  17.   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  18. */
  19. #include "GL/glui.h"
  20. #include "glui_internal.h"
  21. GLUI_Glut_Window::GLUI_Glut_Window()
  22. :   GLUI_Node(),
  23. glut_window_id(0),
  24. glut_keyboard_CB(NULL),
  25. glut_special_CB(NULL),
  26. glut_reshape_CB(NULL),
  27. glut_passive_motion_CB(NULL),
  28. glut_mouse_CB(NULL),
  29. glut_visibility_CB(NULL),
  30. glut_motion_CB(NULL),
  31. glut_display_CB(NULL),
  32. glut_entry_CB(NULL)
  33. {
  34. }