blob: 7babc8fb9d22118431fd445c2b53371f97a320a6 [file] [log] [blame]
// Copyright 2018 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 ASH_WM_OVERVIEW_DROP_TARGET_VIEW_H_
#define ASH_WM_OVERVIEW_DROP_TARGET_VIEW_H_
#include "base/macros.h"
#include "ui/views/view.h"
namespace ash {
// DropTargetView represents a transparent view with border in overview. It
// includes a background view and plus icon. Dragged window in tablet mode can
// be dragged into it and then dropped into overview.
class DropTargetView : public views::View {
public:
explicit DropTargetView(bool has_plus_icon);
~DropTargetView() override = default;
// Updates the visibility of |background_view_| since it is only shown when
// drop target is selected in overview.
void UpdateBackgroundVisibility(bool visible);
// views::View:
void Layout() override;
private:
class PlusIconView;
views::View* background_view_ = nullptr;
PlusIconView* plus_icon_ = nullptr;
DISALLOW_COPY_AND_ASSIGN(DropTargetView);
};
} // namespace ash
#endif // ASH_WM_OVERVIEW_DROP_TARGET_VIEW_H_