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 CHROME_BROWSER_UI_VIEWS_FIRST_RUN_BUBBLE_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_FIRST_RUN_BUBBLE_H_ |
6 #define CHROME_BROWSER_UI_VIEWS_FIRST_RUN_BUBBLE_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_FIRST_RUN_BUBBLE_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
11 #include "base/memory/weak_ptr.h" | 11 #include "base/memory/weak_ptr.h" |
12 #include "chrome/browser/first_run/first_run.h" | 12 #include "chrome/browser/first_run/first_run.h" |
13 #include "chrome/browser/ui/views/bubble/bubble.h" | 13 #include "views/bubble/bubble_delegate.h" |
14 | |
15 namespace views { | |
msw
2011/10/20 19:17:50
You shouldn't need these forward declarations, sin
alicet1
2011/10/21 19:13:16
Done.
| |
16 class View; | |
17 class Widget; | |
18 } | |
14 | 19 |
15 class FirstRunBubbleViewBase; | 20 class FirstRunBubbleViewBase; |
16 class Profile; | 21 class Profile; |
17 | 22 |
18 class FirstRunBubble : public Bubble, | 23 class FirstRunBubble : public views::BubbleDelegateView { |
19 public BubbleDelegate { | |
20 public: | 24 public: |
21 static FirstRunBubble* Show(Profile* profile, | 25 // Static method to create a first run bubble and delegate. |
22 views::Widget* parent, | 26 static views::Widget* Show(Profile* profile, |
23 const gfx::Rect& position_relative_to, | 27 views::Widget* parent, |
24 views::BubbleBorder::ArrowLocation arrow_location, | 28 const gfx::Rect& position_relative_to, |
25 FirstRun::BubbleType bubble_type); | 29 views::BubbleBorder::ArrowLocation arrow_location, |
30 FirstRun::BubbleType bubble_type); | |
31 | |
32 // BubbleDelegateView override: | |
33 virtual gfx::Point GetAnchorPoint() const OVERRIDE; | |
34 | |
35 // WidgetDelegate override: | |
36 virtual void WindowClosing() OVERRIDE; | |
37 | |
38 protected: | |
39 // BubbleDelegateView override: | |
40 virtual void Init() OVERRIDE; | |
26 | 41 |
27 private: | 42 private: |
28 FirstRunBubble(); | 43 FirstRunBubble(Profile* profile, |
44 views::Widget* parent, | |
45 const gfx::Rect& position_relative_to, | |
46 views::BubbleBorder::ArrowLocation arrow_location, | |
47 FirstRun::BubbleType bubble_type); | |
29 virtual ~FirstRunBubble(); | 48 virtual ~FirstRunBubble(); |
30 | 49 |
31 void set_view(FirstRunBubbleViewBase* view) { view_ = view; } | 50 #if defined(OS_WIN) && !defined(USE_AURA) |
32 | |
33 // Re-enable the parent window. | 51 // Re-enable the parent window. |
34 void EnableParent(); | 52 void EnableParent(); |
35 | 53 |
36 #if defined(OS_WIN) && !defined(USE_AURA) | |
37 // Overridden from Bubble: | 54 // Overridden from Bubble: |
38 virtual void OnActivate(UINT action, BOOL minimized, HWND window) OVERRIDE; | 55 virtual void OnActivate(UINT action, BOOL minimized, HWND window) OVERRIDE; |
39 #endif | 56 #endif |
40 | 57 |
41 // BubbleDelegate. | 58 Profile* profile_; |
42 virtual void BubbleClosing(Bubble* bubble, bool closed_by_escape) OVERRIDE; | 59 views::Widget* parent_; |
43 virtual bool CloseOnEscape() OVERRIDE { return true; } | 60 const gfx::Rect position_relative_to_; |
msw
2011/10/20 19:17:50
merge and you won't need to store position_relativ
alicet1
2011/10/21 19:13:16
Done.
| |
44 virtual bool FadeInOnShow() OVERRIDE { return true; } | 61 views::BubbleBorder::ArrowLocation arrow_location_; |
62 FirstRun::BubbleType bubble_type_; | |
45 | 63 |
46 // Whether we have already been activated. | 64 // Whether we have already been activated. |
47 bool has_been_activated_; | 65 bool has_been_activated_; |
48 | 66 |
49 base::WeakPtrFactory<FirstRunBubble> enable_window_method_factory_; | 67 base::WeakPtrFactory<FirstRunBubble> enable_window_method_factory_; |
50 | 68 |
51 // The view inside the FirstRunBubble. | |
52 FirstRunBubbleViewBase* view_; | |
53 | |
54 DISALLOW_COPY_AND_ASSIGN(FirstRunBubble); | 69 DISALLOW_COPY_AND_ASSIGN(FirstRunBubble); |
55 }; | 70 }; |
56 | 71 |
57 #endif // CHROME_BROWSER_UI_VIEWS_FIRST_RUN_BUBBLE_H_ | 72 #endif // CHROME_BROWSER_UI_VIEWS_FIRST_RUN_BUBBLE_H_ |
OLD | NEW |