2008-04-19 15:31:50 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
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/. */
|
2008-04-19 15:31:50 +00:00
|
|
|
|
|
|
|
#ifndef nsScreenQt_h___
|
|
|
|
#define nsScreenQt_h___
|
|
|
|
|
2012-01-05 02:12:48 +00:00
|
|
|
#include "nsBaseScreen.h"
|
2008-04-19 15:31:50 +00:00
|
|
|
|
|
|
|
//------------------------------------------------------------------------
|
|
|
|
|
2012-01-05 02:12:48 +00:00
|
|
|
class nsScreenQt : public nsBaseScreen
|
2008-04-19 15:31:50 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
nsScreenQt (int aScreen);
|
|
|
|
virtual ~nsScreenQt();
|
|
|
|
|
2014-07-20 16:55:00 +00:00
|
|
|
NS_IMETHOD GetId(uint32_t* aId);
|
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);
|
|
|
|
NS_IMETHOD GetPixelDepth(int32_t* aPixelDepth);
|
|
|
|
NS_IMETHOD GetColorDepth(int32_t* aColorDepth);
|
2008-04-19 15:31:50 +00:00
|
|
|
|
|
|
|
private:
|
2008-04-20 08:16:40 +00:00
|
|
|
int mScreen;
|
2008-04-19 15:31:50 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // nsScreenQt_h___
|