summaryrefslogtreecommitdiff
path: root/chromium/ui/keyboard/container_fullscreen_behavior.h
blob: 7383043e3665c732055441cbfb1f2e4bca28d8cd (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
30
31
32
33
34
35
36
37
38
39
40
// Copyright 2017 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_KEYBOARD_CONTAINER_FULLSCREEN_BEHAVIOR_H_
#define UI_KEYBOARD_CONTAINER_FULLSCREEN_BEHAVIOR_H_

#include "ui/aura/window.h"
#include "ui/keyboard/container_full_width_behavior.h"
#include "ui/keyboard/keyboard_controller.h"
#include "ui/keyboard/keyboard_export.h"

namespace keyboard {

class KEYBOARD_EXPORT ContainerFullscreenBehavior
    : public ContainerFullWidthBehavior {
 public:
  ContainerFullscreenBehavior(KeyboardController* controller);
  ~ContainerFullscreenBehavior() override;

  // ContainerFullWidthBehavior overrides
  gfx::Rect AdjustSetBoundsRequest(
      const gfx::Rect& display_bounds,
      const gfx::Rect& requested_bounds_in_screen_coords) override;
  void SetCanonicalBounds(aura::Window* container,
                          const gfx::Rect& display_bounds) override;
  ContainerType GetType() const override;
  void SetOccludedBounds(const gfx::Rect& occluded_bounds_in_window) override;
  gfx::Rect GetOccludedBounds(
      const gfx::Rect& visual_bounds_in_screen) const override;

 private:
  // The occluded bounds for fullscreen behavior is determined on the IME
  // extension side, so it has to be passed here via the extension API.
  gfx::Rect occluded_bounds_;
};

}  // namespace keyboard

#endif  // UI_KEYBOARD_CONTAINER_FULLSCREEN_BEHAVIOR_H_