00001 // DisplayListTag.h: DisplayList tag, for Gnash. 00002 // 00003 // Copyright (C) 2007, 2008, 2009, 2010 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_DISPLAYLISTTAG_H 00020 #define GNASH_SWF_DISPLAYLISTTAG_H 00021 00022 #include "ControlTag.h" // for inheritance 00023 00024 00025 // Forward declarations 00026 namespace gnash { 00027 class MovieClip; 00028 } 00029 00030 namespace gnash { 00031 namespace SWF { 00032 00034 // 00040 class DisplayListTag : public ControlTag 00041 { 00042 public: 00043 00044 DisplayListTag(int depth) 00045 : 00046 _depth(depth) 00047 {} 00048 00049 virtual ~DisplayListTag() {} 00050 00052 virtual void executeState(MovieClip* m, DisplayList& dlist) const = 0; 00053 00055 // 00058 int getDepth() const { return _depth; } 00059 00060 protected: 00061 00062 int _depth; 00063 00064 }; 00065 00066 } // namespace gnash::SWF 00067 } // namespace gnash 00068 00069 00070 #endif // GNASH_SWF_DISPLAYLISTTAG_H 00071 00072 00073 // Local Variables: 00074 // mode: C++ 00075 // indent-tabs-mode: t 00076 // End: