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.
|
|
|
|
|
2021-11-22 07:34:31 +00:00
|
|
|
#ifndef ELECTRON_SHELL_BROWSER_UI_X_WINDOW_STATE_WATCHER_H_
|
|
|
|
#define ELECTRON_SHELL_BROWSER_UI_X_WINDOW_STATE_WATCHER_H_
|
2014-11-25 05:05:04 +00:00
|
|
|
|
2020-02-06 07:05:30 +00:00
|
|
|
#include "ui/events/platform/x11/x11_event_source.h"
|
2020-11-14 00:16:56 +00:00
|
|
|
#include "ui/gfx/x/event.h"
|
2014-11-25 03:46:30 +00:00
|
|
|
|
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
|
|
|
|
2020-12-22 22:14:44 +00:00
|
|
|
class WindowStateWatcher : public x11::EventObserver {
|
2014-11-25 03:46:30 +00:00
|
|
|
public:
|
|
|
|
explicit WindowStateWatcher(NativeWindowViews* window);
|
2018-05-16 19:12:45 +00:00
|
|
|
~WindowStateWatcher() override;
|
2014-11-25 03:46:30 +00:00
|
|
|
|
2021-11-03 11:41:45 +00:00
|
|
|
// disable copy
|
|
|
|
WindowStateWatcher(const WindowStateWatcher&) = delete;
|
|
|
|
WindowStateWatcher& operator=(const WindowStateWatcher&) = delete;
|
|
|
|
|
2014-11-25 03:46:30 +00:00
|
|
|
protected:
|
2020-12-22 22:14:44 +00:00
|
|
|
// x11::EventObserver:
|
|
|
|
void OnEvent(const x11::Event& x11_event) override;
|
2014-11-25 03:46:30 +00:00
|
|
|
|
|
|
|
private:
|
2020-12-22 22:14:44 +00:00
|
|
|
bool IsWindowStateEvent(const x11::Event& x11_event) const;
|
2014-11-25 04:43:25 +00:00
|
|
|
|
2014-11-25 03:46:30 +00:00
|
|
|
NativeWindowViews* window_;
|
|
|
|
gfx::AcceleratedWidget widget_;
|
2021-02-02 17:50:32 +00:00
|
|
|
const x11::Atom net_wm_state_atom_;
|
|
|
|
const x11::Atom net_wm_state_hidden_atom_;
|
|
|
|
const x11::Atom net_wm_state_maximized_vert_atom_;
|
|
|
|
const x11::Atom net_wm_state_maximized_horz_atom_;
|
|
|
|
const x11::Atom net_wm_state_fullscreen_atom_;
|
2022-01-17 07:46:52 +00:00
|
|
|
|
|
|
|
bool was_minimized_ = false;
|
|
|
|
bool was_maximized_ = false;
|
2014-11-25 03:46:30 +00:00
|
|
|
};
|
|
|
|
|
2019-06-19 21:23:04 +00:00
|
|
|
} // namespace electron
|
2014-11-25 05:05:04 +00:00
|
|
|
|
2021-11-22 07:34:31 +00:00
|
|
|
#endif // ELECTRON_SHELL_BROWSER_UI_X_WINDOW_STATE_WATCHER_H_
|