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-01-04 18:12:48 -08:00
|
|
|
NS_IMETHOD GetRect(PRInt32* aLeft, PRInt32* aTop, PRInt32* aWidth, PRInt32* aHeight);
|
|
|
|
NS_IMETHOD GetAvailRect(PRInt32* aLeft, PRInt32* aTop, PRInt32* aWidth, PRInt32* aHeight);
|
|
|
|
NS_IMETHOD GetPixelDepth(PRInt32* aPixelDepth);
|
|
|
|
NS_IMETHOD GetColorDepth(PRInt32* aColorDepth);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
NSScreen *CocoaScreen() { return mScreen; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
NSScreen *mScreen;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // nsScreenCocoa_h_
|