gecko-dev/layout/base/nsPresState.h

138 строки
2.5 KiB
C
Исходник Обычный вид История

2005-01-28 23:01:46 +03:00
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2012-05-21 15:12:37 +04:00
/* 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/. */
2005-01-28 23:01:46 +03:00
/*
* a piece of state that is stored in session history when the document
* is not
*/
2005-01-28 23:01:46 +03:00
#ifndef nsPresState_h_
#define nsPresState_h_
#include "nsPoint.h"
#include "gfxPoint.h"
#include "nsAutoPtr.h"
2005-01-28 23:01:46 +03:00
class nsPresState
{
public:
nsPresState()
: mContentData(nullptr)
, mScrollState(0, 0)
, mAllowScrollOriginDowngrade(true)
, mResolution(1.0)
, mScaleToResolution(false)
, mDisabledSet(false)
, mDisabled(false)
, mDroppedDown(false)
{}
2005-01-28 23:01:46 +03:00
void SetScrollState(const nsPoint& aState)
{
mScrollState = aState;
}
2005-01-28 23:01:46 +03:00
nsPoint GetScrollPosition() const
{
return mScrollState;
}
2005-01-28 23:01:46 +03:00
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;
}
2005-01-28 23:01:46 +03:00
bool GetDisabled() const
{
return mDisabled;
}
2005-01-28 23:01:46 +03:00
void SetDisabled(bool aDisabled)
{
mDisabled = aDisabled;
mDisabledSet = true;
}
2005-01-28 23:01:46 +03:00
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;
}
void SetPreviewText(const nsAString& aValue)
{
mPreviewText = aValue;
}
void GetPreviewText(nsAString& aValue)
{
aValue = mPreviewText;
}
2005-01-28 23:01:46 +03:00
// MEMBER VARIABLES
protected:
nsCOMPtr<nsISupports> mContentData;
nsPoint mScrollState;
bool mAllowScrollOriginDowngrade;
float mResolution;
bool mScaleToResolution;
bool mDisabledSet;
bool mDisabled;
bool mDroppedDown;
nsString mPreviewText;
2005-01-28 23:01:46 +03:00
};
#endif /* nsPresState_h_ */