electron/shell/browser/api/atom_api_power_monitor.h

82 lines
2.2 KiB
C
Raw Normal View History

// Copyright (c) 2013 GitHub, Inc.
2014-04-25 09:49:37 +00:00
// Use of this source code is governed by the MIT license that can be
2013-08-03 07:58:59 +00:00
// found in the LICENSE file.
2019-06-19 20:56:58 +00:00
#ifndef SHELL_BROWSER_API_ATOM_API_POWER_MONITOR_H_
#define SHELL_BROWSER_API_ATOM_API_POWER_MONITOR_H_
2013-08-03 07:58:59 +00:00
#include "base/compiler_specific.h"
2014-04-17 09:13:17 +00:00
#include "native_mate/handle.h"
#include "shell/browser/api/trackable_object.h"
#include "shell/browser/lib/power_observer.h"
#include "ui/base/idle/idle.h"
2013-08-03 07:58:59 +00:00
namespace electron {
2013-08-03 07:58:59 +00:00
namespace api {
class PowerMonitor : public mate::TrackableObject<PowerMonitor>,
public PowerObserver {
2013-08-03 07:58:59 +00:00
public:
2015-05-22 11:11:22 +00:00
static v8::Local<v8::Value> Create(v8::Isolate* isolate);
2013-08-03 07:58:59 +00:00
2016-04-25 01:17:54 +00:00
static void BuildPrototype(v8::Isolate* isolate,
v8::Local<v8::FunctionTemplate> prototype);
2016-04-25 01:17:54 +00:00
2013-08-03 07:58:59 +00:00
protected:
2016-04-25 01:17:54 +00:00
explicit PowerMonitor(v8::Isolate* isolate);
~PowerMonitor() override;
// Called by native calles.
bool ShouldShutdown();
#if defined(OS_LINUX)
// Private JS APIs.
void BlockShutdown();
void UnblockShutdown();
#endif
#if defined(OS_MACOSX) || defined(OS_WIN)
void InitPlatformSpecificMonitors();
#endif
2014-04-17 09:13:17 +00:00
// base::PowerObserver implementations:
2015-01-10 01:24:36 +00:00
void OnPowerStateChange(bool on_battery_power) override;
void OnSuspend() override;
void OnResume() override;
2013-08-03 07:58:59 +00:00
2014-04-18 09:28:05 +00:00
private:
ui::IdleState GetSystemIdleState(v8::Isolate* isolate, int idle_threshold);
int GetSystemIdleTime();
#if defined(OS_WIN)
// Static callback invoked when a message comes in to our messaging window.
static LRESULT CALLBACK WndProcStatic(HWND hwnd,
UINT message,
WPARAM wparam,
LPARAM lparam);
LRESULT CALLBACK WndProc(HWND hwnd,
UINT message,
WPARAM wparam,
LPARAM lparam);
// The window class of |window_|.
ATOM atom_;
// The handle of the module that contains the window procedure of |window_|.
HMODULE instance_;
// The window used for processing events.
HWND window_;
#endif
2013-08-03 07:58:59 +00:00
DISALLOW_COPY_AND_ASSIGN(PowerMonitor);
};
} // namespace api
} // namespace electron
2013-08-03 07:58:59 +00:00
2019-06-19 20:56:58 +00:00
#endif // SHELL_BROWSER_API_ATOM_API_POWER_MONITOR_H_