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_FlexLineValues_h
8 #define mozilla_dom_FlexLineValues_h
10 #include "mozilla/dom/FlexBinding.h"
11 #include "nsISupports.h"
12 #include "nsWrapperCache.h"
14 struct ComputedFlexLineInfo
;
16 namespace mozilla::dom
{
21 class FlexLineValues
: public nsISupports
, public nsWrapperCache
{
23 explicit FlexLineValues(Flex
* aParent
, const ComputedFlexLineInfo
* aLine
);
26 virtual ~FlexLineValues() = default;
29 NS_DECL_CYCLE_COLLECTING_ISUPPORTS
30 NS_DECL_CYCLE_COLLECTION_WRAPPERCACHE_CLASS(FlexLineValues
)
32 virtual JSObject
* WrapObject(JSContext
* aCx
,
33 JS::Handle
<JSObject
*> aGivenProto
) override
;
34 Flex
* GetParentObject() { return mParent
; }
36 FlexLineGrowthState
GrowthState() const;
37 double CrossStart() const;
38 double CrossSize() const;
39 double FirstBaselineOffset() const;
40 double LastBaselineOffset() const;
42 void GetItems(nsTArray
<RefPtr
<FlexItemValues
>>& aResult
);
47 FlexLineGrowthState mGrowthState
;
50 double mFirstBaselineOffset
;
51 double mLastBaselineOffset
;
53 nsTArray
<RefPtr
<FlexItemValues
>> mItems
;
56 } // namespace mozilla::dom
58 #endif /* mozilla_dom_FlexLineValues_h */