2006-09-20 21:08:24 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2012-05-21 11:12:37 +00: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/. */
|
2006-09-20 21:08:24 +00:00
|
|
|
|
2007-01-18 06:34:07 +00:00
|
|
|
#ifndef nsScreenCocoa_h_
|
|
|
|
#define nsScreenCocoa_h_
|
2006-09-20 21:08:24 +00:00
|
|
|
|
2007-01-18 06:34:07 +00:00
|
|
|
#import <Cocoa/Cocoa.h>
|
2006-09-20 21:08:24 +00:00
|
|
|
|
2012-01-05 02:12:48 +00:00
|
|
|
#include "nsBaseScreen.h"
|
2006-09-20 21:08:24 +00:00
|
|
|
|
2012-01-05 02:12:48 +00:00
|
|
|
class nsScreenCocoa : public nsBaseScreen
|
2006-09-20 21:08:24 +00:00
|
|
|
{
|
|
|
|
public:
|
2014-09-01 03:33:13 +00:00
|
|
|
explicit nsScreenCocoa (NSScreen *screen);
|
2006-09-20 21:08:24 +00:00
|
|
|
~nsScreenCocoa ();
|
|
|
|
|
2014-07-14 17:22:26 +00:00
|
|
|
NS_IMETHOD GetId(uint32_t* outId);
|
2012-08-22 15:56:38 +00:00
|
|
|
NS_IMETHOD GetRect(int32_t* aLeft, int32_t* aTop, int32_t* aWidth, int32_t* aHeight);
|
|
|
|
NS_IMETHOD GetAvailRect(int32_t* aLeft, int32_t* aTop, int32_t* aWidth, int32_t* aHeight);
|
2012-10-16 19:41:19 +00:00
|
|
|
NS_IMETHOD GetRectDisplayPix(int32_t* aLeft, int32_t* aTop, int32_t* aWidth, int32_t* aHeight);
|
|
|
|
NS_IMETHOD GetAvailRectDisplayPix(int32_t* aLeft, int32_t* aTop, int32_t* aWidth, int32_t* aHeight);
|
2012-08-22 15:56:38 +00:00
|
|
|
NS_IMETHOD GetPixelDepth(int32_t* aPixelDepth);
|
|
|
|
NS_IMETHOD GetColorDepth(int32_t* aColorDepth);
|
2012-10-02 19:48:05 +00:00
|
|
|
NS_IMETHOD GetContentsScaleFactor(double* aContentsScaleFactor);
|
2006-09-20 21:08:24 +00:00
|
|
|
|
|
|
|
NSScreen *CocoaScreen() { return mScreen; }
|
|
|
|
|
|
|
|
private:
|
2012-09-29 11:36:09 +00:00
|
|
|
CGFloat BackingScaleFactor();
|
|
|
|
|
2006-09-20 21:08:24 +00:00
|
|
|
NSScreen *mScreen;
|
2014-07-14 17:22:26 +00:00
|
|
|
uint32_t mId;
|
2006-09-20 21:08:24 +00:00
|
|
|
};
|
|
|
|
|
2007-01-18 06:34:07 +00:00
|
|
|
#endif // nsScreenCocoa_h_
|