1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set ts=8 sts=2 et sw=2 tw=80: */
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 #ifndef mozilla_dom_FlexItemValues_h
8 #define mozilla_dom_FlexItemValues_h
10 #include "mozilla/dom/FlexBinding.h"
11 #include "nsISupports.h"
12 #include "nsWrapperCache.h"
14 struct ComputedFlexItemInfo
;
18 namespace mozilla::dom
{
20 class DOMRectReadOnly
;
24 class FlexItemValues
: public nsISupports
, public nsWrapperCache
{
26 explicit FlexItemValues(FlexLineValues
* aParent
,
27 const ComputedFlexItemInfo
* aItem
);
30 virtual ~FlexItemValues() = default;
33 NS_DECL_CYCLE_COLLECTING_ISUPPORTS
34 NS_DECL_CYCLE_COLLECTION_WRAPPERCACHE_CLASS(FlexItemValues
)
36 virtual JSObject
* WrapObject(JSContext
* aCx
,
37 JS::Handle
<JSObject
*> aGivenProto
) override
;
38 FlexLineValues
* GetParentObject() { return mParent
; }
40 nsINode
* GetNode() const;
41 DOMRectReadOnly
* FrameRect() const;
42 double MainBaseSize() const;
43 double MainDeltaSize() const;
44 double MainMinSize() const;
45 double MainMaxSize() const;
46 double CrossMinSize() const;
47 double CrossMaxSize() const;
48 FlexItemClampState
ClampState() const;
51 RefPtr
<FlexLineValues
> mParent
;
52 RefPtr
<nsINode
> mNode
;
53 RefPtr
<DOMRectReadOnly
> mFrameRect
;
55 // These sizes are all CSS pixel units.
57 double mMainDeltaSize
;
62 FlexItemClampState mClampState
;
65 } // namespace mozilla::dom
67 #endif /* mozilla_dom_FlexItemValues_h */