2012-01-05 06:12:48 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
* vim: sw=2 ts=8 et :
|
|
|
|
*/
|
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/. */
|
2012-01-05 06:12:48 +04:00
|
|
|
|
|
|
|
#ifndef nsBaseScreen_h
|
|
|
|
#define nsBaseScreen_h
|
|
|
|
|
|
|
|
#include "mozilla/Attributes.h"
|
|
|
|
#include "nsIScreen.h"
|
|
|
|
|
|
|
|
class nsBaseScreen : public nsIScreen {
|
|
|
|
public:
|
|
|
|
nsBaseScreen();
|
2014-06-24 20:36:44 +04:00
|
|
|
|
2012-01-05 06:12:48 +04:00
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
|
|
|
|
// nsIScreen interface
|
|
|
|
|
2012-10-16 23:41:19 +04:00
|
|
|
// These simply forward to the device-pixel versions;
|
2015-11-25 22:11:58 +03:00
|
|
|
// implementations where desktop pixels may not correspond
|
2012-10-16 23:41:19 +04:00
|
|
|
// to per-screen device pixels must override.
|
|
|
|
NS_IMETHOD GetRectDisplayPix(int32_t* outLeft, int32_t* outTop,
|
2015-03-21 19:28:04 +03:00
|
|
|
int32_t* outWidth, int32_t* outHeight) override;
|
2012-10-16 23:41:19 +04:00
|
|
|
NS_IMETHOD GetAvailRectDisplayPix(int32_t* outLeft, int32_t* outTop,
|
2015-03-21 19:28:04 +03:00
|
|
|
int32_t* outWidth,
|
|
|
|
int32_t* outHeight) override;
|
2012-10-16 23:41:19 +04:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
NS_IMETHOD GetContentsScaleFactor(double* aContentsScaleFactor) override;
|
2012-10-02 23:48:05 +04:00
|
|
|
|
2016-02-05 19:29:33 +03:00
|
|
|
NS_IMETHOD GetDefaultCSSScaleFactor(double* aScaleFactor) override;
|
|
|
|
|
2017-06-06 13:09:34 +03:00
|
|
|
NS_IMETHOD GetDpi(float* aDPI) override;
|
|
|
|
|
2012-01-05 06:12:48 +04:00
|
|
|
protected:
|
2014-06-24 20:36:44 +04:00
|
|
|
virtual ~nsBaseScreen();
|
2012-01-05 06:12:48 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // nsBaseScreen_h
|