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
   30
   31
   32
   33
   34
   35
   36
   37
   38
   39
   40
   41
   42
   43
   44
   45
   46

ash / frame / snap_controller_impl.h [blame]

// Copyright 2018 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef ASH_FRAME_SNAP_CONTROLLER_IMPL_H_
#define ASH_FRAME_SNAP_CONTROLLER_IMPL_H_

#include <memory>

#include "ash/ash_export.h"
#include "chromeos/ui/frame/caption_buttons/snap_controller.h"

namespace ash {

class PhantomWindowController;

// A controller for toplevel window actions which can only run in Ash.
class ASH_EXPORT SnapControllerImpl : public chromeos::SnapController {
 public:
  SnapControllerImpl();

  SnapControllerImpl(const SnapControllerImpl&) = delete;
  SnapControllerImpl& operator=(const SnapControllerImpl&) = delete;

  ~SnapControllerImpl() override;

  bool CanSnap(aura::Window* window) override;
  void ShowSnapPreview(aura::Window* window,
                       chromeos::SnapDirection snap,
                       bool allow_haptic_feedback) override;
  void CommitSnap(aura::Window* window,
                  chromeos::SnapDirection snap,
                  float snap_ratio,
                  SnapRequestSource snap_request_source) override;

  const PhantomWindowController* phantom_window_controller_for_testing() const {
    return phantom_window_controller_.get();
  }

 private:
  std::unique_ptr<PhantomWindowController> phantom_window_controller_;
};

}  // namespace ash

#endif  // ASH_FRAME_SNAP_CONTROLLER_IMPL_H_