]> git.xonotic.org Git - xonotic/netradiant.git/blobdiff - contrib/camera/listener.h
Purge gtk_container_add
[xonotic/netradiant.git] / contrib / camera / listener.h
index 13e14b715d0100b2c6b8d9a6945fa3c1a82b982a..13acd543b172334a3d50563f4573bc7719427373 100644 (file)
@@ -1,64 +1,73 @@
-/*\r
-Copyright (C) 1999-2007 id Software, Inc. and contributors.\r
-For a list of contributors, see the accompanying CONTRIBUTORS file.\r
-\r
-This file is part of GtkRadiant.\r
-\r
-GtkRadiant is free software; you can redistribute it and/or modify\r
-it under the terms of the GNU General Public License as published by\r
-the Free Software Foundation; either version 2 of the License, or\r
-(at your option) any later version.\r
-\r
-GtkRadiant is distributed in the hope that it will be useful,\r
-but WITHOUT ANY WARRANTY; without even the implied warranty of\r
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
-GNU General Public License for more details.\r
-\r
-You should have received a copy of the GNU General Public License\r
-along with GtkRadiant; if not, write to the Free Software\r
-Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA\r
-*/\r
-\r
-/*\r
-Camera plugin for GtkRadiant\r
-Copyright (C) 2002 Splash Damage Ltd.\r
-*/\r
-\r
-class CListener : public IWindowListener  \r
-{\r
-public:\r
-       bool OnMouseMove(guint32 nFlags, gdouble x, gdouble y);\r
-       bool OnLButtonDown(guint32 nFlags, gdouble x, gdouble y);\r
-       bool OnMButtonDown(guint32 nFlags, gdouble x, gdouble y);\r
-       bool OnRButtonDown(guint32 nFlags, gdouble x, gdouble y);\r
-       bool OnLButtonUp(guint32 nFlags, gdouble x, gdouble y);\r
-       bool OnMButtonUp(guint32 nFlags, gdouble x, gdouble y);\r
-       bool OnRButtonUp(guint32 nFlags, gdouble x, gdouble y);\r
-       bool OnKeyPressed(char *s) { return false; }\r
-       bool Paint() { return true; }\r
-       void Close() { }\r
-       \r
-       void UnRegister();\r
-       void Register();\r
-       CListener();\r
-       virtual ~CListener();\r
-\r
-       void IncRef() { refCount++; }\r
-       void DecRef() { refCount--; if (refCount <= 0) delete this; }\r
-\r
-  void SetViewType( VIEWTYPE vt ) { if( m_vt != vt ) oldValid = false; m_vt = vt; }\r
-\r
-private:\r
-  IXYWndWrapper *g_pXYWndWrapper;\r
-\r
-       bool m_bHooked;\r
-       int refCount;\r
-  VIEWTYPE m_vt;\r
-\r
-  // mouse button status\r
-  bool m_bLeftMBPressed, m_bRightMBPressed, m_bMiddleMBPressed;\r
-\r
-  // old mouse coordinates\r
-  bool oldValid;\r
-  gdouble old_x, old_y;\r
-};\r
+/*
+   Copyright (C) 1999-2006 Id Software, Inc. and contributors.
+   For a list of contributors, see the accompanying CONTRIBUTORS file.
+
+   This file is part of GtkRadiant.
+
+   GtkRadiant is free software; you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 2 of the License, or
+   (at your option) any later version.
+
+   GtkRadiant is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+
+   You should have received a copy of the GNU General Public License
+   along with GtkRadiant; if not, write to the Free Software
+   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
+ */
+
+/*
+   Camera plugin for GtkRadiant
+   Copyright (C) 2002 Splash Damage Ltd.
+ */
+
+class CListener : public IWindowListener
+{
+public:
+bool OnMouseMove( guint32 nFlags, gdouble x, gdouble y );
+bool OnLButtonDown( guint32 nFlags, gdouble x, gdouble y );
+bool OnMButtonDown( guint32 nFlags, gdouble x, gdouble y );
+bool OnRButtonDown( guint32 nFlags, gdouble x, gdouble y );
+bool OnLButtonUp( guint32 nFlags, gdouble x, gdouble y );
+bool OnMButtonUp( guint32 nFlags, gdouble x, gdouble y );
+bool OnRButtonUp( guint32 nFlags, gdouble x, gdouble y );
+bool OnKeyPressed( char *s ) { return false; }
+bool Paint() { return true; }
+void Close() { }
+
+void UnRegister();
+void Register();
+CListener();
+virtual ~CListener();
+
+void IncRef() { refCount++; }
+void DecRef() {
+       refCount--; if ( refCount <= 0 ) {
+               delete this;
+       }
+}
+
+void SetViewType( VIEWTYPE vt ) {
+       if ( m_vt != vt ) {
+               oldValid = false;
+       }
+       m_vt = vt;
+}
+
+private:
+IXYWndWrapper *g_pXYWndWrapper;
+
+bool m_bHooked;
+int refCount;
+VIEWTYPE m_vt;
+
+// mouse button status
+bool m_bLeftMBPressed, m_bRightMBPressed, m_bMiddleMBPressed;
+
+// old mouse coordinates
+bool oldValid;
+gdouble old_x, old_y;
+};