~ubuntu-branches/ubuntu/warty/gtklookat/warty

« back to all changes in this revision

Viewing changes to src/ViewerGtk.h

  • Committer: Bazaar Package Importer
  • Author(s): Sam Hocevar (Debian packages)
  • Date: 2003-10-21 14:06:39 UTC
  • Revision ID: james.westby@ubuntu.com-20031021140639-ax8f7yd7p46631ep
Tags: upstream-0.13.0
ImportĀ upstreamĀ versionĀ 0.13.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// GTK Viewer for Vrml 97 library
 
2
//
 
3
// Copyright (C) 1998 by Erik Andersen <andersee@debian.org>
 
4
//
 
5
// This program is free software; you can redistribute it and/or modify
 
6
// it under the terms of the GNU General Public License as published by
 
7
// the Free Software Foundation; either version 2 of the License, or
 
8
// (at your option) any later version.
 
9
//
 
10
// This program is distributed in the hope that it will be useful,
 
11
// but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 
13
// General Public License for more details.
 
14
//
 
15
// You should have received a copy of the GNU General Public License
 
16
// along with this program; if not, write to the Free Software
 
17
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 
18
 
 
19
#ifndef VIEWERGTK_H
 
20
#define VIEWERGTK_H
 
21
 
 
22
#include <OpenVRML/GL/ViewerOpenGL.h>
 
23
#include <gtk/gtk.h>
 
24
#include <gtkgl/gtkglarea.h>
 
25
 
 
26
namespace OpenVRML {
 
27
 
 
28
class ViewerGtk : public GL::ViewerOpenGL {
 
29
 
 
30
public:
 
31
 
 
32
  // Create a named OpenGL drawing area widget
 
33
  ViewerGtk(Browser&, const char*, GtkWidget* parent);
 
34
  virtual ~ViewerGtk();
 
35
 
 
36
  // public so the callback functions can access them
 
37
  void timerUpdate();
 
38
  void handleInput( ViewerOpenGL::EventInfo *e );
 
39
  void handleRedraw();
 
40
  void handleResize(int w, int h);
 
41
  void handleDestroy();
 
42
  void SetStop( bool state);
 
43
 
 
44
protected:
 
45
 
 
46
  // Window system specific methods
 
47
 
 
48
  virtual void wsPostRedraw();
 
49
  virtual void wsSetCursor( CursorStyle c);
 
50
  virtual void wsSwapBuffers();
 
51
  virtual void wsSetTimer( double );
 
52
 
 
53
private:
 
54
  void createWidget( GtkWidget *parent );
 
55
 
 
56
  guint d_timer;
 
57
  bool d_Stop;
 
58
  bool d_redrawNeeded;
 
59
  GtkWidget* d_glarea;
 
60
 
 
61
};
 
62
 
 
63
}  // end namespace OpenVRML
 
64
 
 
65
#endif // VIEWERGTK_H
 
66
 
 
67