2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2012-05-21 04:12:37 -07: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/. */
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
#ifndef nsScreenCocoa_h_
|
|
|
|
#define nsScreenCocoa_h_
|
|
|
|
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
2012-01-04 18:12:48 -08:00
|
|
|
#include "nsBaseScreen.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2012-01-04 18:12:48 -08:00
|
|
|
class nsScreenCocoa : public nsBaseScreen
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
nsScreenCocoa (NSScreen *screen);
|
|
|
|
~nsScreenCocoa ();
|
|
|
|
|
2012-08-22 08:56:38 -07: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 12:41:19 -07: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 08:56:38 -07:00
|
|
|
NS_IMETHOD GetPixelDepth(int32_t* aPixelDepth);
|
|
|
|
NS_IMETHOD GetColorDepth(int32_t* aColorDepth);
|
2012-10-02 12:48:05 -07:00
|
|
|
NS_IMETHOD GetContentsScaleFactor(double* aContentsScaleFactor);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
NSScreen *CocoaScreen() { return mScreen; }
|
|
|
|
|
|
|
|
private:
|
2012-09-29 04:36:09 -07:00
|
|
|
CGFloat BackingScaleFactor();
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
NSScreen *mScreen;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // nsScreenCocoa_h_
|