2014-11-25 03:46:30 +00:00
|
|
|
// Copyright (c) 2014 GitHub, Inc.
|
|
|
|
// Use of this source code is governed by the MIT license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2019-06-19 20:56:58 +00:00
|
|
|
#ifndef SHELL_BROWSER_UI_X_WINDOW_STATE_WATCHER_H_
|
|
|
|
#define SHELL_BROWSER_UI_X_WINDOW_STATE_WATCHER_H_
|
2014-11-25 05:05:04 +00:00
|
|
|
|
2014-11-25 03:46:30 +00:00
|
|
|
#include "ui/events/platform/platform_event_observer.h"
|
|
|
|
|
2019-06-19 20:46:59 +00:00
|
|
|
#include "shell/browser/native_window_views.h"
|
2014-11-25 04:43:25 +00:00
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
namespace electron {
|
2014-11-25 03:46:30 +00:00
|
|
|
|
|
|
|
class WindowStateWatcher : public ui::PlatformEventObserver {
|
|
|
|
public:
|
|
|
|
explicit WindowStateWatcher(NativeWindowViews* window);
|
2018-05-16 19:12:45 +00:00
|
|
|
~WindowStateWatcher() override;
|
2014-11-25 03:46:30 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
// ui::PlatformEventObserver:
|
|
|
|
void WillProcessEvent(const ui::PlatformEvent& event) override;
|
|
|
|
void DidProcessEvent(const ui::PlatformEvent& event) override;
|
|
|
|
|
|
|
|
private:
|
2014-11-25 04:43:25 +00:00
|
|
|
bool IsWindowStateEvent(const ui::PlatformEvent& event);
|
|
|
|
|
2014-11-25 03:46:30 +00:00
|
|
|
NativeWindowViews* window_;
|
|
|
|
gfx::AcceleratedWidget widget_;
|
|
|
|
|
2018-05-21 22:18:38 +00:00
|
|
|
bool was_minimized_ = false;
|
|
|
|
bool was_maximized_ = false;
|
2014-11-25 04:43:25 +00:00
|
|
|
|
2014-11-25 03:46:30 +00:00
|
|
|
DISALLOW_COPY_AND_ASSIGN(WindowStateWatcher);
|
|
|
|
};
|
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
} // namespace electron
|
2014-11-25 05:05:04 +00:00
|
|
|
|
2019-06-19 20:56:58 +00:00
|
|
|
#endif // SHELL_BROWSER_UI_X_WINDOW_STATE_WATCHER_H_
|