summaryrefslogtreecommitdiffstats
path: root/ash/wm/window_frame.h
blob: 85be38dbaa5373f933620bf2ccbdb45d33e40cf2 (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
// Copyright (c) 2012 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_WINDOW_FRAME_H_
#define ASH_WM_WINDOW_FRAME_H_
#pragma once

#include "ash/ash_export.h"
#include "ui/aura/window.h"

namespace ash {

// Interface for clients implementing a window frame.  Implementors should
// add a pointer to this interface to each aura::Window, using the key above.
class ASH_EXPORT WindowFrame {
 public:
  virtual ~WindowFrame() {}

  // Called when the mouse enters or exits a top-level window.
  virtual void OnWindowHoverChanged(bool hovered) = 0;
};

// aura::Window property name for a pointer to the WindowFrame interface.
ASH_EXPORT extern const aura::WindowProperty<WindowFrame*>* const
    kWindowFrameKey;

}  // namespace ash

#endif  // ASH_WM_WINDOW_FRAME_H_