This source file includes following definitions.
- CreateBubbleWidget
- parent_window_
- parent_window_
- CreateBubble
- AsBubbleDelegate
- CanActivate
- ShouldShowCloseButton
- GetContentsView
- CreateNonClientFrameView
- GetAccessibleState
- OnWidgetDestroying
- OnWidgetVisibilityChanging
- OnWidgetVisibilityChanged
- OnWidgetActivationChanged
- OnWidgetBoundsChanged
- GetAnchorView
- GetAnchorRect
- OnBeforeBubbleWidgetInit
- SetAlignment
- SetArrowPaintType
- OnAnchorBoundsChanged
- AcceleratorPressed
- OnNativeThemeChanged
- Init
- SetAnchorView
- SetAnchorRect
- SizeToContents
- GetBubbleFrameView
- GetBubbleBounds
- UpdateColorsFromTheme
- HandleVisibilityChanged
#include "ui/views/bubble/bubble_delegate.h"
#include "ui/accessibility/ax_view_state.h"
#include "ui/gfx/color_utils.h"
#include "ui/gfx/rect.h"
#include "ui/native_theme/native_theme.h"
#include "ui/views/bubble/bubble_frame_view.h"
#include "ui/views/focus/view_storage.h"
#include "ui/views/widget/widget.h"
#include "ui/views/widget/widget_observer.h"
#if defined(OS_WIN)
#include "ui/base/win/shell.h"
#endif
static const int kDefaultMargin = 6;
namespace views {
namespace {
Widget* CreateBubbleWidget(BubbleDelegateView* bubble) {
Widget* bubble_widget = new Widget();
Widget::InitParams bubble_params(Widget::InitParams::TYPE_BUBBLE);
bubble_params.delegate = bubble;
bubble_params.opacity = Widget::InitParams::TRANSLUCENT_WINDOW;
bubble_params.accept_events = bubble->accept_events();
if (bubble->parent_window())
bubble_params.parent = bubble->parent_window();
else if (bubble->anchor_widget())
bubble_params.parent = bubble->anchor_widget()->GetNativeView();
bubble_params.can_activate = bubble->CanActivate();
bubble->OnBeforeBubbleWidgetInit(&bubble_params, bubble_widget);
bubble_widget->Init(bubble_params);
return bubble_widget;
}
}
BubbleDelegateView::BubbleDelegateView()
: close_on_esc_(true),
close_on_deactivate_(true),
anchor_view_storage_id_(ViewStorage::GetInstance()->CreateStorageID()),
anchor_widget_(NULL),
move_with_anchor_(false),
arrow_(BubbleBorder::TOP_LEFT),
shadow_(BubbleBorder::SMALL_SHADOW),
color_explicitly_set_(false),
margins_(kDefaultMargin, kDefaultMargin, kDefaultMargin, kDefaultMargin),
use_focusless_(false),
accept_events_(true),
border_accepts_events_(true),
adjust_if_offscreen_(true),
parent_window_(NULL) {
AddAccelerator(ui::Accelerator(ui::VKEY_ESCAPE, ui::EF_NONE));
UpdateColorsFromTheme(GetNativeTheme());
}
BubbleDelegateView::BubbleDelegateView(
View* anchor_view,
BubbleBorder::Arrow arrow)
: close_on_esc_(true),
close_on_deactivate_(true),
anchor_view_storage_id_(ViewStorage::GetInstance()->CreateStorageID()),
anchor_widget_(NULL),
move_with_anchor_(false),
arrow_(arrow),
shadow_(BubbleBorder::SMALL_SHADOW),
color_explicitly_set_(false),
margins_(kDefaultMargin, kDefaultMargin, kDefaultMargin, kDefaultMargin),
use_focusless_(false),
accept_events_(true),
border_accepts_events_(true),
adjust_if_offscreen_(true),
parent_window_(NULL) {
SetAnchorView(anchor_view);
AddAccelerator(ui::Accelerator(ui::VKEY_ESCAPE, ui::EF_NONE));
UpdateColorsFromTheme(GetNativeTheme());
}
BubbleDelegateView::~BubbleDelegateView() {
if (GetWidget())
GetWidget()->RemoveObserver(this);
SetLayoutManager(NULL);
SetAnchorView(NULL);
}
Widget* BubbleDelegateView::CreateBubble(BubbleDelegateView* bubble_delegate) {
bubble_delegate->Init();
bubble_delegate->SetAnchorView(bubble_delegate->GetAnchorView());
Widget* bubble_widget = CreateBubbleWidget(bubble_delegate);
#if defined(OS_WIN)
bubble_delegate->set_adjust_if_offscreen(ui::win::IsAeroGlassEnabled());
#elif defined(OS_LINUX) && !defined(OS_CHROMEOS)
bubble_delegate->set_adjust_if_offscreen(false);
#endif
bubble_delegate->SizeToContents();
bubble_widget->AddObserver(bubble_delegate);
return bubble_widget;
}
BubbleDelegateView* BubbleDelegateView::AsBubbleDelegate() {
return this;
}
bool BubbleDelegateView::CanActivate() const {
return !use_focusless();
}
bool BubbleDelegateView::ShouldShowCloseButton() const {
return false;
}
View* BubbleDelegateView::GetContentsView() {
return this;
}
NonClientFrameView* BubbleDelegateView::CreateNonClientFrameView(
Widget* widget) {
BubbleFrameView* frame = new BubbleFrameView(margins());
BubbleBorder::Arrow adjusted_arrow = arrow();
if (base::i18n::IsRTL())
adjusted_arrow = BubbleBorder::horizontal_mirror(adjusted_arrow);
frame->SetBubbleBorder(scoped_ptr<BubbleBorder>(
new BubbleBorder(adjusted_arrow, shadow(), color())));
return frame;
}
void BubbleDelegateView::GetAccessibleState(ui::AXViewState* state) {
state->role = ui::AX_ROLE_DIALOG;
}
void BubbleDelegateView::OnWidgetDestroying(Widget* widget) {
if (anchor_widget() == widget)
SetAnchorView(NULL);
}
void BubbleDelegateView::OnWidgetVisibilityChanging(Widget* widget,
bool visible) {
#if defined(OS_WIN)
HandleVisibilityChanged(widget, visible);
#endif
}
void BubbleDelegateView::OnWidgetVisibilityChanged(Widget* widget,
bool visible) {
#if !defined(OS_WIN)
HandleVisibilityChanged(widget, visible);
#endif
}
void BubbleDelegateView::OnWidgetActivationChanged(Widget* widget,
bool active) {
if (close_on_deactivate() && widget == GetWidget() && !active)
GetWidget()->Close();
}
void BubbleDelegateView::OnWidgetBoundsChanged(Widget* widget,
const gfx::Rect& new_bounds) {
if (anchor_widget() == widget) {
if (move_with_anchor())
SizeToContents();
else
GetWidget()->Close();
}
}
View* BubbleDelegateView::GetAnchorView() const {
return ViewStorage::GetInstance()->RetrieveView(anchor_view_storage_id_);
}
gfx::Rect BubbleDelegateView::GetAnchorRect() {
if (!GetAnchorView())
return anchor_rect_;
anchor_rect_ = GetAnchorView()->GetBoundsInScreen();
anchor_rect_.Inset(anchor_view_insets_);
return anchor_rect_;
}
void BubbleDelegateView::OnBeforeBubbleWidgetInit(Widget::InitParams* params,
Widget* widget) const {
}
void BubbleDelegateView::SetAlignment(BubbleBorder::BubbleAlignment alignment) {
GetBubbleFrameView()->bubble_border()->set_alignment(alignment);
SizeToContents();
}
void BubbleDelegateView::SetArrowPaintType(
BubbleBorder::ArrowPaintType paint_type) {
GetBubbleFrameView()->bubble_border()->set_paint_arrow(paint_type);
SizeToContents();
}
void BubbleDelegateView::OnAnchorBoundsChanged() {
SizeToContents();
}
bool BubbleDelegateView::AcceleratorPressed(
const ui::Accelerator& accelerator) {
if (!close_on_esc() || accelerator.key_code() != ui::VKEY_ESCAPE)
return false;
GetWidget()->Close();
return true;
}
void BubbleDelegateView::OnNativeThemeChanged(const ui::NativeTheme* theme) {
UpdateColorsFromTheme(theme);
}
void BubbleDelegateView::Init() {}
void BubbleDelegateView::SetAnchorView(View* anchor_view) {
if (!anchor_view || anchor_widget() != anchor_view->GetWidget()) {
if (anchor_widget()) {
anchor_widget_->RemoveObserver(this);
anchor_widget_ = NULL;
}
if (anchor_view) {
anchor_widget_ = anchor_view->GetWidget();
if (anchor_widget_)
anchor_widget_->AddObserver(this);
}
}
ViewStorage* view_storage = ViewStorage::GetInstance();
if (view_storage->RetrieveView(anchor_view_storage_id_))
view_storage->RemoveView(anchor_view_storage_id_);
if (anchor_view)
view_storage->StoreView(anchor_view_storage_id_, anchor_view);
if (GetWidget())
OnAnchorBoundsChanged();
}
void BubbleDelegateView::SetAnchorRect(const gfx::Rect& rect) {
anchor_rect_ = rect;
if (GetWidget())
OnAnchorBoundsChanged();
}
void BubbleDelegateView::SizeToContents() {
GetWidget()->SetBounds(GetBubbleBounds());
}
BubbleFrameView* BubbleDelegateView::GetBubbleFrameView() const {
const NonClientView* view =
GetWidget() ? GetWidget()->non_client_view() : NULL;
return view ? static_cast<BubbleFrameView*>(view->frame_view()) : NULL;
}
gfx::Rect BubbleDelegateView::GetBubbleBounds() {
return GetBubbleFrameView()->GetUpdatedWindowBounds(GetAnchorRect(),
GetPreferredSize(), adjust_if_offscreen_);
}
void BubbleDelegateView::UpdateColorsFromTheme(const ui::NativeTheme* theme) {
if (!color_explicitly_set_)
color_ = theme->GetSystemColor(ui::NativeTheme::kColorId_WindowBackground);
set_background(Background::CreateSolidBackground(color()));
BubbleFrameView* frame_view = GetBubbleFrameView();
if (frame_view)
frame_view->bubble_border()->set_background_color(color());
}
void BubbleDelegateView::HandleVisibilityChanged(Widget* widget, bool visible) {
if (widget == GetWidget() && anchor_widget() &&
anchor_widget()->GetTopLevelWidget()) {
if (visible)
anchor_widget()->GetTopLevelWidget()->DisableInactiveRendering();
else
anchor_widget()->GetTopLevelWidget()->EnableInactiveRendering();
}
}
}