blob: ced3eae76feb076465703c4102d940f940f2c962 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* 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/. */
/*
* a piece of state that is stored in session history when the document
* is not
*/
#ifndef nsPresState_h_
#define nsPresState_h_
#include "nsPoint.h"
#include "gfxPoint.h"
#include "nsAutoPtr.h"
class nsPresState
{
public:
nsPresState()
: mContentData(nullptr)
, mScrollState(0, 0)
, mAllowScrollOriginDowngrade(true)
, mResolution(1.0)
, mScaleToResolution(false)
, mDisabledSet(false)
, mDisabled(false)
, mDroppedDown(false)
{}
void SetScrollState(const nsPoint& aState)
{
mScrollState = aState;
}
nsPoint GetScrollPosition() const
{
return mScrollState;
}
void SetAllowScrollOriginDowngrade(bool aAllowScrollOriginDowngrade)
{
mAllowScrollOriginDowngrade = aAllowScrollOriginDowngrade;
}
bool GetAllowScrollOriginDowngrade()
{
return mAllowScrollOriginDowngrade;
}
void SetResolution(float aSize)
{
mResolution = aSize;
}
float GetResolution() const
{
return mResolution;
}
void SetScaleToResolution(bool aScaleToResolution)
{
mScaleToResolution = aScaleToResolution;
}
bool GetScaleToResolution() const
{
return mScaleToResolution;
}
void ClearNonScrollState()
{
mContentData = nullptr;
mDisabledSet = false;
}
bool GetDisabled() const
{
return mDisabled;
}
void SetDisabled(bool aDisabled)
{
mDisabled = aDisabled;
mDisabledSet = true;
}
bool IsDisabledSet() const
{
return mDisabledSet;
}
nsISupports* GetStateProperty() const
{
return mContentData;
}
void SetStateProperty(nsISupports *aProperty)
{
mContentData = aProperty;
}
void SetDroppedDown(bool aDroppedDown)
{
mDroppedDown = aDroppedDown;
}
bool GetDroppedDown() const
{
return mDroppedDown;
}
// MEMBER VARIABLES
protected:
nsCOMPtr<nsISupports> mContentData;
nsPoint mScrollState;
bool mAllowScrollOriginDowngrade;
float mResolution;
bool mScaleToResolution;
bool mDisabledSet;
bool mDisabled;
bool mDroppedDown;
};
#endif /* nsPresState_h_ */
|