blob: d91b6f96d9e77c47cf47bb5ca03f80487f5de4d9 (
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
41
42
43
44
45
46
47
48
|
// 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_SYSTEM_TRAY_TRAY_BUBBLE_WRAPPER_H_
#define ASH_SYSTEM_TRAY_TRAY_BUBBLE_WRAPPER_H_
#include "base/macros.h"
#include "base/memory/scoped_ptr.h"
#include "ui/views/widget/widget_observer.h"
namespace views {
class TrayBubbleView;
}
namespace ash {
class TrayBackgroundView;
class TrayEventFilter;
// Creates and manages the Widget and EventFilter components of a bubble.
class TrayBubbleWrapper : public views::WidgetObserver {
public:
TrayBubbleWrapper(TrayBackgroundView* tray,
views::TrayBubbleView* bubble_view);
~TrayBubbleWrapper() override;
// views::WidgetObserver overrides:
void OnWidgetDestroying(views::Widget* widget) override;
void OnWidgetBoundsChanged(views::Widget* widget,
const gfx::Rect& new_bounds) override;
const TrayBackgroundView* tray() const { return tray_; }
TrayBackgroundView* tray() { return tray_; }
const views::TrayBubbleView* bubble_view() const { return bubble_view_; }
const views::Widget* bubble_widget() const { return bubble_widget_; }
private:
TrayBackgroundView* tray_;
views::TrayBubbleView* bubble_view_; // unowned
views::Widget* bubble_widget_;
DISALLOW_COPY_AND_ASSIGN(TrayBubbleWrapper);
};
} // namespace ash
#endif // ASH_SYSTEM_TRAY_TRAY_BUBBLE_WRAPPER_H_
|