gecko-dev/layout/base/Units.h

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

/* -*- Mode: C++; tab-width: 20; 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/. */
#ifndef MOZ_UNITS_H_
#define MOZ_UNITS_H_
#include "mozilla/gfx/Point.h"
#include "nsDeviceContext.h"
namespace mozilla {
// The pixels that content authors use to specify sizes in.
struct CSSPixel {
static gfx::PointTyped<CSSPixel> FromAppUnits(const nsPoint &pt) {
return gfx::PointTyped<CSSPixel>(NSAppUnitsToFloatPixels(pt.x, float(nsDeviceContext::AppUnitsPerCSSPixel())),
NSAppUnitsToFloatPixels(pt.y, float(nsDeviceContext::AppUnitsPerCSSPixel())));
}
static nsPoint ToAppUnits(const gfx::PointTyped<CSSPixel> &pt) {
return nsPoint(NSFloatPixelsToAppUnits(pt.x, float(nsDeviceContext::AppUnitsPerCSSPixel())),
NSFloatPixelsToAppUnits(pt.y, float(nsDeviceContext::AppUnitsPerCSSPixel())));
}
static gfx::RectTyped<CSSPixel> FromAppUnits(const nsRect &rect) {
return gfx::RectTyped<CSSPixel>(NSAppUnitsToFloatPixels(rect.x, float(nsDeviceContext::AppUnitsPerCSSPixel())),
NSAppUnitsToFloatPixels(rect.y, float(nsDeviceContext::AppUnitsPerCSSPixel())),
NSAppUnitsToFloatPixels(rect.width, float(nsDeviceContext::AppUnitsPerCSSPixel())),
NSAppUnitsToFloatPixels(rect.height, float(nsDeviceContext::AppUnitsPerCSSPixel())));
}
};
typedef gfx::PointTyped<CSSPixel> CSSPoint;
typedef gfx::RectTyped<CSSPixel> CSSRect;
typedef gfx::IntRectTyped<CSSPixel> CSSIntRect;
struct LayerPixel {
static gfx::IntPointTyped<LayerPixel> FromCSSPointRounded(const CSSPoint& pt, float resolutionX, float resolutionY) {
return gfx::IntPointTyped<LayerPixel>(NS_lround(pt.x * resolutionX),
NS_lround(pt.y * resolutionY));
}
static gfx::IntRectTyped<LayerPixel> RoundToInt(const gfx::RectTyped<LayerPixel>& rect) {
return gfx::IntRectTyped<LayerPixel>(NS_lround(rect.x),
NS_lround(rect.y),
NS_lround(rect.width),
NS_lround(rect.height));
}
static gfx::RectTyped<LayerPixel> FromCSSRect(const CSSRect& rect, float resolutionX, float resolutionY) {
return gfx::RectTyped<LayerPixel>(rect.x * resolutionX,
rect.y * resolutionY,
rect.width * resolutionX,
rect.height * resolutionY);
}
static gfx::IntRectTyped<LayerPixel> FromCSSRectRounded(const CSSRect& rect, float resolutionX, float resolutionY) {
return RoundToInt(FromCSSRect(rect, resolutionX, resolutionY));
}
static gfx::IntRectTyped<LayerPixel> FromCSSRectRoundOut(const CSSRect& rect, gfxFloat resolution) {
gfx::RectTyped<LayerPixel> scaled(rect.x, rect.y, rect.width, rect.height);
scaled.ScaleInverseRoundOut(resolution);
return gfx::IntRectTyped<LayerPixel>(scaled.x, scaled.y, scaled.width, scaled.height);
}
static CSSIntRect ToCSSIntRectRoundIn(const gfx::IntRectTyped<LayerPixel>& rect, gfxFloat resolution) {
gfx::IntRectTyped<CSSPixel> ret(rect.x, rect.y, rect.width, rect.height);
ret.ScaleInverseRoundIn(resolution, resolution);
return ret;
}
static CSSIntRect ToCSSIntRectRoundIn(const gfx::IntRectTyped<LayerPixel>& rect, gfxSize resolution) {
gfx::IntRectTyped<CSSPixel> ret(rect.x, rect.y, rect.width, rect.height);
ret.ScaleInverseRoundIn(resolution.width, resolution.height);
return ret;
}
};
typedef gfx::PointTyped<LayerPixel> LayerPoint;
typedef gfx::IntPointTyped<LayerPixel> LayerIntPoint;
typedef gfx::IntSizeTyped<LayerPixel> LayerIntSize;
typedef gfx::RectTyped<LayerPixel> LayerRect;
typedef gfx::IntRectTyped<LayerPixel> LayerIntRect;
struct ScreenPixel {
};
typedef gfx::PointTyped<ScreenPixel> ScreenPoint;
};
#endif