gnash-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gnash-commit] gnash ChangeLog server/movie_root.h server/movi...


From: Sandro Santilli
Subject: [Gnash-commit] gnash ChangeLog server/movie_root.h server/movi...
Date: Sat, 14 Oct 2006 14:37:21 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Sandro Santilli <strk>  06/10/14 14:37:21

Modified files:
        .              : ChangeLog 
        server         : movie_root.h movie_interface.h movie.h 

Log message:
                * server/movie_root.h, server/movie_interface.h, server/movie.h:
                  notif_mouse_moved() function documentation improved and
                  moved only in movie_interface (parent class).

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.1213&r2=1.1214
http://cvs.savannah.gnu.org/viewcvs/gnash/server/movie_root.h?cvsroot=gnash&r1=1.14&r2=1.15
http://cvs.savannah.gnu.org/viewcvs/gnash/server/movie_interface.h?cvsroot=gnash&r1=1.10&r2=1.11
http://cvs.savannah.gnu.org/viewcvs/gnash/server/movie.h?cvsroot=gnash&r1=1.20&r2=1.21

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/gnash/gnash/ChangeLog,v
retrieving revision 1.1213
retrieving revision 1.1214
diff -u -b -r1.1213 -r1.1214
--- ChangeLog   14 Oct 2006 11:24:19 -0000      1.1213
+++ ChangeLog   14 Oct 2006 14:37:21 -0000      1.1214
@@ -1,3 +1,9 @@
+2006-10-14 Sandro Santilli <address@hidden>
+
+       * server/movie_root.h, server/movie_interface.h, server/movie.h:
+         notif_mouse_moved() function documentation improved and
+         moved only in movie_interface (parent class).
+
 2006-10-14 Markus Gothe <address@hidden>
 
        * libgeometry/Makefile.am, server/asobj/Makefile.am, server/Makefile.am,

Index: server/movie_root.h
===================================================================
RCS file: /sources/gnash/gnash/server/movie_root.h,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -b -r1.14 -r1.15
--- server/movie_root.h 12 Oct 2006 16:37:25 -0000      1.14
+++ server/movie_root.h 14 Oct 2006 14:37:21 -0000      1.15
@@ -35,7 +35,7 @@
 // 
 //
 
-/* $Id: movie_root.h,v 1.14 2006/10/12 16:37:25 udog Exp $ */
+/* $Id: movie_root.h,v 1.15 2006/10/14 14:37:21 strk Exp $ */
 
 #ifndef GNASH_MOVIE_ROOT_H
 #define GNASH_MOVIE_ROOT_H
@@ -115,8 +115,7 @@
 
        void set_display_viewport(int x0, int y0, int w, int h);
 
-       /// The host app can use this to tell the movie when
-       /// user's mouse pointer has moved.
+       // derived from movie_interface, see dox in movie_interface.h
         void notify_mouse_moved(int x, int y);
 
        /// The host app can use this to tell the movie when a

Index: server/movie_interface.h
===================================================================
RCS file: /sources/gnash/gnash/server/movie_interface.h,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -b -r1.10 -r1.11
--- server/movie_interface.h    12 Oct 2006 16:37:25 -0000      1.10
+++ server/movie_interface.h    14 Oct 2006 14:37:21 -0000      1.11
@@ -35,7 +35,7 @@
 // 
 //
 
-/* $Id: movie_interface.h,v 1.10 2006/10/12 16:37:25 udog Exp $ */
+/* $Id: movie_interface.h,v 1.11 2006/10/14 14:37:21 strk Exp $ */
 
 #ifndef GNASH_MOVIE_INTERFACE_H
 #define GNASH_MOVIE_INTERFACE_H
@@ -108,7 +108,14 @@
        virtual void    set_display_viewport(int x0, int y0, int w, int h) = 0;
        
        /// Input.
+       /// \brief
+        /// The host app can use this to tell the movie when
+        /// user's mouse pointer has moved.
+       //
+       /// Coordinates are in pixels.
+       ///
         virtual void    notify_mouse_moved(int x, int y) = 0;
+
         virtual void    notify_mouse_clicked(bool mouse_pressed, int mask) = 0;
        virtual void    notify_mouse_state(int x, int y, int buttons) = 0;
        

Index: server/movie.h
===================================================================
RCS file: /sources/gnash/gnash/server/movie.h,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -b -r1.20 -r1.21
--- server/movie.h      11 Oct 2006 08:08:36 -0000      1.20
+++ server/movie.h      14 Oct 2006 14:37:21 -0000      1.21
@@ -231,9 +231,7 @@
                return STOP;
        }
 
-       /// \brief
-        /// The host app can use this to tell the movie when
-        /// user's mouse pointer has moved.
+       // derived from movie_interface, see dox in movie_interface.h
         virtual void notify_mouse_moved(int /*x*/, int /*y*/)
         {
 //         GNASH_REPORT_FUNCTION;




reply via email to

[Prev in Thread] Current Thread [Next in Thread]