Gnash 0.8.9
|
00001 // RemoveObjectTag.h: RemoveObject* tag for Gnash. 00002 // 00003 // Copyright (C) 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc. 00004 // 00005 // This program is free software; you can redistribute it and/or modify 00006 // it under the terms of the GNU General Public License as published by 00007 // the Free Software Foundation; either version 3 of the License, or 00008 // (at your option) any later version. 00009 // 00010 // This program is distributed in the hope that it will be useful, 00011 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00012 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00013 // GNU General Public License for more details. 00014 // 00015 // You should have received a copy of the GNU General Public License 00016 // along with this program; if not, write to the Free Software 00017 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 00018 00019 #ifndef GNASH_SWF_REMOVEOBJECTTAG_H 00020 #define GNASH_SWF_REMOVEOBJECTTAG_H 00021 00022 #include "DisplayListTag.h" // for inheritance 00023 #include "SWF.h" // for TagType definition 00024 00025 // Forward declarations 00026 namespace gnash { 00027 class SWFStream; 00028 class MovieClip; 00029 class swf_event; 00030 class movie_definition; 00031 class DisplayList; 00032 class RunResources; 00033 } 00034 00035 namespace gnash { 00036 namespace SWF { 00037 00039 // 00042 class RemoveObjectTag : public DisplayListTag 00043 { 00044 public: 00045 00046 RemoveObjectTag() 00047 : 00048 DisplayListTag(-1) 00049 {} 00050 00052 void read(SWFStream& in, TagType tag); 00053 00055 void executeState(MovieClip* m, DisplayList& dlist) const; 00056 00057 static void loader(SWFStream& in, TagType tag, movie_definition& m, 00058 const RunResources& r); 00059 00060 private: 00061 00062 int _id; 00063 00064 }; 00065 00066 } // namespace gnash::SWF 00067 } // namespace gnash 00068 00069 00070 #endif // GNASH_SWF_REMOVEOBJECTTAG_H 00071 00072 00073 // Local Variables: 00074 // mode: C++ 00075 // indent-tabs-mode: t 00076 // End: