remove revno.h for distclean
[gnash.git] / libcore / swf / DisplayListTag.h
blob0ec6c2842dab7f802ec23d426dcc47a8e1f604be
1 // DisplayListTag.h: DisplayList tag, for Gnash.
2 //
3 // Copyright (C) 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
4 //
5 // This program is free software; you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation; either version 3 of the License, or
8 // (at your option) any later version.
9 //
10 // This program is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
14 //
15 // You should have received a copy of the GNU General Public License
16 // along with this program; if not, write to the Free Software
17 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 #ifndef GNASH_SWF_DISPLAYLISTTAG_H
20 #define GNASH_SWF_DISPLAYLISTTAG_H
22 #include "ControlTag.h" // for inheritance
25 // Forward declarations
26 namespace gnash {
27 class MovieClip;
30 namespace gnash {
31 namespace SWF {
33 /// DisplayList tag
35 /// DisplayList tags are all versions of PlaceObject and RemoveObject.
36 /// They modify the DisplayList of a movie or sprite by
37 /// placing, moving, replacing or removing DisplayObjects at depths.
38 ///
39 ///
40 class DisplayListTag : public ControlTag
42 public:
44 DisplayListTag(int depth)
46 _depth(depth)
49 virtual ~DisplayListTag() {}
51 /// All DisplayList tags are state tags.
52 virtual void executeState(MovieClip* m, DisplayList& dlist) const = 0;
54 /// Return the depth affected by this DisplayList tag
56 /// NOTE: the returned depth is always in the
57 /// static depth zone (DisplayObject::staticDepthOffset .. -1)
58 int getDepth() const { return _depth; }
60 protected:
62 int _depth;
66 } // namespace gnash::SWF
67 } // namespace gnash
70 #endif // GNASH_SWF_DISPLAYLISTTAG_H
73 // Local Variables:
74 // mode: C++
75 // indent-tabs-mode: t
76 // End: