/src/mozilla-central/dom/grid/GridArea.cpp
Line | Count | Source (jump to first uncovered line) |
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/. */ |
6 | | |
7 | | #include "GridArea.h" |
8 | | #include "mozilla/dom/GridBinding.h" |
9 | | #include "Grid.h" |
10 | | |
11 | | namespace mozilla { |
12 | | namespace dom { |
13 | | |
14 | | NS_IMPL_CYCLE_COLLECTION_WRAPPERCACHE(GridArea, mParent) |
15 | | NS_IMPL_CYCLE_COLLECTING_ADDREF(GridArea) |
16 | | NS_IMPL_CYCLE_COLLECTING_RELEASE(GridArea) |
17 | 0 | NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION(GridArea) |
18 | 0 | NS_WRAPPERCACHE_INTERFACE_MAP_ENTRY |
19 | 0 | NS_INTERFACE_MAP_ENTRY(nsISupports) |
20 | 0 | NS_INTERFACE_MAP_END |
21 | | |
22 | | GridArea::GridArea(Grid* aParent, |
23 | | const nsString& aName, |
24 | | GridDeclaration aType, |
25 | | uint32_t aRowStart, |
26 | | uint32_t aRowEnd, |
27 | | uint32_t aColumnStart, |
28 | | uint32_t aColumnEnd) |
29 | | : mParent(aParent) |
30 | | , mName(aName) |
31 | | , mType(aType) |
32 | | , mRowStart(aRowStart) |
33 | | , mRowEnd(aRowEnd) |
34 | | , mColumnStart(aColumnStart) |
35 | | , mColumnEnd(aColumnEnd) |
36 | 0 | { |
37 | 0 | } |
38 | | |
39 | | GridArea::~GridArea() |
40 | 0 | { |
41 | 0 | } |
42 | | |
43 | | JSObject* |
44 | | GridArea::WrapObject(JSContext* aCx, JS::Handle<JSObject*> aGivenProto) |
45 | 0 | { |
46 | 0 | return GridArea_Binding::Wrap(aCx, this, aGivenProto); |
47 | 0 | } |
48 | | |
49 | | void |
50 | | GridArea::GetName(nsString& aName) const |
51 | 0 | { |
52 | 0 | aName = mName; |
53 | 0 | } |
54 | | |
55 | | GridDeclaration |
56 | | GridArea::Type() const |
57 | 0 | { |
58 | 0 | return mType; |
59 | 0 | } |
60 | | |
61 | | uint32_t |
62 | | GridArea::RowStart() const |
63 | 0 | { |
64 | 0 | return mRowStart; |
65 | 0 | } |
66 | | |
67 | | uint32_t |
68 | | GridArea::RowEnd() const |
69 | 0 | { |
70 | 0 | return mRowEnd; |
71 | 0 | } |
72 | | |
73 | | uint32_t |
74 | | GridArea::ColumnStart() const |
75 | 0 | { |
76 | 0 | return mColumnStart; |
77 | 0 | } |
78 | | |
79 | | uint32_t |
80 | | GridArea::ColumnEnd() const |
81 | 0 | { |
82 | 0 | return mColumnEnd; |
83 | 0 | } |
84 | | |
85 | | } // namespace dom |
86 | | } // namespace mozilla |