diff data/model/SDLWidget.h @ 167:2ac52ea3c1c4

video mouse events are in SDL now. The code is really better now, but there is a display bug when you zoom in, zoom out
author benoitrigolleau
date Fri, 16 Nov 2007 15:18:44 +0000
parents f2d2c1084e7c
children
line wrap: on
line diff
--- a/data/model/SDLWidget.h	Fri Nov 16 13:17:55 2007 +0000
+++ b/data/model/SDLWidget.h	Fri Nov 16 15:18:44 2007 +0000
@@ -22,16 +22,13 @@
 	void setInitSize(int w, int h);
 
 signals:
-	void sizeChanged(int w, int h);
-	void zoomfactorChanged(float factor);
 	void initSizeChanged();
 
 public slots:
-  void setZoomFactor( float );
-  void wheelEvent( QWheelEvent* );
+  
 
 protected:
-	
+
 	bool windowInitialized;
 	SDL_Surface *screen;
 	int m_width;
@@ -42,8 +39,6 @@
 protected slots:
 		void updateMinSize();
 
-private:
-  float m_zoomFactor;
 };