~ubuntu-branches/ubuntu/vivid/emscripten/vivid

« back to all changes in this revision

Viewing changes to tests/bullet/Extras/glui/glui_window.cpp

  • Committer: Package Import Robot
  • Author(s): Sylvestre Ledru
  • Date: 2013-05-02 13:11:51 UTC
  • Revision ID: package-import@ubuntu.com-20130502131151-q8dvteqr1ef2x7xz
Tags: upstream-1.4.1~20130504~adb56cb
ImportĀ upstreamĀ versionĀ 1.4.1~20130504~adb56cb

Show diffs side-by-side

added added

removed removed

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