2001-09-28 20:14:13 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
2004-04-18 14:30:37 +00:00
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
2000-04-14 22:48:30 +00:00
|
|
|
*
|
2004-04-18 14:30:37 +00:00
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
2000-04-14 22:48:30 +00:00
|
|
|
*
|
2001-09-28 20:14:13 +00:00
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
2000-04-14 22:48:30 +00:00
|
|
|
*
|
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
2004-04-18 14:30:37 +00:00
|
|
|
* The Initial Developer of the Original Code is
|
2001-09-28 20:14:13 +00:00
|
|
|
* Netscape Communications Corporation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 1998
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
2000-04-14 22:48:30 +00:00
|
|
|
*
|
2001-09-28 20:14:13 +00:00
|
|
|
* Contributor(s):
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
2004-04-18 14:30:37 +00:00
|
|
|
* either of the GNU General Public License Version 2 or later (the "GPL"),
|
|
|
|
* or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
2001-09-28 20:14:13 +00:00
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
2004-04-18 14:30:37 +00:00
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
2001-09-28 20:14:13 +00:00
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
2004-04-18 14:30:37 +00:00
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
2001-09-28 20:14:13 +00:00
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
2006-03-29 18:29:03 +00:00
|
|
|
|
|
|
|
/* rendering objects for replaced elements implemented by a plugin */
|
|
|
|
|
2000-04-14 22:48:30 +00:00
|
|
|
#ifndef nsObjectFrame_h___
|
|
|
|
#define nsObjectFrame_h___
|
|
|
|
|
2006-05-10 17:30:15 +00:00
|
|
|
#ifdef XP_WIN
|
|
|
|
#include <windows.h>
|
|
|
|
#endif
|
|
|
|
|
2001-02-19 21:50:04 +00:00
|
|
|
#include "nsIObjectFrame.h"
|
2006-02-02 19:29:10 +00:00
|
|
|
#include "nsFrame.h"
|
2000-04-14 22:48:30 +00:00
|
|
|
|
2002-05-10 22:34:53 +00:00
|
|
|
#ifdef ACCESSIBILITY
|
|
|
|
class nsIAccessible;
|
|
|
|
#endif
|
|
|
|
|
2000-04-14 22:48:30 +00:00
|
|
|
class nsPluginInstanceOwner;
|
2006-02-02 19:29:10 +00:00
|
|
|
class nsIPluginHost;
|
|
|
|
class nsIPluginInstance;
|
|
|
|
class nsPresContext;
|
2000-04-14 22:48:30 +00:00
|
|
|
|
2005-12-31 00:25:36 +00:00
|
|
|
#define nsObjectFrameSuper nsFrame
|
2000-04-14 22:48:30 +00:00
|
|
|
|
2001-02-19 21:50:04 +00:00
|
|
|
class nsObjectFrame : public nsObjectFrameSuper, public nsIObjectFrame {
|
2000-04-14 22:48:30 +00:00
|
|
|
public:
|
2006-03-26 21:30:36 +00:00
|
|
|
friend nsIFrame* NS_NewObjectFrame(nsIPresShell* aPresShell, nsStyleContext* aContext);
|
|
|
|
|
2001-02-19 21:50:04 +00:00
|
|
|
// nsISupports
|
|
|
|
NS_IMETHOD QueryInterface(const nsIID& aIID, void** aInstancePtr);
|
|
|
|
|
2006-03-09 18:55:21 +00:00
|
|
|
NS_IMETHOD Init(nsIContent* aContent,
|
2005-01-05 00:21:06 +00:00
|
|
|
nsIFrame* aParent,
|
|
|
|
nsIFrame* aPrevInFlow);
|
Bug 300030: Move intrinsic width computation out of nsIFrame::Reflow and into its own methods on nsIFrame. Replace reflow reasons, types, and commands with dirty bits/notifications. Thanks to bzbarsky for almost all of the HTML form controls (mozilla/layout/forms) changes, and many others for help testing and patching. For detailed commit logs, see REFLOW_YYYYMMDD_BRANCH, where YYYYMMDD is one of 20061031, 20060830, 20060603, 20060302, 20060119, 20051011, 20050804, 20050429, 20050315, 20050111, and 20041213.
2006-12-08 05:38:33 +00:00
|
|
|
virtual nscoord GetMinWidth(nsIRenderingContext *aRenderingContext);
|
|
|
|
virtual nscoord GetPrefWidth(nsIRenderingContext *aRenderingContext);
|
2005-01-05 00:21:06 +00:00
|
|
|
NS_IMETHOD Reflow(nsPresContext* aPresContext,
|
|
|
|
nsHTMLReflowMetrics& aDesiredSize,
|
2000-04-14 22:48:30 +00:00
|
|
|
const nsHTMLReflowState& aReflowState,
|
2005-01-05 00:21:06 +00:00
|
|
|
nsReflowStatus& aStatus);
|
|
|
|
NS_IMETHOD DidReflow(nsPresContext* aPresContext,
|
|
|
|
const nsHTMLReflowState* aReflowState,
|
|
|
|
nsDidReflowStatus aStatus);
|
2006-01-26 02:29:17 +00:00
|
|
|
NS_IMETHOD BuildDisplayList(nsDisplayListBuilder* aBuilder,
|
|
|
|
const nsRect& aDirtyRect,
|
|
|
|
const nsDisplayListSet& aLists);
|
|
|
|
|
|
|
|
void PrintPlugin(nsIRenderingContext& aRenderingContext,
|
|
|
|
const nsRect& aDirtyRect);
|
|
|
|
void PaintPlugin(nsIRenderingContext& aRenderingContext,
|
|
|
|
const nsRect& aDirtyRect);
|
2000-04-14 22:48:30 +00:00
|
|
|
|
2004-07-31 23:15:21 +00:00
|
|
|
NS_IMETHOD HandleEvent(nsPresContext* aPresContext,
|
2005-01-05 00:21:06 +00:00
|
|
|
nsGUIEvent* aEvent,
|
|
|
|
nsEventStatus* aEventStatus);
|
2000-04-14 22:48:30 +00:00
|
|
|
|
2003-10-31 20:19:18 +00:00
|
|
|
virtual nsIAtom* GetType() const;
|
2007-02-24 18:33:33 +00:00
|
|
|
|
|
|
|
virtual PRBool IsFrameOfType(PRUint32 aFlags) const
|
|
|
|
{
|
|
|
|
return nsObjectFrameSuper::IsFrameOfType(aFlags & ~(nsIFrame::eReplaced));
|
|
|
|
}
|
|
|
|
|
2003-04-10 17:22:24 +00:00
|
|
|
virtual PRBool SupportsVisibilityHidden() { return PR_FALSE; }
|
2005-04-03 21:00:41 +00:00
|
|
|
virtual PRBool NeedsView() { return PR_TRUE; }
|
2005-04-07 04:34:46 +00:00
|
|
|
virtual nsresult CreateWidgetForView(nsIView* aView);
|
2003-04-10 17:22:24 +00:00
|
|
|
|
2000-04-14 22:48:30 +00:00
|
|
|
#ifdef DEBUG
|
2001-11-14 01:33:42 +00:00
|
|
|
NS_IMETHOD GetFrameName(nsAString& aResult) const;
|
2000-04-14 22:48:30 +00:00
|
|
|
#endif
|
|
|
|
|
2006-04-10 00:16:29 +00:00
|
|
|
virtual void Destroy();
|
2000-04-14 22:48:30 +00:00
|
|
|
|
2001-02-19 21:50:04 +00:00
|
|
|
NS_IMETHOD GetPluginInstance(nsIPluginInstance*& aPluginInstance);
|
2005-09-21 19:14:30 +00:00
|
|
|
virtual nsresult Instantiate(nsIChannel* aChannel, nsIStreamListener** aStreamListener);
|
|
|
|
virtual nsresult Instantiate(const char* aMimeType, nsIURI* aURI);
|
2005-10-31 18:28:56 +00:00
|
|
|
virtual void StopPlugin();
|
2005-09-21 19:14:30 +00:00
|
|
|
|
2001-02-19 21:50:04 +00:00
|
|
|
|
2002-01-26 00:39:43 +00:00
|
|
|
/* fail on any requests to get a cursor from us because plugins set their own! see bug 118877 */
|
2004-12-30 21:56:11 +00:00
|
|
|
NS_IMETHOD GetCursor(const nsPoint& aPoint, nsIFrame::Cursor& aCursor)
|
2005-01-05 00:21:06 +00:00
|
|
|
{
|
|
|
|
return NS_ERROR_NOT_IMPLEMENTED;
|
2007-04-23 14:21:53 +00:00
|
|
|
}
|
2002-01-26 00:39:43 +00:00
|
|
|
|
2002-05-10 22:34:53 +00:00
|
|
|
// accessibility support
|
|
|
|
#ifdef ACCESSIBILITY
|
|
|
|
NS_IMETHOD GetAccessible(nsIAccessible** aAccessible);
|
|
|
|
#ifdef XP_WIN
|
|
|
|
NS_IMETHOD GetPluginPort(HWND *aPort);
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2000-04-14 22:48:30 +00:00
|
|
|
//local methods
|
2005-01-05 00:21:06 +00:00
|
|
|
nsresult CreateWidget(nscoord aWidth, nscoord aHeight, PRBool aViewOnly);
|
|
|
|
|
2001-09-18 02:11:09 +00:00
|
|
|
// for a given aRoot, this walks the frame tree looking for the next outFrame
|
2004-07-31 23:15:21 +00:00
|
|
|
static nsIObjectFrame* GetNextObjectFrame(nsPresContext* aPresContext,
|
2004-02-09 17:33:45 +00:00
|
|
|
nsIFrame* aRoot);
|
2001-09-18 02:11:09 +00:00
|
|
|
|
2000-04-14 22:48:30 +00:00
|
|
|
protected:
|
2001-02-19 21:50:04 +00:00
|
|
|
// nsISupports
|
|
|
|
NS_IMETHOD_(nsrefcnt) AddRef(void);
|
|
|
|
NS_IMETHOD_(nsrefcnt) Release(void);
|
|
|
|
|
2006-03-26 21:30:36 +00:00
|
|
|
nsObjectFrame(nsStyleContext* aContext) : nsObjectFrameSuper(aContext) {}
|
2000-04-14 22:48:30 +00:00
|
|
|
virtual ~nsObjectFrame();
|
|
|
|
|
2003-04-12 04:55:07 +00:00
|
|
|
// NOTE: This frame class does not inherit from |nsLeafFrame|, so
|
|
|
|
// this is not a virtual method implementation.
|
2004-07-31 23:15:21 +00:00
|
|
|
void GetDesiredSize(nsPresContext* aPresContext,
|
2003-04-12 04:55:07 +00:00
|
|
|
const nsHTMLReflowState& aReflowState,
|
|
|
|
nsHTMLReflowMetrics& aDesiredSize);
|
2000-04-14 22:48:30 +00:00
|
|
|
|
2005-09-21 19:14:30 +00:00
|
|
|
nsresult InstantiatePlugin(nsIPluginHost* aPluginHost,
|
2001-09-18 02:11:09 +00:00
|
|
|
const char* aMimetype,
|
|
|
|
nsIURI* aURL);
|
|
|
|
|
2005-09-21 19:14:30 +00:00
|
|
|
/**
|
|
|
|
* Adjust the plugin's idea of its size, using aSize as its new size.
|
|
|
|
* (aSize must be in twips)
|
|
|
|
*/
|
|
|
|
void FixupWindow(const nsSize& aSize);
|
2000-04-14 22:48:30 +00:00
|
|
|
|
2005-03-31 01:38:04 +00:00
|
|
|
PRBool IsFocusable(PRInt32 *aTabIndex = nsnull, PRBool aWithMouse = PR_FALSE);
|
|
|
|
|
2002-04-13 01:53:23 +00:00
|
|
|
// check attributes and optionally CSS to see if we should display anything
|
|
|
|
PRBool IsHidden(PRBool aCheckVisibilityStyle = PR_TRUE) const;
|
2000-07-19 23:46:43 +00:00
|
|
|
|
2004-02-09 17:33:45 +00:00
|
|
|
void NotifyContentObjectWrapper();
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
|
2004-02-09 17:33:45 +00:00
|
|
|
nsPoint GetWindowOriginInPixels(PRBool aWindowless);
|
2001-12-22 00:00:44 +00:00
|
|
|
|
2005-09-21 19:14:30 +00:00
|
|
|
/**
|
|
|
|
* Makes sure that mInstanceOwner is valid and without a current plugin
|
|
|
|
* instance. Essentially, this prepares the frame to receive a new plugin.
|
|
|
|
*/
|
|
|
|
NS_HIDDEN_(nsresult) PrepareInstanceOwner();
|
|
|
|
|
2003-04-12 15:03:08 +00:00
|
|
|
friend class nsPluginInstanceOwner;
|
2000-04-14 22:48:30 +00:00
|
|
|
private:
|
|
|
|
nsPluginInstanceOwner *mInstanceOwner;
|
2002-05-02 20:46:22 +00:00
|
|
|
nsRect mWindowlessRect;
|
2005-04-14 21:50:46 +00:00
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
// For assertions that make it easier to determine if a crash is due
|
|
|
|
// to the underlying problem described in bug 136927.
|
|
|
|
PRBool mInstantiating;
|
|
|
|
#endif
|
2000-04-14 22:48:30 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* nsObjectFrame_h___ */
|