OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef UI_VIEWS_BUBBLE_BUBBLE_FRAME_VIEW_H_ | 5 #ifndef UI_VIEWS_BUBBLE_BUBBLE_FRAME_VIEW_H_ |
6 #define UI_VIEWS_BUBBLE_BUBBLE_FRAME_VIEW_H_ | 6 #define UI_VIEWS_BUBBLE_BUBBLE_FRAME_VIEW_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "base/gtest_prod_util.h" | 9 #include "base/gtest_prod_util.h" |
10 #include "ui/views/bubble/bubble_border.h" | 10 #include "ui/views/bubble/bubble_border.h" |
(...skipping 14 matching lines...) Expand all Loading... |
25 bool allow_bubble_offscreen); | 25 bool allow_bubble_offscreen); |
26 virtual ~BubbleFrameView(); | 26 virtual ~BubbleFrameView(); |
27 | 27 |
28 // NonClientFrameView overrides: | 28 // NonClientFrameView overrides: |
29 virtual gfx::Rect GetBoundsForClientView() const OVERRIDE; | 29 virtual gfx::Rect GetBoundsForClientView() const OVERRIDE; |
30 virtual gfx::Rect GetWindowBoundsForClientBounds( | 30 virtual gfx::Rect GetWindowBoundsForClientBounds( |
31 const gfx::Rect& client_bounds) const OVERRIDE; | 31 const gfx::Rect& client_bounds) const OVERRIDE; |
32 virtual int NonClientHitTest(const gfx::Point& point) OVERRIDE; | 32 virtual int NonClientHitTest(const gfx::Point& point) OVERRIDE; |
33 virtual void GetWindowMask(const gfx::Size& size, | 33 virtual void GetWindowMask(const gfx::Size& size, |
34 gfx::Path* window_mask) OVERRIDE {} | 34 gfx::Path* window_mask) OVERRIDE {} |
35 virtual void EnableClose(bool enable) OVERRIDE {} | |
36 virtual void ResetWindowControls() OVERRIDE {} | 35 virtual void ResetWindowControls() OVERRIDE {} |
37 virtual void UpdateWindowIcon() OVERRIDE {} | 36 virtual void UpdateWindowIcon() OVERRIDE {} |
38 | 37 |
39 // View overrides: | 38 // View overrides: |
40 virtual gfx::Size GetPreferredSize() OVERRIDE; | 39 virtual gfx::Size GetPreferredSize() OVERRIDE; |
41 | 40 |
42 // Accessor for bubble border inside border contents. | 41 // Accessor for bubble border inside border contents. |
43 BubbleBorder* bubble_border() const; | 42 BubbleBorder* bubble_border() const; |
44 | 43 |
45 private: | 44 private: |
46 FRIEND_TEST_ALL_PREFIXES(BubbleFrameViewBasicTest, GetBoundsForClientView); | 45 FRIEND_TEST_ALL_PREFIXES(BubbleFrameViewBasicTest, GetBoundsForClientView); |
47 | 46 |
48 BorderContentsView* border_contents_; | 47 BorderContentsView* border_contents_; |
49 BubbleBorder::ArrowLocation location_; | 48 BubbleBorder::ArrowLocation location_; |
50 bool allow_bubble_offscreen_; | 49 bool allow_bubble_offscreen_; |
51 | 50 |
52 DISALLOW_COPY_AND_ASSIGN(BubbleFrameView); | 51 DISALLOW_COPY_AND_ASSIGN(BubbleFrameView); |
53 }; | 52 }; |
54 | 53 |
55 } // namespace views | 54 } // namespace views |
56 | 55 |
57 #endif // UI_VIEWS_BUBBLE_BUBBLE_FRAME_VIEW_H_ | 56 #endif // UI_VIEWS_BUBBLE_BUBBLE_FRAME_VIEW_H_ |
OLD | NEW |