00001 // 00002 // Copyright (C) 2007, 2008, 2009, 2010 Free Software Foundation, Inc. 00003 // 00004 // This program is free software; you can redistribute it and/or modify 00005 // it under the terms of the GNU General Public License as published by 00006 // the Free Software Foundation; either version 3 of the License, or 00007 // (at your option) any later version. 00008 // 00009 // This program is distributed in the hope that it will be useful, 00010 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00011 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00012 // GNU General Public License for more details. 00013 // 00014 // You should have received a copy of the GNU General Public License 00015 // along with this program; if not, write to the Free Software 00016 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 00017 00018 #ifndef GNASH_DUMMYCHARACTER_H 00019 #define GNASH_DUMMYCHARACTER_H 00020 00021 #include "InteractiveObject.h" // for inheritance 00022 #include "SWFRect.h" // for composition 00023 #include "Movie.h" // for createMovie 00024 #include "snappingrange.h" // for InvalidatedRanges typedef (don't like it) 00025 00026 #include <memory> // for auto_ptr 00027 00028 // Forward declarations 00029 namespace gnash { 00030 } 00031 00032 namespace gnash 00033 { 00034 00036 // 00042 class DummyCharacter : public InteractiveObject 00043 { 00044 00045 public: 00046 00047 DummyCharacter(as_object* object, DisplayObject* parent) 00048 : 00049 InteractiveObject(object, parent) 00050 { 00051 } 00052 00053 virtual void display(Renderer& /*renderer*/) {} 00054 00055 virtual SWFRect getBounds() const { return SWFRect(); } 00056 00057 virtual bool mouseEnabled() const { return true; } 00058 00059 InteractiveObject* topmostMouseEntity(boost::int32_t, boost::int32_t) 00060 { 00061 return 0; 00062 } 00063 00064 void add_invalidated_bounds(InvalidatedRanges& /*bounds*/, bool /*force*/) {} 00065 00066 }; 00067 00068 } // namespace gnash 00069 00070 #endif // GNASH_DUMMYCHARACTER_H