blob: 318a31bdb0134b026d46af81b85bbc9dbe4978bf [file] [log] [blame]
// Copyright 2020 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef UI_GFX_GEOMETRY_RESIZE_UTILS_H_
#define UI_GFX_GEOMETRY_RESIZE_UTILS_H_
#include "ui/gfx/geometry/geometry_export.h"
namespace gfx {
class Rect;
class Size;
enum class ResizeEdge {
kBottom,
kBottomLeft,
kBottomRight,
kLeft,
kRight,
kTop,
kTopLeft,
kTopRight
};
// Updates |rect| to adhere to the |aspect_ratio| of the window, if it has
// been set. |resize_edge| refers to the edge of the window being sized.
// |min_window_size| and |max_window_size| are expected to adhere to the
// given aspect ratio.
// |aspect_ratio| must be valid and is found using width / height.
// TODO(apacible): |max_window_size| is expected to be non-empty. Handle
// unconstrained max sizes and sizing when windows are maximized.
void GEOMETRY_EXPORT SizeRectToAspectRatio(ResizeEdge resize_edge,
float aspect_ratio,
const Size& min_window_size,
const Size& max_window_size,
Rect* rect);
} // namespace gfx
#endif // UI_GFX_GEOMETRY_RESIZE_UTILS_H_