blob: cb0f1e9a95c73bd88a4fcb86a398e7a3fa51dcfd [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 COMPONENTS_EXO_INPUT_METHOD_SURFACE_H_
#define COMPONENTS_EXO_INPUT_METHOD_SURFACE_H_
#include "base/macros.h"
#include "components/exo/client_controlled_shell_surface.h"
#include "components/exo/surface_delegate.h"
#include "components/exo/surface_observer.h"
namespace exo {
class InputMethodSurfaceManager;
// Handles input method surface role of a given surface.
class InputMethodSurface : public ClientControlledShellSurface {
public:
InputMethodSurface(InputMethodSurfaceManager* manager,
Surface* surface,
double default_device_scale_factor);
~InputMethodSurface() override;
static exo::InputMethodSurface* GetInputMethodSurface();
// Overridden from SurfaceDelegate:
void OnSurfaceCommit() override;
gfx::Rect GetBounds() const;
private:
InputMethodSurfaceManager* const manager_;
bool added_to_manager_ = false;
// The bounds of this surface in DIP.
gfx::Rect input_method_bounds_;
double default_device_scale_factor_;
DISALLOW_COPY_AND_ASSIGN(InputMethodSurface);
};
} // namespace exo
#endif // COMPONENTS_EXO_INPUT_METHOD_SURFACE_H_