|
Server : Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.17 System : Linux localhost 2.6.18-419.el5 #1 SMP Fri Feb 24 22:47:42 UTC 2017 x86_64 User : nobody ( 99) PHP Version : 5.2.17 Disable Function : NONE Directory : /proc/22697/root/usr/include/xulrunner-17.0.10/ |
Upload File : |
/*
* DO NOT EDIT. THIS FILE IS GENERATED FROM /builddir/build/BUILD/xulrunner-17.0.10/mozilla-esr17/widget/nsIScreen.idl
*/
#ifndef __gen_nsIScreen_h__
#define __gen_nsIScreen_h__
#ifndef __gen_nsISupports_h__
#include "nsISupports.h"
#endif
/* For IDL files that don't want to include root IDL files. */
#ifndef NS_NO_VTABLE
#define NS_NO_VTABLE
#endif
/* starting interface: nsIScreen */
#define NS_ISCREEN_IID_STR "d961f76e-8437-4bc6-9ada-a1c98ace9560"
#define NS_ISCREEN_IID \
{0xd961f76e, 0x8437, 0x4bc6, \
{ 0x9a, 0xda, 0xa1, 0xc9, 0x8a, 0xce, 0x95, 0x60 }}
class NS_NO_VTABLE nsIScreen : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_ISCREEN_IID)
enum {
BRIGHTNESS_DIM = 0U,
BRIGHTNESS_FULL = 1U,
BRIGHTNESS_LEVELS = 2U,
ROTATION_0_DEG = 0U,
ROTATION_90_DEG = 1U,
ROTATION_180_DEG = 2U,
ROTATION_270_DEG = 3U
};
/* void GetRect (out long left, out long top, out long width, out long height); */
NS_IMETHOD GetRect(int32_t *left, int32_t *top, int32_t *width, int32_t *height) = 0;
/* void GetAvailRect (out long left, out long top, out long width, out long height); */
NS_IMETHOD GetAvailRect(int32_t *left, int32_t *top, int32_t *width, int32_t *height) = 0;
/* void lockMinimumBrightness (in unsigned long brightness); */
NS_IMETHOD LockMinimumBrightness(uint32_t brightness) = 0;
/* void unlockMinimumBrightness (in unsigned long brightness); */
NS_IMETHOD UnlockMinimumBrightness(uint32_t brightness) = 0;
/* readonly attribute long pixelDepth; */
NS_IMETHOD GetPixelDepth(int32_t *aPixelDepth) = 0;
/* readonly attribute long colorDepth; */
NS_IMETHOD GetColorDepth(int32_t *aColorDepth) = 0;
/* attribute unsigned long rotation; */
NS_IMETHOD GetRotation(uint32_t *aRotation) = 0;
NS_IMETHOD SetRotation(uint32_t aRotation) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsIScreen, NS_ISCREEN_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSISCREEN \
NS_IMETHOD GetRect(int32_t *left, int32_t *top, int32_t *width, int32_t *height); \
NS_IMETHOD GetAvailRect(int32_t *left, int32_t *top, int32_t *width, int32_t *height); \
NS_IMETHOD LockMinimumBrightness(uint32_t brightness); \
NS_IMETHOD UnlockMinimumBrightness(uint32_t brightness); \
NS_IMETHOD GetPixelDepth(int32_t *aPixelDepth); \
NS_IMETHOD GetColorDepth(int32_t *aColorDepth); \
NS_IMETHOD GetRotation(uint32_t *aRotation); \
NS_IMETHOD SetRotation(uint32_t aRotation);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSISCREEN(_to) \
NS_IMETHOD GetRect(int32_t *left, int32_t *top, int32_t *width, int32_t *height) { return _to GetRect(left, top, width, height); } \
NS_IMETHOD GetAvailRect(int32_t *left, int32_t *top, int32_t *width, int32_t *height) { return _to GetAvailRect(left, top, width, height); } \
NS_IMETHOD LockMinimumBrightness(uint32_t brightness) { return _to LockMinimumBrightness(brightness); } \
NS_IMETHOD UnlockMinimumBrightness(uint32_t brightness) { return _to UnlockMinimumBrightness(brightness); } \
NS_IMETHOD GetPixelDepth(int32_t *aPixelDepth) { return _to GetPixelDepth(aPixelDepth); } \
NS_IMETHOD GetColorDepth(int32_t *aColorDepth) { return _to GetColorDepth(aColorDepth); } \
NS_IMETHOD GetRotation(uint32_t *aRotation) { return _to GetRotation(aRotation); } \
NS_IMETHOD SetRotation(uint32_t aRotation) { return _to SetRotation(aRotation); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSISCREEN(_to) \
NS_IMETHOD GetRect(int32_t *left, int32_t *top, int32_t *width, int32_t *height) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetRect(left, top, width, height); } \
NS_IMETHOD GetAvailRect(int32_t *left, int32_t *top, int32_t *width, int32_t *height) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetAvailRect(left, top, width, height); } \
NS_IMETHOD LockMinimumBrightness(uint32_t brightness) { return !_to ? NS_ERROR_NULL_POINTER : _to->LockMinimumBrightness(brightness); } \
NS_IMETHOD UnlockMinimumBrightness(uint32_t brightness) { return !_to ? NS_ERROR_NULL_POINTER : _to->UnlockMinimumBrightness(brightness); } \
NS_IMETHOD GetPixelDepth(int32_t *aPixelDepth) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetPixelDepth(aPixelDepth); } \
NS_IMETHOD GetColorDepth(int32_t *aColorDepth) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetColorDepth(aColorDepth); } \
NS_IMETHOD GetRotation(uint32_t *aRotation) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetRotation(aRotation); } \
NS_IMETHOD SetRotation(uint32_t aRotation) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetRotation(aRotation); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsScreen : public nsIScreen
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSISCREEN
nsScreen();
private:
~nsScreen();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS1(nsScreen, nsIScreen)
nsScreen::nsScreen()
{
/* member initializers and constructor code */
}
nsScreen::~nsScreen()
{
/* destructor code */
}
/* void GetRect (out long left, out long top, out long width, out long height); */
NS_IMETHODIMP nsScreen::GetRect(int32_t *left, int32_t *top, int32_t *width, int32_t *height)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void GetAvailRect (out long left, out long top, out long width, out long height); */
NS_IMETHODIMP nsScreen::GetAvailRect(int32_t *left, int32_t *top, int32_t *width, int32_t *height)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void lockMinimumBrightness (in unsigned long brightness); */
NS_IMETHODIMP nsScreen::LockMinimumBrightness(uint32_t brightness)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* void unlockMinimumBrightness (in unsigned long brightness); */
NS_IMETHODIMP nsScreen::UnlockMinimumBrightness(uint32_t brightness)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute long pixelDepth; */
NS_IMETHODIMP nsScreen::GetPixelDepth(int32_t *aPixelDepth)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute long colorDepth; */
NS_IMETHODIMP nsScreen::GetColorDepth(int32_t *aColorDepth)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* attribute unsigned long rotation; */
NS_IMETHODIMP nsScreen::GetRotation(uint32_t *aRotation)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP nsScreen::SetRotation(uint32_t aRotation)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsIScreen_h__ */