Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(714)

Side by Side Diff: chrome/browser/ui/views/tab_contents/tab_contents_container.h

Issue 3547008: Handle resize corner layout entirely in the platform BrowserWindow*/BrowserView* code... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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_TAB_CONTENTS_TAB_CONTENTS_CONTAINER_H_ 5 #ifndef CHROME_BROWSER_UI_VIEWS_TAB_CONTENTS_TAB_CONTENTS_CONTAINER_H_
6 #define CHROME_BROWSER_UI_VIEWS_TAB_CONTENTS_TAB_CONTENTS_CONTAINER_H_ 6 #define CHROME_BROWSER_UI_VIEWS_TAB_CONTENTS_TAB_CONTENTS_CONTAINER_H_
7 #pragma once 7 #pragma once
8 8
9 #include "chrome/browser/views/tab_contents/native_tab_contents_container.h" 9 #include "chrome/browser/views/tab_contents/native_tab_contents_container.h"
10 #include "chrome/common/notification_observer.h" 10 #include "chrome/common/notification_observer.h"
11 #include "chrome/common/notification_registrar.h" 11 #include "chrome/common/notification_registrar.h"
12 #include "views/view.h" 12 #include "views/view.h"
13 13
14 class NativeTabContentsContainer; 14 class NativeTabContentsContainer;
15 class RenderViewHost; 15 class RenderViewHost;
16 class RenderWidgetHostView;
16 class TabContents; 17 class TabContents;
17 18
18 class TabContentsContainer : public views::View, 19 class TabContentsContainer : public views::View,
19 public NotificationObserver { 20 public NotificationObserver {
20 public: 21 public:
22 // Interface to request the reserved contents area updates.
23 class ReservedAreaDelegate {
24 public:
25 // Notifies that |source|'s reserved contents area should be updated.
26 // Reserved contents area is a rect in tab contents view coordinates where
27 // contents should not be rendered (to display the resize corner, sidebar
28 // mini tabs or any other UI elements overlaying this container).
29 virtual void UpdateReservedContentsRect(
30 const TabContentsContainer* source) = 0;
31 protected:
32 virtual ~ReservedAreaDelegate() {}
33 };
34
21 TabContentsContainer(); 35 TabContentsContainer();
22 virtual ~TabContentsContainer(); 36 virtual ~TabContentsContainer();
23 37
24 // Changes the TabContents associated with this view. 38 // Changes the TabContents associated with this view.
25 void ChangeTabContents(TabContents* contents); 39 void ChangeTabContents(TabContents* contents);
26 40
27 View* GetFocusView() { return native_container_->GetView(); } 41 View* GetFocusView() { return native_container_->GetView(); }
28 42
29 // Accessor for |tab_contents_|. 43 // Accessor for |tab_contents_|.
30 TabContents* tab_contents() const { return tab_contents_; } 44 TabContents* tab_contents() const { return tab_contents_; }
31 45
32 // Called by the BrowserView to notify that |tab_contents| got the focus. 46 // Called by the BrowserView to notify that |tab_contents| got the focus.
33 void TabContentsFocused(TabContents* tab_contents); 47 void TabContentsFocused(TabContents* tab_contents);
34 48
35 // Tells the container to update less frequently during resizing operations 49 // Tells the container to update less frequently during resizing operations
36 // so performance is better. 50 // so performance is better.
37 void SetFastResize(bool fast_resize); 51 void SetFastResize(bool fast_resize);
38 52
53 void set_reserved_area_delegate(ReservedAreaDelegate* delegate) {
54 reserved_area_delegate_ = delegate;
55 }
56
39 // Overridden from NotificationObserver: 57 // Overridden from NotificationObserver:
40 virtual void Observe(NotificationType type, 58 virtual void Observe(NotificationType type,
41 const NotificationSource& source, 59 const NotificationSource& source,
42 const NotificationDetails& details); 60 const NotificationDetails& details);
43 61
44 // Overridden from views::View: 62 // Overridden from views::View:
45 virtual void Layout(); 63 virtual void Layout();
46 virtual AccessibilityTypes::Role GetAccessibleRole(); 64 virtual AccessibilityTypes::Role GetAccessibleRole();
47 65
48 protected: 66 protected:
49 // Overridden from views::View: 67 // Overridden from views::View:
50 virtual void ViewHierarchyChanged(bool is_add, views::View* parent, 68 virtual void ViewHierarchyChanged(bool is_add, views::View* parent,
51 views::View* child); 69 views::View* child);
52 70
53 private: 71 private:
54 // Add or remove observers for events that we care about. 72 // Add or remove observers for events that we care about.
55 void AddObservers(); 73 void AddObservers();
56 void RemoveObservers(); 74 void RemoveObservers();
57 75
58 // Called when the RenderViewHost of the hosted TabContents has changed, e.g. 76 // Called when the RenderViewHost of the hosted TabContents has changed, e.g.
59 // to show an interstitial page. 77 // to show an interstitial page.
60 void RenderViewHostChanged(RenderViewHost* old_host, 78 void RenderViewHostChanged(RenderViewHost* old_host,
61 RenderViewHost* new_host); 79 RenderViewHost* new_host);
62 80
63 // Called when a TabContents is destroyed. This gives us a chance to clean 81 // Called when a TabContents is destroyed. This gives us a chance to clean
64 // up our internal state if the TabContents is somehow destroyed before we 82 // up our internal state if the TabContents is somehow destroyed before we
65 // get notified. 83 // get notified.
66 void TabContentsDestroyed(TabContents* contents); 84 void TabContentsDestroyed(TabContents* contents);
67 85
86 // Called when the RenderWidgetHostView of the hosted TabContents has changed.
87 void RenderWidgetHostViewChanged(RenderWidgetHostView* old_view,
88 RenderWidgetHostView* new_view);
89
68 // An instance of a NativeTabContentsContainer object that holds the native 90 // An instance of a NativeTabContentsContainer object that holds the native
69 // view handle associated with the attached TabContents. 91 // view handle associated with the attached TabContents.
70 NativeTabContentsContainer* native_container_; 92 NativeTabContentsContainer* native_container_;
71 93
72 // The attached TabContents. 94 // The attached TabContents.
73 TabContents* tab_contents_; 95 TabContents* tab_contents_;
74 96
75 // Handles registering for our notifications. 97 // Handles registering for our notifications.
76 NotificationRegistrar registrar_; 98 NotificationRegistrar registrar_;
77 99
100 // Delegate for enquiring reserved contents area. Not owned by us.
101 ReservedAreaDelegate* reserved_area_delegate_;
102
78 DISALLOW_COPY_AND_ASSIGN(TabContentsContainer); 103 DISALLOW_COPY_AND_ASSIGN(TabContentsContainer);
79 }; 104 };
80 105
81 #endif // CHROME_BROWSER_UI_VIEWS_TAB_CONTENTS_TAB_CONTENTS_CONTAINER_H_ 106 #endif // CHROME_BROWSER_UI_VIEWS_TAB_CONTENTS_TAB_CONTENTS_CONTAINER_H_
OLDNEW
« no previous file with comments | « chrome/browser/ui/views/frame/browser_view.cc ('k') | chrome/browser/ui/views/tab_contents/tab_contents_container.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698