electron/shell/browser/ui/x/window_state_watcher.h

39 lines
1 KiB
C
Raw Normal View History

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 03:46:30 +00:00
#include "ui/events/platform/platform_event_observer.h"
#include "shell/browser/native_window_views.h"
2014-11-25 04:43:25 +00:00
namespace electron {
2014-11-25 03:46:30 +00:00
class WindowStateWatcher : public ui::PlatformEventObserver {
public:
explicit WindowStateWatcher(NativeWindowViews* window);
~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_;
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);
};
} // namespace electron
2019-06-19 20:56:58 +00:00
#endif // SHELL_BROWSER_UI_X_WINDOW_STATE_WATCHER_H_