summaryrefslogtreecommitdiffstats
path: root/chromium/ui/base/hit_test.cc
blob: 40af4ca39e7ac7d741824d81e40b1dc0c721cd73 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// Copyright 2019 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.

#include "ui/base/hit_test.h"

namespace ui {

bool IsResizingComponent(int component) {
  switch (component) {
    case HTBOTTOM:
    case HTBOTTOMLEFT:
    case HTBOTTOMRIGHT:
    case HTLEFT:
    case HTRIGHT:
    case HTTOP:
    case HTTOPLEFT:
    case HTTOPRIGHT:
      return true;
    default:
      return false;
  }
}

bool CanPerformDragOrResize(int component) {
  return component == HTCAPTION || IsResizingComponent(component);
}

}  // namespace ui