2008-04-19 15:41:14 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
|
|
/* vim:expandtab:shiftwidth=4:tabstop=4:
|
|
|
|
*/
|
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:41:14 +00:00
|
|
|
|
|
|
|
#ifndef nsIdleServiceQt_h__
|
|
|
|
#define nsIdleServiceQt_h__
|
|
|
|
|
|
|
|
#include "nsIdleService.h"
|
2010-09-09 23:46:25 +00:00
|
|
|
|
2013-08-25 23:56:53 +00:00
|
|
|
#if defined(MOZ_X11)
|
2008-04-19 15:41:14 +00:00
|
|
|
#include <X11/Xlib.h>
|
|
|
|
#include <X11/Xutil.h>
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
Window window; // Screen saver window
|
|
|
|
int state; // ScreenSaver(Off,On,Disabled)
|
|
|
|
int kind; // ScreenSaver(Blanked,Internal,External)
|
|
|
|
unsigned long til_or_since; // milliseconds since/til screensaver kicks in
|
|
|
|
unsigned long idle; // milliseconds idle
|
|
|
|
unsigned long event_mask; // event stuff
|
|
|
|
} XScreenSaverInfo;
|
2010-09-09 23:46:25 +00:00
|
|
|
#endif
|
2008-04-19 15:41:14 +00:00
|
|
|
|
|
|
|
class nsIdleServiceQt : public nsIdleService
|
|
|
|
{
|
|
|
|
public:
|
2012-06-29 08:32:21 +00:00
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
2008-04-19 15:41:14 +00:00
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
bool PollIdleTime(uint32_t* aIdleTime);
|
2010-04-16 17:37:16 +00:00
|
|
|
|
2012-06-29 08:32:21 +00:00
|
|
|
static already_AddRefed<nsIdleServiceQt> GetInstance()
|
|
|
|
{
|
2013-05-27 23:29:36 +00:00
|
|
|
nsRefPtr<nsIdleServiceQt> idleService =
|
|
|
|
nsIdleService::GetInstance().downcast<nsIdleServiceQt>();
|
2012-06-29 08:32:21 +00:00
|
|
|
if (!idleService) {
|
|
|
|
idleService = new nsIdleServiceQt();
|
|
|
|
}
|
|
|
|
|
2013-05-27 23:29:36 +00:00
|
|
|
return idleService.forget();
|
2012-06-29 08:32:21 +00:00
|
|
|
}
|
|
|
|
|
2008-04-19 15:41:14 +00:00
|
|
|
private:
|
2013-08-25 23:56:53 +00:00
|
|
|
#if defined(MOZ_X11)
|
2008-04-19 15:41:14 +00:00
|
|
|
XScreenSaverInfo* mXssInfo;
|
2010-09-09 23:46:25 +00:00
|
|
|
#endif
|
2010-04-16 17:37:16 +00:00
|
|
|
|
|
|
|
protected:
|
2012-06-29 08:32:21 +00:00
|
|
|
nsIdleServiceQt();
|
|
|
|
virtual ~nsIdleServiceQt();
|
2010-04-16 17:37:16 +00:00
|
|
|
bool UsePollMode();
|
2008-04-19 15:41:14 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // nsIdleServiceQt_h__
|