2011-11-10 16:17:46 -08:00
|
|
|
/* -*- Mode: C++; tab-width: 40; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2012-07-20 02:10:44 -07:00
|
|
|
/* Copyright 2012 Mozilla Foundation and Mozilla contributors
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
2011-11-10 16:17:46 -08:00
|
|
|
|
|
|
|
#ifndef nsScreenManagerGonk_h___
|
|
|
|
#define nsScreenManagerGonk_h___
|
|
|
|
|
2012-05-08 14:36:07 -07:00
|
|
|
#include "mozilla/Hal.h"
|
2011-11-10 16:17:46 -08:00
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
|
2012-01-04 18:12:48 -08:00
|
|
|
#include "nsBaseScreen.h"
|
2011-11-10 16:17:46 -08:00
|
|
|
#include "nsIScreenManager.h"
|
|
|
|
|
2012-01-04 18:12:48 -08:00
|
|
|
class nsScreenGonk : public nsBaseScreen
|
2011-11-10 16:17:46 -08:00
|
|
|
{
|
2012-05-08 14:36:07 -07:00
|
|
|
typedef mozilla::hal::ScreenConfiguration ScreenConfiguration;
|
|
|
|
|
2011-11-10 16:17:46 -08:00
|
|
|
public:
|
2012-01-04 18:12:48 -08:00
|
|
|
nsScreenGonk(void* nativeScreen);
|
2011-11-10 16:17:46 -08:00
|
|
|
~nsScreenGonk();
|
|
|
|
|
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);
|
|
|
|
NS_IMETHOD GetPixelDepth(int32_t* aPixelDepth);
|
|
|
|
NS_IMETHOD GetColorDepth(int32_t* aColorDepth);
|
|
|
|
NS_IMETHOD GetRotation(uint32_t* aRotation);
|
|
|
|
NS_IMETHOD SetRotation(uint32_t aRotation);
|
2012-02-06 17:47:11 -08:00
|
|
|
|
|
|
|
static uint32_t GetRotation();
|
2012-05-08 14:36:07 -07:00
|
|
|
static ScreenConfiguration GetConfiguration();
|
2011-11-10 16:17:46 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
class nsScreenManagerGonk : public nsIScreenManager
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
nsScreenManagerGonk();
|
|
|
|
~nsScreenManagerGonk();
|
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSISCREENMANAGER
|
|
|
|
|
|
|
|
protected:
|
|
|
|
nsCOMPtr<nsIScreen> mOneScreen;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* nsScreenManagerGonk_h___ */
|