nsIPluginWidget.h 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
  2. /* This Source Code Form is subject to the terms of the Mozilla Public
  3. * License, v. 2.0. If a copy of the MPL was not distributed with this
  4. * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
  5. #include "nsISupports.h"
  6. #include "nsPoint.h"
  7. #define NS_IPLUGINWIDGET_IID \
  8. { 0xEB9207E0, 0xD8F1, 0x44B9, \
  9. { 0xB7, 0x52, 0xAF, 0x8E, 0x9F, 0x8E, 0xBD, 0xF7 } }
  10. class nsIPluginInstanceOwner;
  11. /**
  12. * This is used by Mac only.
  13. */
  14. class NS_NO_VTABLE nsIPluginWidget : public nsISupports
  15. {
  16. public:
  17. NS_DECLARE_STATIC_IID_ACCESSOR(NS_IPLUGINWIDGET_IID)
  18. NS_IMETHOD GetPluginClipRect(nsIntRect& outClipRect, nsIntPoint& outOrigin, bool& outWidgetVisible) = 0;
  19. NS_IMETHOD StartDrawPlugin(void) = 0;
  20. NS_IMETHOD EndDrawPlugin(void) = 0;
  21. NS_IMETHOD SetPluginInstanceOwner(nsIPluginInstanceOwner* pluginInstanceOwner) = 0;
  22. NS_IMETHOD SetPluginEventModel(int inEventModel) = 0;
  23. NS_IMETHOD GetPluginEventModel(int* outEventModel) = 0;
  24. NS_IMETHOD SetPluginDrawingModel(int inDrawingModel) = 0;
  25. NS_IMETHOD StartComplexTextInputForCurrentEvent() = 0;
  26. };
  27. NS_DEFINE_STATIC_IID_ACCESSOR(nsIPluginWidget, NS_IPLUGINWIDGET_IID)