Remove .gitignore do nothing is ignored.
[synfig.git] / synfig-studio / trunk / src / gtkmm / event_mouse.h
index ac35d30..106f8aa 100644 (file)
@@ -1,32 +1,33 @@
-/* === S I N F G =========================================================== */
+/* === S Y N F I G ========================================================= */
 /*!    \file event_mouse.h
 **     \brief Template Header
 **
-**     $Id: event_mouse.h,v 1.1.1.1 2005/01/07 03:34:36 darco Exp $
+**     $Id$
 **
 **     \legal
-**     Copyright (c) 2002 Robert B. Quattlebaum Jr.
+**     Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
 **
-**     This software and associated documentation
-**     are CONFIDENTIAL and PROPRIETARY property of
-**     the above-mentioned copyright holder.
+**     This package 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.
 **
-**     You may not copy, print, publish, or in any
-**     other way distribute this software without
-**     a prior written agreement with
-**     the copyright holder.
+**     This package 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.
 **     \endlegal
 */
 /* ========================================================================= */
 
 /* === S T A R T =========================================================== */
 
-#ifndef __SINFG_EVENT_MOUSE_H
-#define __SINFG_EVENT_MOUSE_H
+#ifndef __SYNFIG_EVENT_MOUSE_H
+#define __SYNFIG_EVENT_MOUSE_H
 
 /* === H E A D E R S ======================================================= */
 
-#include <sinfg/vector.h>
+#include <synfig/vector.h>
 #include "smach.h"
 #include <gdkmm/types.h>
 
@@ -46,18 +47,18 @@ enum MouseButton
        BUTTON_RIGHT,
        BUTTON_UP,
        BUTTON_DOWN,
-       
+
        BUTTON_END
 };
 
 struct EventMouse : public Smach::event
 {
-       sinfg::Point pos;
+       synfig::Point pos;
        MouseButton button;
        float pressure;
        Gdk::ModifierType modifier;
-       
-       EventMouse(EventKey id, MouseButton button, const sinfg::Point& pos, Gdk::ModifierType modifier=Gdk::ModifierType(0)):
+
+       EventMouse(EventKey id, MouseButton button, const synfig::Point& pos, Gdk::ModifierType modifier=Gdk::ModifierType(0)):
                Smach::event(id),
                pos(pos),
                button(button),
@@ -65,7 +66,7 @@ struct EventMouse : public Smach::event
                modifier(modifier)
        { }
 
-       EventMouse(EventKey id, MouseButton button, const sinfg::Point& pos, float pressure, Gdk::ModifierType modifier=Gdk::ModifierType(0)):
+       EventMouse(EventKey id, MouseButton button, const synfig::Point& pos, float pressure, Gdk::ModifierType modifier=Gdk::ModifierType(0)):
                Smach::event(id),
                pos(pos),
                button(button),
@@ -76,11 +77,11 @@ struct EventMouse : public Smach::event
 
 struct EventBox : public Smach::event
 {
-       sinfg::Point p1,p2;
+       synfig::Point p1,p2;
        MouseButton button;
        Gdk::ModifierType modifier;
-       
-       EventBox(EventKey id, const sinfg::Point& p1,const sinfg::Point& p2,MouseButton button=BUTTON_NONE, Gdk::ModifierType modifier=Gdk::ModifierType(0)):
+
+       EventBox(EventKey id, const synfig::Point& p1,const synfig::Point& p2,MouseButton button=BUTTON_NONE, Gdk::ModifierType modifier=Gdk::ModifierType(0)):
                Smach::event(id),
                p1(p1),
                p2(p2),
@@ -88,7 +89,7 @@ struct EventBox : public Smach::event
                modifier(modifier)
        { }
 
-       EventBox(const sinfg::Point& p1,const sinfg::Point& p2,MouseButton button=BUTTON_NONE, Gdk::ModifierType modifier=Gdk::ModifierType(0)):
+       EventBox(const synfig::Point& p1,const synfig::Point& p2,MouseButton button=BUTTON_NONE, Gdk::ModifierType modifier=Gdk::ModifierType(0)):
                Smach::event(EVENT_WORKAREA_BOX),
                p1(p1),
                p2(p2),