2007-06-12 10:10:23 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 15:12:37 +04:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2000-02-07 11:47:48 +03:00
|
|
|
|
|
|
|
#ifndef nsMathMLmactionFrame_h___
|
|
|
|
#define nsMathMLmactionFrame_h___
|
|
|
|
|
|
|
|
#include "nsCOMPtr.h"
|
2013-05-10 16:40:44 +04:00
|
|
|
#include "nsMathMLSelectedFrame.h"
|
2011-06-28 21:59:14 +04:00
|
|
|
#include "nsIDOMEventListener.h"
|
2012-06-19 07:26:34 +04:00
|
|
|
#include "mozilla/Attributes.h"
|
2000-02-07 11:47:48 +03:00
|
|
|
|
|
|
|
//
|
|
|
|
// <maction> -- bind actions to a subexpression
|
|
|
|
//
|
|
|
|
|
2013-05-10 16:40:44 +04:00
|
|
|
class nsMathMLmactionFrame : public nsMathMLSelectedFrame {
|
2000-02-07 11:47:48 +03:00
|
|
|
public:
|
2017-05-26 13:11:11 +03:00
|
|
|
NS_DECL_FRAMEARENA_HELPERS(nsMathMLmactionFrame)
|
2009-09-12 20:49:24 +04:00
|
|
|
|
2006-03-27 01:30:36 +04:00
|
|
|
friend nsIFrame* NS_NewMathMLmactionFrame(nsIPresShell* aPresShell, nsStyleContext* aContext);
|
2000-02-07 11:47:48 +03:00
|
|
|
|
2013-03-20 05:47:48 +04:00
|
|
|
virtual void
|
2014-05-25 02:20:40 +04:00
|
|
|
Init(nsIContent* aContent,
|
|
|
|
nsContainerFrame* aParent,
|
2015-03-21 19:28:04 +03:00
|
|
|
nsIFrame* aPrevInFlow) override;
|
2000-02-07 11:47:48 +03:00
|
|
|
|
2014-05-28 23:36:58 +04:00
|
|
|
virtual void
|
2011-08-25 00:54:30 +04:00
|
|
|
SetInitialChildList(ChildListID aListID,
|
2015-03-21 19:28:04 +03:00
|
|
|
nsFrameList& aChildList) override;
|
2000-02-07 11:47:48 +03:00
|
|
|
|
2006-01-09 03:36:46 +03:00
|
|
|
virtual nsresult
|
2015-03-21 19:28:04 +03:00
|
|
|
ChildListChanged(int32_t aModType) override;
|
2001-05-19 16:09:41 +04:00
|
|
|
|
2014-02-18 11:47:48 +04:00
|
|
|
virtual nsresult
|
2012-08-22 19:56:38 +04:00
|
|
|
AttributeChanged(int32_t aNameSpaceID,
|
2012-05-18 21:35:43 +04:00
|
|
|
nsIAtom* aAttribute,
|
2015-03-21 19:28:04 +03:00
|
|
|
int32_t aModType) override;
|
2012-05-18 21:35:43 +04:00
|
|
|
|
2009-11-04 01:43:39 +03:00
|
|
|
private:
|
|
|
|
void MouseClick();
|
|
|
|
void MouseOver();
|
|
|
|
void MouseOut();
|
2000-02-07 11:47:48 +03:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
class MouseListener final : public nsIDOMEventListener
|
2011-06-28 21:59:14 +04:00
|
|
|
{
|
2014-06-24 02:40:01 +04:00
|
|
|
private:
|
|
|
|
~MouseListener() {}
|
|
|
|
|
|
|
|
public:
|
2009-11-04 01:43:39 +03:00
|
|
|
NS_DECL_ISUPPORTS
|
2011-06-28 21:59:14 +04:00
|
|
|
NS_DECL_NSIDOMEVENTLISTENER
|
2009-11-04 01:43:39 +03:00
|
|
|
|
2014-09-01 07:36:37 +04:00
|
|
|
explicit MouseListener(nsMathMLmactionFrame* aOwner) : mOwner(aOwner) { }
|
2009-11-04 01:43:39 +03:00
|
|
|
|
|
|
|
nsMathMLmactionFrame* mOwner;
|
|
|
|
};
|
2000-02-07 11:47:48 +03:00
|
|
|
|
|
|
|
protected:
|
2014-09-01 07:36:37 +04:00
|
|
|
explicit nsMathMLmactionFrame(nsStyleContext* aContext) :
|
2017-05-26 13:11:11 +03:00
|
|
|
nsMathMLSelectedFrame(aContext, kClassID) {}
|
2000-02-07 11:47:48 +03:00
|
|
|
virtual ~nsMathMLmactionFrame();
|
|
|
|
|
|
|
|
private:
|
2012-08-22 19:56:38 +04:00
|
|
|
int32_t mActionType;
|
|
|
|
int32_t mChildCount;
|
|
|
|
int32_t mSelection;
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<MouseListener> mListener;
|
2000-02-07 11:47:48 +03:00
|
|
|
|
|
|
|
// helper to return the frame for the attribute selection="number"
|
|
|
|
nsIFrame*
|
2015-03-21 19:28:04 +03:00
|
|
|
GetSelectedFrame() override;
|
2000-02-07 11:47:48 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* nsMathMLmactionFrame_h___ */
|