⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 filereference_as.cpp

📁 独立flash播放器!This the developer’s wiki for Gnash and related projects. Content on these pages may not
💻 CPP
字号:
// FileReference_as.cpp:  ActionScript "FileReference" class, for Gnash.////   Copyright (C) 2005, 2006, 2007, 2008 Free Software Foundation, Inc.//// This program is free software; you can redistribute it and/or modify// it under the terms of the GNU General Public License as published by// the Free Software Foundation; either version 3 of the License, or// (at your option) any later version.//// This program is distributed in the hope that it will be useful,// but WITHOUT ANY WARRANTY; without even the implied warranty of// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the// GNU General Public License for more details.//// You should have received a copy of the GNU General Public License// along with this program; if not, write to the Free Software// Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA//#ifdef HAVE_CONFIG_H#include "gnashconfig.h"#endif#include "FileReference_as.h"#include "as_object.h" // for inheritance#include "log.h"#include "fn_call.h"#include "smart_ptr.h" // for boost intrusive_ptr#include "builtin_function.h" // need builtin_function#include "GnashException.h" // for ActionException#include "Object.h" // for AS inheritance#include "VM.h" // for addStatics#include <sstream>namespace gnash {static as_value FileReference_addListener(const fn_call& fn);static as_value FileReference_browse(const fn_call& fn);static as_value FileReference_cancel(const fn_call& fn);static as_value FileReference_download(const fn_call& fn);static as_value FileReference_removeListener(const fn_call& fn);static as_value FileReference_upload(const fn_call& fn);static as_value FileReference_creationDate_getset(const fn_call& fn);static as_value FileReference_creator_getset(const fn_call& fn);static as_value FileReference_modificationDate_getset(const fn_call& fn);static as_value FileReference_name_getset(const fn_call& fn);static as_value FileReference_size_getset(const fn_call& fn);static as_value FileReference_type_getset(const fn_call& fn);as_value FileReference_ctor(const fn_call& fn);static voidattachFileReferenceInterface(as_object& o){    o.init_member("addListener", new builtin_function(FileReference_addListener));    o.init_member("browse", new builtin_function(FileReference_browse));    o.init_member("cancel", new builtin_function(FileReference_cancel));    o.init_member("download", new builtin_function(FileReference_download));    o.init_member("removeListener", new builtin_function(FileReference_removeListener));    o.init_member("upload", new builtin_function(FileReference_upload));    o.init_property("creationDate", FileReference_creationDate_getset, FileReference_creationDate_getset);    o.init_property("creator", FileReference_creator_getset, FileReference_creator_getset);    o.init_property("modificationDate", FileReference_modificationDate_getset, FileReference_modificationDate_getset);    o.init_property("name", FileReference_name_getset, FileReference_name_getset);    o.init_property("size", FileReference_size_getset, FileReference_size_getset);    o.init_property("type", FileReference_type_getset, FileReference_type_getset);}static voidattachFileReferenceStaticProperties(as_object& /*o*/){   }static as_object*getFileReferenceInterface(){	static boost::intrusive_ptr<as_object> o;	if ( ! o )	{		// TODO: check if this class should inherit from Object		//       or from a different class		o = new as_object(getObjectInterface());		VM::get().addStatic(o.get());		attachFileReferenceInterface(*o);	}	return o.get();}class FileReference_as: public as_object{public:	FileReference_as()		:		as_object(getFileReferenceInterface())	{}	// override from as_object ?	//std::string get_text_value() const { return "FileReference"; }	// override from as_object ?	//double get_numeric_value() const { return 0; }};static as_valueFileReference_addListener(const fn_call& fn){	boost::intrusive_ptr<FileReference_as> ptr = ensureType<FileReference_as>(fn.this_ptr);	UNUSED(ptr);	LOG_ONCE( log_unimpl (__FUNCTION__) );	return as_value();}static as_valueFileReference_browse(const fn_call& fn){	boost::intrusive_ptr<FileReference_as> ptr = ensureType<FileReference_as>(fn.this_ptr);	UNUSED(ptr);	LOG_ONCE( log_unimpl (__FUNCTION__) );	return as_value();}static as_valueFileReference_cancel(const fn_call& fn){	boost::intrusive_ptr<FileReference_as> ptr = ensureType<FileReference_as>(fn.this_ptr);	UNUSED(ptr);	LOG_ONCE( log_unimpl (__FUNCTION__) );	return as_value();}static as_valueFileReference_download(const fn_call& fn){	boost::intrusive_ptr<FileReference_as> ptr = ensureType<FileReference_as>(fn.this_ptr);	UNUSED(ptr);	LOG_ONCE( log_unimpl (__FUNCTION__) );	return as_value();}static as_valueFileReference_removeListener(const fn_call& fn){	boost::intrusive_ptr<FileReference_as> ptr = ensureType<FileReference_as>(fn.this_ptr);	UNUSED(ptr);	LOG_ONCE( log_unimpl (__FUNCTION__) );	return as_value();}static as_valueFileReference_upload(const fn_call& fn){	boost::intrusive_ptr<FileReference_as> ptr = ensureType<FileReference_as>(fn.this_ptr);	UNUSED(ptr);	LOG_ONCE( log_unimpl (__FUNCTION__) );	return as_value();}static as_valueFileReference_creationDate_getset(const fn_call& fn){	boost::intrusive_ptr<FileReference_as> ptr = ensureType<FileReference_as>(fn.this_ptr);	UNUSED(ptr);	LOG_ONCE( log_unimpl (__FUNCTION__) );	return as_value();}static as_valueFileReference_creator_getset(const fn_call& fn){	boost::intrusive_ptr<FileReference_as> ptr = ensureType<FileReference_as>(fn.this_ptr);	UNUSED(ptr);	LOG_ONCE( log_unimpl (__FUNCTION__) );	return as_value();}static as_valueFileReference_modificationDate_getset(const fn_call& fn){	boost::intrusive_ptr<FileReference_as> ptr = ensureType<FileReference_as>(fn.this_ptr);	UNUSED(ptr);	LOG_ONCE( log_unimpl (__FUNCTION__) );	return as_value();}static as_valueFileReference_name_getset(const fn_call& fn){	boost::intrusive_ptr<FileReference_as> ptr = ensureType<FileReference_as>(fn.this_ptr);	UNUSED(ptr);	LOG_ONCE( log_unimpl (__FUNCTION__) );	return as_value();}static as_valueFileReference_size_getset(const fn_call& fn){	boost::intrusive_ptr<FileReference_as> ptr = ensureType<FileReference_as>(fn.this_ptr);	UNUSED(ptr);	LOG_ONCE( log_unimpl (__FUNCTION__) );	return as_value();}static as_valueFileReference_type_getset(const fn_call& fn){	boost::intrusive_ptr<FileReference_as> ptr = ensureType<FileReference_as>(fn.this_ptr);	UNUSED(ptr);	LOG_ONCE( log_unimpl (__FUNCTION__) );	return as_value();}as_valueFileReference_ctor(const fn_call& fn){	boost::intrusive_ptr<as_object> obj = new FileReference_as;	if ( fn.nargs )	{		std::stringstream ss;		fn.dump_args(ss);		LOG_ONCE( log_unimpl("FileReference(%s): %s", ss.str(), _("arguments discarded")) );	}	return as_value(obj.get()); // will keep alive}// extern void FileReference_class_init(as_object& where){	// This is going to be the FileReference "class"/"function"	// in the 'where' package	boost::intrusive_ptr<builtin_function> cl;	cl=new builtin_function(&FileReference_ctor, getFileReferenceInterface());	attachFileReferenceStaticProperties(*cl);	// Register _global.FileReference	where.init_member("FileReference", cl.get());}} // end of gnash namespace

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -