nsScriptablePeer.h
上传用户:hongyu5696
上传日期:2018-01-22
资源大小:391k
文件大小:5k
源码类别:

PlugIns编程

开发平台:

Unix_Linux

  1. /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
  2. /* ***** BEGIN LICENSE BLOCK *****
  3.  * Version: NPL 1.1/GPL 2.0/LGPL 2.1
  4.  *
  5.  * The contents of this file are subject to the Netscape Public License
  6.  * Version 1.1 (the "License"); you may not use this file except in
  7.  * compliance with the License. You may obtain a copy of the License at
  8.  * http://www.mozilla.org/NPL/
  9.  *
  10.  * Software distributed under the License is distributed on an "AS IS" basis,
  11.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  12.  * for the specific language governing rights and limitations under the
  13.  * License.
  14.  *
  15.  * The Original Code is mozilla.org code.
  16.  *
  17.  * The Initial Developer of the Original Code is 
  18.  * Netscape Communications Corporation.
  19.  * Portions created by the Initial Developer are Copyright (C) 1998
  20.  * the Initial Developer. All Rights Reserved.
  21.  *
  22.  * Contributor(s):
  23.  *
  24.  * Alternatively, the contents of this file may be used under the terms of
  25.  * either the GNU General Public License Version 2 or later (the "GPL"), or 
  26.  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  27.  * in which case the provisions of the GPL or the LGPL are applicable instead
  28.  * of those above. If you wish to allow use of your version of this file only
  29.  * under the terms of either the GPL or the LGPL, and not to allow others to
  30.  * use your version of this file under the terms of the NPL, indicate your
  31.  * decision by deleting the provisions above and replace them with the notice
  32.  * and other provisions required by the GPL or the LGPL. If you do not delete
  33.  * the provisions above, a recipient may use your version of this file under
  34.  * the terms of any one of the NPL, the GPL or the LGPL.
  35.  *
  36.  * ***** END LICENSE BLOCK ***** */
  37. // ==============================
  38. // ! Scriptability related code !
  39. // ==============================
  40. //
  41. // nsScriptablePeer - xpconnect scriptable peer
  42. //
  43. #ifndef __nsScriptablePeer_h__
  44. #define __nsScriptablePeer_h__
  45. #include "nsIScriptabledownloadPlugin.h"
  46. #include "nsIClassInfo.h"
  47. class nsPluginInstance;
  48. // We must implement nsIClassInfo because it signals the
  49. // Mozilla Security Manager to allow calls from JavaScript.
  50. class nsClassInfoMixin:public nsIClassInfo {
  51.     // These flags are used by the DOM and security systems to signal that 
  52.     // JavaScript callers are allowed to call this object's scritable methods.
  53.     NS_IMETHOD GetFlags(PRUint32 * aFlags) {
  54. *aFlags = nsIClassInfo::PLUGIN_OBJECT | nsIClassInfo::DOM_OBJECT;
  55. return NS_OK;
  56.     } NS_IMETHOD GetImplementationLanguage(PRUint32 *
  57.    aImplementationLanguage) {
  58. *aImplementationLanguage = nsIProgrammingLanguage::CPLUSPLUS;
  59. return NS_OK;
  60.     }
  61.     // The rest of the methods can safely return error codes...
  62.     NS_IMETHOD GetInterfaces(PRUint32 * count, nsIID * **array) {
  63. return NS_ERROR_NOT_IMPLEMENTED;
  64.     }
  65.     NS_IMETHOD GetHelperForLanguage(PRUint32 language,
  66.     nsISupports ** _retval) {
  67. return NS_ERROR_NOT_IMPLEMENTED;
  68.     }
  69.     NS_IMETHOD GetContractID(char **aContractID) {
  70. return NS_ERROR_NOT_IMPLEMENTED;
  71.     }
  72.     NS_IMETHOD GetClassDescription(char **aClassDescription) {
  73. return NS_ERROR_NOT_IMPLEMENTED;
  74.     }
  75.     NS_IMETHOD GetClassID(nsCID * *aClassID) {
  76. return NS_ERROR_NOT_IMPLEMENTED;
  77.     }
  78.     NS_IMETHOD GetClassIDNoAlloc(nsCID * aClassIDNoAlloc) {
  79. return NS_ERROR_NOT_IMPLEMENTED;
  80.     }
  81. };
  82.  
  83. class nsControlsScriptablePeer:public nsIScriptableWMPPlugin,
  84.     public nsClassInfoMixin {
  85.   public:
  86.     nsControlsScriptablePeer(nsPluginInstance * plugin);
  87.     virtual ~ nsControlsScriptablePeer();
  88.   public:
  89.     // methods from nsISupports
  90.     NS_IMETHOD QueryInterface(const nsIID & aIID, void **aInstancePtr);
  91.     NS_IMETHOD_(nsrefcnt) AddRef();
  92.     NS_IMETHOD_(nsrefcnt) Release();
  93.   protected:
  94.     nsrefcnt mRefCnt;
  95.   public:
  96.     // native methods callable from JavaScript
  97.     NS_DECL_NSISCRIPTABLEWMPPLUGIN
  98. void SetInstance(nsPluginInstance * plugin);
  99.   protected:
  100.      nsPluginInstance * mPlugin;
  101. };
  102. class nsScriptablePeer:public nsIScriptabledownloadPlugin,
  103.     public nsClassInfoMixin {
  104.   public:
  105.     nsScriptablePeer(nsPluginInstance * plugin);
  106.     virtual ~ nsScriptablePeer();
  107.   public:
  108.     // methods from nsISupports
  109.     NS_IMETHOD QueryInterface(const nsIID & aIID, void **aInstancePtr);
  110.     NS_IMETHOD_(nsrefcnt) AddRef();
  111.     NS_IMETHOD_(nsrefcnt) Release();
  112.   protected:
  113.     nsrefcnt mRefCnt;
  114.   public:
  115.     // native methods callable from JavaScript
  116.     NS_DECL_NSISCRIPTABLEDOWNLOADPLUGIN
  117. void SetInstance(nsPluginInstance * plugin);
  118.         void InitControls(nsControlsScriptablePeer *aControls);
  119.   protected:
  120.      nsPluginInstance * mPlugin;
  121.      nsControlsScriptablePeer *mControls;
  122. };
  123. #endif