X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=synfig-studio%2Ftrunk%2Fsrc%2Fgtkmm%2Fevent_mouse.h;h=1ab2ff6dfb1334f26fce3e7ea5a653dc0cd5636e;hb=c34eaa5441242b3e9a7b7645e9ee4983d14eae85;hp=ac35d30c1bc08368c687a7f14de95e3c8a5adeec;hpb=3a3c4bca3a17137bec5d7960560934b91ef4146e;p=synfig.git diff --git a/synfig-studio/trunk/src/gtkmm/event_mouse.h b/synfig-studio/trunk/src/gtkmm/event_mouse.h index ac35d30..1ab2ff6 100644 --- a/synfig-studio/trunk/src/gtkmm/event_mouse.h +++ b/synfig-studio/trunk/src/gtkmm/event_mouse.h @@ -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 $ ** ** \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 +#include #include "smach.h" #include @@ -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),