680399f476
* feat: Implement BrowserWindow.moveAbove(mediaSourceId) BrowserWindow.{focus,blur,moveTop}() are not enough in some situations. For example when implementing an overlay that follows another window that can lose focus. In that case it is useful to move the overlay above the tracked window. sourceId is a string in the format of DesktopCapturerSource.id, for example "window:1869:0". Notes: Added BrowserWindow.moveAbove(mediaSourceId) https://github.com/electron/electron/issues/18922 * feat: Implement BrowserWindow.getMediaSourceId Return the Window id in the format of DesktopCapturerSource's id. For example "window🔢0". https://github.com/electron/electron/issues/16460 Notes: Added BrowserWindow.getMediaSourceId
37 lines
1.1 KiB
C++
37 lines
1.1 KiB
C++
// Copyright (c) 2014 GitHub, Inc.
|
|
// Use of this source code is governed by the MIT license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#ifndef SHELL_BROWSER_UI_X_X_WINDOW_UTILS_H_
|
|
#define SHELL_BROWSER_UI_X_X_WINDOW_UTILS_H_
|
|
|
|
#include <string>
|
|
|
|
#include "ui/gfx/x/x11.h"
|
|
|
|
namespace electron {
|
|
|
|
::Atom GetAtom(const char* name);
|
|
|
|
// Sends a message to the x11 window manager, enabling or disabling the |state|
|
|
// for _NET_WM_STATE.
|
|
void SetWMSpecState(::Window xwindow, bool enabled, ::Atom state);
|
|
|
|
// Sets the _NET_WM_WINDOW_TYPE of window.
|
|
void SetWindowType(::Window xwindow, const std::string& type);
|
|
|
|
// Returns true if the bus name "com.canonical.AppMenu.Registrar" is available.
|
|
bool ShouldUseGlobalMenuBar();
|
|
|
|
// Bring the given window to the front regardless of focus.
|
|
void MoveWindowToForeground(::Window xwindow);
|
|
|
|
// Move a given window above the other one.
|
|
void MoveWindowAbove(::Window xwindow, ::Window other_xwindow);
|
|
|
|
// Return true is the given window exists, false otherwise.
|
|
bool IsWindowValid(::Window xwindow);
|
|
|
|
} // namespace electron
|
|
|
|
#endif // SHELL_BROWSER_UI_X_X_WINDOW_UTILS_H_
|