blob: 4b65404bf1dd4c0d204d8aad2e53dca3fd58537e (
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
|
// 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 CHROME_BROWSER_UI_VIEWS_ASH_PANEL_VIEW_AURA_H_
#define CHROME_BROWSER_UI_VIEWS_ASH_PANEL_VIEW_AURA_H_
#pragma once
#include <string>
#include "base/basictypes.h"
#include "chrome/browser/sessions/session_id.h"
#include "chrome/browser/ui/base_window.h"
#include "ui/gfx/size.h"
#include "ui/views/controls/native/native_view_host.h"
#include "ui/views/widget/widget_delegate.h"
class ExtensionWindowController;
class GURL;
class Profile;
namespace content {
class WebContents;
}
namespace views {
class Widget;
}
namespace internal {
class PanelHost;
}
///////////////////////////////////////////////////////////////////////////////
// PanelViewAura is used to display HTML in a Panel window.
//
class PanelViewAura : public views::NativeViewHost,
public views::WidgetDelegate,
public BaseWindow {
public:
explicit PanelViewAura(const std::string& title);
virtual ~PanelViewAura();
views::Widget* Init(Profile* profile,
const GURL& url,
const gfx::Rect& bounds);
// Returns the WebContents associated with this panel.
content::WebContents* WebContents();
// Close the panel window.
void CloseView();
// Set the preferred size of the contents.
void SetContentPreferredSize(const gfx::Size& size);
const SessionID& session_id() const { return session_id_; }
ExtensionWindowController* extension_window_controller() const {
return extension_window_controller_.get();
}
// Overridden from views::View:
virtual gfx::Size GetPreferredSize() OVERRIDE;
// Overridden from views::WidgetDelegate:
virtual bool CanResize() const OVERRIDE;
virtual string16 GetWindowTitle() const OVERRIDE;
virtual views::View* GetContentsView() OVERRIDE;
virtual views::View* GetInitiallyFocusedView() OVERRIDE;
virtual bool ShouldShowWindowTitle() const OVERRIDE;
virtual views::Widget* GetWidget() OVERRIDE;
virtual const views::Widget* GetWidget() const OVERRIDE;
virtual views::NonClientFrameView* CreateNonClientFrameView(
views::Widget* widget) OVERRIDE;
// Overridden from BaseWindow:
virtual bool IsActive() const OVERRIDE;
virtual bool IsMaximized() const OVERRIDE;
virtual bool IsMinimized() const OVERRIDE;
virtual bool IsFullscreen() const OVERRIDE;
virtual gfx::Rect GetRestoredBounds() const OVERRIDE;
virtual gfx::Rect GetBounds() const OVERRIDE;
virtual void Show() OVERRIDE;
virtual void ShowInactive() OVERRIDE;
virtual void Close() OVERRIDE;
virtual void Activate() OVERRIDE;
virtual void Deactivate() OVERRIDE;
virtual void Maximize() OVERRIDE;
virtual void Minimize() OVERRIDE;
virtual void Restore() OVERRIDE;
virtual void SetBounds(const gfx::Rect& bounds) OVERRIDE;
virtual void SetDraggableRegion(SkRegion* region) OVERRIDE;
virtual void FlashFrame(bool flash) OVERRIDE;
virtual bool IsAlwaysOnTop() const OVERRIDE;
private:
const SessionID session_id_;
std::string title_;
gfx::Size preferred_size_;
// Owned internal host class implementing WebContents and Extension Delegates.
scoped_ptr<internal::PanelHost> host_;
// Unowned pointer to the widget.
views::Widget* widget_;
scoped_ptr<ExtensionWindowController> extension_window_controller_;
DISALLOW_COPY_AND_ASSIGN(PanelViewAura);
};
#endif // CHROME_BROWSER_UI_VIEWS_ASH_PANEL_VIEW_AURA_H_
|