mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 15:15:23 +00:00
58 lines
1.3 KiB
Plaintext
58 lines
1.3 KiB
Plaintext
/* -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil; tab-width: 8 -*- */
|
|
/* 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/. */
|
|
|
|
include protocol PBrowser;
|
|
include protocol PContent;
|
|
|
|
using struct nsIntRect from "nsRect.h";
|
|
|
|
namespace mozilla {
|
|
namespace dom {
|
|
|
|
struct ScreenDetails {
|
|
uint32_t id;
|
|
nsIntRect rect;
|
|
nsIntRect availRect;
|
|
int32_t pixelDepth;
|
|
int32_t colorDepth;
|
|
double contentsScaleFactor;
|
|
};
|
|
|
|
rpc protocol PScreenManager
|
|
{
|
|
manager PContent;
|
|
|
|
parent:
|
|
rpc Refresh()
|
|
returns (uint32_t numberOfScreens,
|
|
float systemDefaultScale,
|
|
bool success);
|
|
|
|
rpc ScreenRefresh(uint32_t aId)
|
|
returns (ScreenDetails screen,
|
|
bool success);
|
|
|
|
rpc GetPrimaryScreen()
|
|
returns (ScreenDetails screen,
|
|
bool success);
|
|
|
|
rpc ScreenForRect(int32_t aLeft,
|
|
int32_t aTop,
|
|
int32_t aWidth,
|
|
int32_t aHeight)
|
|
returns (ScreenDetails screen,
|
|
bool success);
|
|
|
|
rpc ScreenForBrowser(PBrowser aBrowser)
|
|
returns (ScreenDetails screen,
|
|
bool success);
|
|
|
|
child:
|
|
__delete__();
|
|
};
|
|
|
|
} // namespace dom
|
|
} // namespace mozilla
|