gnash-commit
[Top][All Lists]
Advanced

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

[Gnash-commit] gnash ChangeLog server/vm/action.cpp


From: Sandro Santilli
Subject: [Gnash-commit] gnash ChangeLog server/vm/action.cpp
Date: Wed, 09 Apr 2008 19:32:11 +0000

CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Sandro Santilli <strk>  08/04/09 19:32:11

Modified files:
        .              : ChangeLog 
        server/vm      : action.cpp 

Log message:
        reduce header inclusion, drop obsoleted comments and code.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/ChangeLog?cvsroot=gnash&r1=1.6227&r2=1.6228
http://cvs.savannah.gnu.org/viewcvs/gnash/server/vm/action.cpp?cvsroot=gnash&r1=1.34&r2=1.35

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/gnash/gnash/ChangeLog,v
retrieving revision 1.6227
retrieving revision 1.6228
diff -u -b -r1.6227 -r1.6228
--- ChangeLog   9 Apr 2008 16:53:10 -0000       1.6227
+++ ChangeLog   9 Apr 2008 19:32:10 -0000       1.6228
@@ -1,5 +1,7 @@
 2008-04-09 Sandro Santilli <address@hidden>
 
+       * server/vm/action.cpp: reduce header inclusion, drop obsoleted
+         comments and code.
        * server/movie_root.cpp (fire_mouse_event): catch ActionLimit
          exceptions triggered by immediate event execution
          (see bug #22756).

Index: server/vm/action.cpp
===================================================================
RCS file: /sources/gnash/gnash/server/vm/action.cpp,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -b -r1.34 -r1.35
--- server/vm/action.cpp        10 Mar 2008 23:23:10 -0000      1.34
+++ server/vm/action.cpp        9 Apr 2008 19:32:11 -0000       1.35
@@ -24,27 +24,14 @@
 #include "action.h"
 #include "as_object.h"
 #include "log.h"
-#include "movie_definition.h"
-#include "MovieClipLoader.h"
 #include "as_function.h"
-#include "timers.h"
-#include "textformat.h"
-#include "sound_definition.h"
-#include "array.h"
 #include "types.h"
-#include "sprite_instance.h"
-#include "movie_instance.h"
-//#include "movie_root.h" // to reset root movie from attach_extern_movie
-#include "Global.h"
 #include "swf.h"
-#include "URL.h"
 #include "GnashException.h"
 #include "as_environment.h"
 #include "fn_call.h"
 #include "VM.h"
 #include "StringPredicates.h"
-#include "xml.h"
-#include "xmlsocket.h"
 #include "namedStrings.h"
 
 
@@ -59,59 +46,6 @@
 #define snprintf _snprintf
 #endif // _WIN32
 
-// NOTES:
-//
-// Buttons
-// on (press)                 onPress
-// on (release)               onRelease
-// on (releaseOutside)        onReleaseOutside
-// on (rollOver)              onRollOver
-// on (rollOut)               onRollOut
-// on (dragOver)              onDragOver
-// on (dragOut)               onDragOut
-// on (keyPress"...")         onKeyDown, onKeyUp      <----- IMPORTANT
-//
-// Sprites
-// onClipEvent (load)         onLoad
-// onClipEvent (unload)       onUnload                Hm.
-// onClipEvent (enterFrame)   onEnterFrame
-// onClipEvent (mouseDown)    onMouseDown
-// onClipEvent (mouseUp)      onMouseUp
-// onClipEvent (mouseMove)    onMouseMove
-// onClipEvent (keyDown)      onKeyDown
-// onClipEvent (keyUp)        onKeyUp
-// onClipEvent (data)         onData
-
-// Text fields have event handlers too!
-
-// Sprite built in methods:
-// play()
-// stop()
-// gotoAndStop()
-// gotoAndPlay()
-// nextFrame()
-// startDrag()
-// getURL()
-// getBytesLoaded()
-// getBytesTotal()
-
-// Built-in functions: (do these actually exist in the VM, or are they just 
opcodes?)
-// Number()
-// String()
-
-
-// TODO builtins
-//
-// Number.toString() -- takes an optional arg that specifies the base
-//
-// Boolean() type cast
-//
-// typeof operator --> "number", "string", "boolean", "object" (also
-// for arrays), "null", "movieclip", "function", "undefined"
-//
-// Number.MAX_VALUE, Number.MIN_VALUE
-//
-// String.fromCharCode()
 
 namespace gnash {
 
@@ -297,30 +231,6 @@
     return s_retval.c_str();
 }
 
-void
-movie_load()
-{
-    log_action(_("-- start movie"));
-}
-
-//
-// Built-in objects
-//
-
-
-as_value
-event_test(const fn_call& /*fn*/)
-{
-    log_debug(_("FIXME: %s"), __FUNCTION__);
-    return as_value();
-}
-
-
-//
-// global init
-//
-
-
 
 //
 // event_id




reply via email to

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