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

39 lines
964 B
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_
#include "ui/events/platform/x11/x11_event_source.h"
2014-11-25 03:46:30 +00:00
#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::XEventObserver {
2014-11-25 03:46:30 +00:00
public:
explicit WindowStateWatcher(NativeWindowViews* window);
~WindowStateWatcher() override;
2014-11-25 03:46:30 +00:00
protected:
// ui::XEventObserver:
void WillProcessXEvent(XEvent* xev) override;
void DidProcessXEvent(XEvent* xev) override;
2014-11-25 03:46:30 +00:00
private:
bool IsWindowStateEvent(XEvent* xev);
2014-11-25 04:43:25 +00:00
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_