From dcbaaf5bb09caf07f27c03f3c3db196542668b4a Mon Sep 17 00:00:00 2001 From: Ludovic Pouzenc Date: Sun, 3 Mar 2013 13:56:50 +0000 Subject: Standardisation des extensions. Avancee sur l'initialisation des VBO mais je galere a trouver un (bon) moyen de charger les fonctions OpenGL qui vont bien. git-svn-id: file:///var/svn/2013-gpudataviz/trunk@17 371a6b4a-a258-45f8-9dcc-bdd82ce0ac9d --- src/my_gtk_gl_scene_widget.h | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 src/my_gtk_gl_scene_widget.h (limited to 'src/my_gtk_gl_scene_widget.h') diff --git a/src/my_gtk_gl_scene_widget.h b/src/my_gtk_gl_scene_widget.h deleted file mode 100644 index bf156ab..0000000 --- a/src/my_gtk_gl_scene_widget.h +++ /dev/null @@ -1,29 +0,0 @@ -#ifndef MY_GTK_GL_SCENE_H -#define MY_GTK_GL_SCENE_H - -#include "gtk_includes.h" - -// Class that will contain all the OpenGL logic for displaying the OpenCL computed data -// Implementation is kept in gpudataviz.cc (I want to keep interesting code part in this file) - -class MyGTKGLSceneWidget : public Gtk::DrawingArea, public Gtk::GL::Widget -{ - public: - MyGTKGLSceneWidget(Glib::RefPtr &glconfig); - virtual ~MyGTKGLSceneWidget(); - - protected: - virtual void on_size_request(Gtk::Requisition* requisition); - virtual void on_realize(); - virtual bool on_configure_event(GdkEventConfigure* event); - virtual bool on_expose_event(GdkEventExpose* event); - virtual bool on_motion_notify_event (GdkEventMotion *event); - virtual bool on_button_press_event(GdkEventButton *event); - virtual bool on_button_release_event(GdkEventButton *event); - - bool do_mouse_logic(GdkEventType type, guint state, guint x, guint y); - private: - struct camera_params { float rx; float ry; float tz; } camera; -}; - -#endif /*MY_GTK_GL_SCENE_H*/ -- cgit v1.2.3