forked from nwjs/nw.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbrowser_view_layout.cc
74 lines (53 loc) · 1.75 KB
/
browser_view_layout.cc
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
// Copyright (c) 2011 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.
#include "content/nw/src/browser/browser_view_layout.h"
#include "content/nw/src/common/shell_switches.h"
#include "base/logging.h"
using views::View;
namespace nw {
BrowserViewLayout::BrowserViewLayout()
: menu_bar_(NULL), web_view_(NULL), tool_bar_(NULL)
{
}
BrowserViewLayout::~BrowserViewLayout() {}
void BrowserViewLayout::Layout(View* host) {
if (!host->has_children())
return;
int y = 0;
gfx::Size host_size = host->GetContentsBounds().size();
if (menu_bar_) {
menu_bar_->SetBounds(0, y, host_size.width(), kMenuHeight);
y += kMenuHeight;
}
if (tool_bar_) {
int height = tool_bar_->GetPreferredSize().height();
tool_bar_->SetBounds(0, y, host_size.width(), height);
y += height;
}
web_view_->SetBounds(0, y, host_size.width(), host_size.height() - y);
}
gfx::Size BrowserViewLayout::GetPreferredSize(const View* host) const {
if (!host->has_children())
return gfx::Size();
gfx::Rect rect(web_view_->GetPreferredSize());
rect.Inset(-host->GetInsets());
if (menu_bar_)
rect.Inset(0, 0, 0, -kMenuHeight);
if (tool_bar_)
rect.Inset(0, 0, 0, -tool_bar_->GetPreferredSize().height());
return rect.size();
}
int BrowserViewLayout::GetPreferredHeightForWidth(const View* host, int width) const {
if (!host->has_children())
return 0;
const gfx::Insets insets = host->GetInsets();
int ret = web_view_->GetHeightForWidth(width - insets.width()) +
insets.height();
if (menu_bar_)
ret += kMenuHeight;
if (tool_bar_)
ret += tool_bar_->GetHeightForWidth(width - insets.width());
return ret;
}
} // namespace views