e72f4f7f26
* chore: bump chromium in DEPS to 123.0.6300.2 * chore: bump chromium in DEPS to 123.0.6301.2 * chore: update patches * chore: bump chromium in DEPS to 123.0.6302.0 * chore: bump chromium in DEPS to 123.0.6304.0 * chore: update patches * chore: bump chromium in DEPS to 123.0.6306.2 * chore: update patches * chore: bump chromium in DEPS to 123.0.6308.0 * chore: update patches * Refactor //components/pdf/common constants https://chromium-review.googlesource.com/c/chromium/src/+/5292816 * Rename URLLoaderFactoryParams::is_corb_enabled to is_orb_enabled. Refs https://chromium-review.googlesource.com/c/chromium/src/+/5277040 * Add placeholder of speaker-selection permission. Refs https://chromium-review.googlesource.com/c/chromium/src/+/5278243 * Move kPdfMimeType to //components/pdf/common/constants.h Refs https://chromium-review.googlesource.com/c/chromium/src/+/5293155 * chore: gen-libc++-filenames.js * Make GetClassName non virtual Refs https://chromium-review.googlesource.com/c/chromium/src/+/5293075 Refs https://issues.chromium.org/issues/324596267 * chore: bump chromium in DEPS to 123.0.6310.0 * chore: update filenames.libcxx.gni * 5282732: Compute input region using correct pixel size. https://chromium-review.googlesource.com/c/chromium/src/+/5282732 * fixup: Make GetClassName non virtual * chore: bump chromium in DEPS to 123.0.6312.0 * chore: update patches * chore: bump chromium in DEPS to 123.0.6312.5 * fixup: Make GetClassName non virtual * docs: document speaker-selection https://chromium-review.googlesource.com/c/chromium/src/+/5278243 --------- Co-authored-by: electron-roller[bot] <84116207+electron-roller[bot]@users.noreply.github.com> Co-authored-by: deepak1556 <hop2deep@gmail.com> Co-authored-by: PatchUp <73610968+patchup[bot]@users.noreply.github.com> Co-authored-by: John Kleinschmidt <jkleinsc@electronjs.org>
97 lines
3.4 KiB
C++
97 lines
3.4 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.
|
|
//
|
|
// Portions of this file are sourced from
|
|
// chrome/browser/ui/views/frame/glass_browser_frame_view.h,
|
|
// Copyright (c) 2012 The Chromium Authors,
|
|
// which is governed by a BSD-style license
|
|
|
|
#ifndef ELECTRON_SHELL_BROWSER_UI_VIEWS_WIN_FRAME_VIEW_H_
|
|
#define ELECTRON_SHELL_BROWSER_UI_VIEWS_WIN_FRAME_VIEW_H_
|
|
|
|
#include "shell/browser/native_window_views.h"
|
|
#include "shell/browser/ui/views/frameless_view.h"
|
|
#include "shell/browser/ui/views/win_caption_button.h"
|
|
#include "shell/browser/ui/views/win_caption_button_container.h"
|
|
#include "ui/base/metadata/metadata_header_macros.h"
|
|
|
|
namespace electron {
|
|
|
|
class WinFrameView : public FramelessView {
|
|
METADATA_HEADER(WinFrameView, FramelessView)
|
|
|
|
public:
|
|
WinFrameView();
|
|
~WinFrameView() override;
|
|
|
|
void Init(NativeWindowViews* window, views::Widget* frame) override;
|
|
|
|
// Alpha to use for features in the titlebar (the window title and caption
|
|
// buttons) when the window is inactive. They are opaque when active.
|
|
static constexpr SkAlpha kInactiveTitlebarFeatureAlpha = 0x66;
|
|
|
|
SkColor GetReadableFeatureColor(SkColor background_color);
|
|
|
|
// Tells the NonClientView to invalidate the WinFrameView's caption buttons.
|
|
void InvalidateCaptionButtons();
|
|
|
|
// views::NonClientFrameView:
|
|
gfx::Rect GetWindowBoundsForClientBounds(
|
|
const gfx::Rect& client_bounds) const override;
|
|
int NonClientHitTest(const gfx::Point& point) override;
|
|
|
|
NativeWindowViews* window() const { return window_; }
|
|
views::Widget* frame() const { return frame_; }
|
|
WinCaptionButtonContainer* caption_button_container() {
|
|
return caption_button_container_;
|
|
}
|
|
|
|
bool IsMaximized() const;
|
|
|
|
bool ShouldCustomDrawSystemTitlebar() const;
|
|
|
|
// Visual height of the titlebar when the window is maximized (i.e. excluding
|
|
// the area above the top of the screen).
|
|
int TitlebarMaximizedVisualHeight() const;
|
|
|
|
protected:
|
|
// views::View:
|
|
void Layout(PassKey) override;
|
|
|
|
private:
|
|
friend class WinCaptionButtonContainer;
|
|
|
|
int FrameBorderThickness() const;
|
|
|
|
// views::ViewTargeterDelegate:
|
|
views::View* TargetForRect(views::View* root, const gfx::Rect& rect) override;
|
|
|
|
// Returns the thickness of the window border for the top edge of the frame,
|
|
// which is sometimes different than FrameBorderThickness(). Does not include
|
|
// the titlebar/tabstrip area. If |restored| is true, this is calculated as if
|
|
// the window was restored, regardless of its current state.
|
|
int FrameTopBorderThickness(bool restored) const;
|
|
int FrameTopBorderThicknessPx(bool restored) const;
|
|
|
|
// Returns the height of the titlebar for popups or other browser types that
|
|
// don't have tabs.
|
|
int TitlebarHeight(int custom_height) const;
|
|
|
|
// Returns the y coordinate for the top of the frame, which in maximized mode
|
|
// is the top of the screen and in restored mode is 1 pixel below the top of
|
|
// the window to leave room for the visual border that Windows draws.
|
|
int WindowTopY() const;
|
|
|
|
void LayoutCaptionButtons();
|
|
void LayoutWindowControlsOverlay();
|
|
|
|
// The container holding the caption buttons (minimize, maximize, close, etc.)
|
|
// May be null if the caption button container is destroyed before the frame
|
|
// view. Always check for validity before using!
|
|
raw_ptr<WinCaptionButtonContainer> caption_button_container_;
|
|
};
|
|
|
|
} // namespace electron
|
|
|
|
#endif // ELECTRON_SHELL_BROWSER_UI_VIEWS_WIN_FRAME_VIEW_H_
|