Revision fe35f7bc8421176548b6a651d074786ea188952a authored by B2G Bumper Bot on 19 May 2014, 17:17:09 UTC, committed by B2G Bumper Bot on 19 May 2014, 17:17:09 UTC
1 parent f1627d5
Raw File
nsScreenQt.h
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* 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/. */

#ifndef nsScreenQt_h___
#define nsScreenQt_h___

#include "nsBaseScreen.h"

#ifdef MOZ_ENABLE_QMSYSTEM2
namespace MeeGo
{
    class QmDisplayState;
}
#endif


//------------------------------------------------------------------------

class nsScreenQt : public nsBaseScreen
{
public:
  nsScreenQt (int aScreen);
  virtual ~nsScreenQt();

  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);

#ifdef MOZ_ENABLE_QMSYSTEM2
protected:
  virtual void ApplyMinimumBrightness(uint32_t aType) MOZ_OVERRIDE;
private:
  MeeGo::QmDisplayState* mDisplayState;
#endif
private:
  int mScreen;
};

#endif  // nsScreenQt_h___
back to top