Merge branch 'master' of git.sv.gnu.org:/srv/git/gnash
[gnash.git] / testsuite / DummyCharacter.h
blobc646d559d5900d578dd98c96823f0d59e3fd5764
1 //
2 // Copyright (C) 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
3 //
4 // This program is free software; you can redistribute it and/or modify
5 // it under the terms of the GNU General Public License as published by
6 // the Free Software Foundation; either version 3 of the License, or
7 // (at your option) any later version.
8 //
9 // This program is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
13 //
14 // You should have received a copy of the GNU General Public License
15 // along with this program; if not, write to the Free Software
16 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18 #ifndef GNASH_DUMMYCHARACTER_H
19 #define GNASH_DUMMYCHARACTER_H
21 #include "InteractiveObject.h" // for inheritance
22 #include "SWFRect.h" // for composition
23 #include "Movie.h" // for createMovie
24 #include "snappingrange.h" // for InvalidatedRanges typedef (don't like it)
26 #include <memory> // for auto_ptr
28 // Forward declarations
29 namespace gnash {
32 namespace gnash
35 /// A dummy character instance, for use by unit tests
37 /// This class provides implementation of all virtual
38 /// methods of movie_definition by returning user-defined
39 /// values for XXXXXXXXXXXXXXXXXXXXXXXXXX etc..
40 ///
41 ///
42 class DummyCharacter : public InteractiveObject
45 public:
47 DummyCharacter(as_object* object, DisplayObject* parent)
49 InteractiveObject(object, parent)
53 virtual void display(Renderer& /*renderer*/, const Transform&) {}
55 virtual SWFRect getBounds() const { return SWFRect(); }
57 virtual bool mouseEnabled() const { return true; }
59 InteractiveObject* topmostMouseEntity(boost::int32_t, boost::int32_t)
61 return 0;
64 void add_invalidated_bounds(InvalidatedRanges& /*bounds*/, bool /*force*/) {}
68 } // namespace gnash
70 #endif // GNASH_DUMMYCHARACTER_H