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_Flex_h
8 #define mozilla_dom_Flex_h
10 #include "mozilla/dom/FlexBinding.h"
11 #include "nsISupports.h"
12 #include "nsWrapperCache.h"
14 class nsFlexContainerFrame
;
22 class Flex
: public nsISupports
, public nsWrapperCache
{
24 explicit Flex(Element
* aParent
, nsFlexContainerFrame
* aFrame
);
27 virtual ~Flex() = default;
30 NS_DECL_CYCLE_COLLECTING_ISUPPORTS
31 NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_CLASS(Flex
)
33 virtual JSObject
* WrapObject(JSContext
* aCx
,
34 JS::Handle
<JSObject
*> aGivenProto
) override
;
35 Element
* GetParentObject() { return mParent
; }
37 void GetLines(nsTArray
<RefPtr
<FlexLineValues
>>& aResult
);
38 FlexPhysicalDirection
MainAxisDirection() const;
39 FlexPhysicalDirection
CrossAxisDirection() const;
42 nsCOMPtr
<Element
> mParent
;
43 nsTArray
<RefPtr
<FlexLineValues
>> mLines
;
44 FlexPhysicalDirection mMainAxisDirection
;
45 FlexPhysicalDirection mCrossAxisDirection
;
49 } // namespace mozilla
51 #endif /* mozilla_dom_Flex_h */