This source file includes following definitions.
- SetWindowPositionManaged
- IsDockedOrSnapped
- DoesRectContainVerticalPointExpanded
- OffsetX
- OnWidgetVisibilityChanged
- pinned
- weak_factory_
- Init
- IsAttachedTo
- IsActive
- SetMoveBehavior
- EndDrag
- InitTabDragData
- OpenURLFromTab
- NavigationStateChanged
- AddNewContents
- ShouldSuppressDialogs
- GetJavaScriptDialogManager
- RequestMediaAccessPermission
- Observe
- WillProcessEvent
- DidProcessEvent
- OnWidgetBoundsChanged
- TabStripEmpty
- InitWindowCreatePoint
- GetWindowCreatePoint
- SaveFocus
- RestoreFocus
- CanStartDrag
- ContinueDragging
- DragBrowserToNewTabStrip
- DragActiveTabStacked
- MoveAttachedToNextStackedIndex
- MoveAttachedToPreviousStackedIndex
- MoveAttached
- StartMoveStackedTimerIfNecessary
- GetDetachPosition
- GetTargetTabStripForPoint
- GetTabStripForWindow
- DoesTabStripContain
- Attach
- Detach
- DetachIntoNewBrowserAndRunMoveLoop
- RunMoveLoop
- GetInsertionIndexFrom
- GetInsertionIndexForDraggedBounds
- ShouldDragToNextStackedTab
- ShouldDragToPreviousStackedTab
- GetInsertionIndexForDraggedBoundsStacked
- GetDraggedViewTabStripBounds
- GetAttachedDragPoint
- GetTabsMatchingDraggedContents
- CalculateBoundsForDraggedTabs
- EndDragImpl
- RevertDrag
- ResetSelection
- RestoreInitialSelection
- RevertDragAt
- CompleteDrag
- MaximizeAttachedWindow
- ResetDelegates
- GetViewScreenBounds
- CleanUpHiddenFrame
- BringWindowUnderPointToFront
- GetModel
- GetAttachedBrowserWidget
- AreTabsConsecutive
- CalculateDraggedBrowserBounds
- AdjustBrowserAndTabBoundsForDrag
- CreateBrowserForDrag
- GetCursorScreenPoint
- GetWindowOffset
- GetLocalProcessWindow
#include "chrome/browser/ui/views/tabs/tab_drag_controller.h"
#include <math.h>
#include <set>
#include "base/auto_reset.h"
#include "base/callback.h"
#include "base/command_line.h"
#include "base/i18n/rtl.h"
#include "chrome/browser/chrome_notification_types.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/ui/app_modal_dialogs/javascript_dialog_manager.h"
#include "chrome/browser/ui/browser_list.h"
#include "chrome/browser/ui/browser_window.h"
#include "chrome/browser/ui/media_utils.h"
#include "chrome/browser/ui/tabs/tab_strip_model.h"
#include "chrome/browser/ui/tabs/tab_strip_model_delegate.h"
#include "chrome/browser/ui/views/frame/browser_view.h"
#include "chrome/browser/ui/views/tabs/browser_tab_strip_controller.h"
#include "chrome/browser/ui/views/tabs/stacked_tab_strip_layout.h"
#include "chrome/browser/ui/views/tabs/tab.h"
#include "chrome/browser/ui/views/tabs/tab_strip.h"
#include "chrome/browser/ui/views/tabs/window_finder.h"
#include "chrome/common/chrome_switches.h"
#include "content/public/browser/invalidate_type.h"
#include "content/public/browser/notification_details.h"
#include "content/public/browser/notification_service.h"
#include "content/public/browser/notification_source.h"
#include "content/public/browser/notification_types.h"
#include "content/public/browser/user_metrics.h"
#include "content/public/browser/web_contents.h"
#include "content/public/browser/web_contents_view.h"
#include "extensions/browser/extension_function_dispatcher.h"
#include "ui/base/resource/resource_bundle.h"
#include "ui/events/event_constants.h"
#include "ui/events/event_utils.h"
#include "ui/gfx/geometry/point_conversions.h"
#include "ui/gfx/screen.h"
#include "ui/views/focus/view_storage.h"
#include "ui/views/widget/root_view.h"
#include "ui/views/widget/widget.h"
#if defined(USE_ASH)
#include "ash/accelerators/accelerator_commands.h"
#include "ash/wm/coordinate_conversion.h"
#include "ash/wm/window_state.h"
#include "ui/aura/env.h"
#include "ui/aura/window.h"
#include "ui/aura/window_event_dispatcher.h"
#include "ui/events/gestures/gesture_recognizer.h"
#endif
#if defined(OS_WIN)
#include "ui/aura/window.h"
#include "ui/events/gestures/gesture_recognizer.h"
#endif
using base::UserMetricsAction;
using content::OpenURLParams;
using content::WebContents;
static TabDragController* instance_ = NULL;
namespace {
const int kBringToFrontDelay = 750;
const int kMoveAttachedInitialDelay = 600;
const int kMoveAttachedSubsequentDelay = 300;
const int kHorizontalMoveThreshold = 16;
const int kStackedDistance = 36;
void SetWindowPositionManaged(gfx::NativeWindow window, bool value) {
#if defined(USE_ASH)
ash::wm::GetWindowState(window)->set_window_position_managed(value);
#endif
}
bool IsDockedOrSnapped(const TabStrip* tab_strip) {
#if defined(USE_ASH)
DCHECK(tab_strip);
ash::wm::WindowState* window_state =
ash::wm::GetWindowState(tab_strip->GetWidget()->GetNativeWindow());
return window_state->IsDocked() || window_state->IsSnapped();
#else
return false;
#endif
}
bool DoesRectContainVerticalPointExpanded(
const gfx::Rect& bounds,
int vertical_adjustment,
int y) {
int upper_threshold = bounds.bottom() + vertical_adjustment;
int lower_threshold = bounds.y() - vertical_adjustment;
return y >= lower_threshold && y <= upper_threshold;
}
void OffsetX(int x_offset, std::vector<gfx::Rect>* rects) {
if (x_offset == 0)
return;
for (size_t i = 0; i < rects->size(); ++i)
(*rects)[i].set_x((*rects)[i].x() + x_offset);
}
class WindowPositionManagedUpdater : public views::WidgetObserver {
public:
virtual void OnWidgetVisibilityChanged(views::Widget* widget,
bool visible) OVERRIDE {
SetWindowPositionManaged(widget->GetNativeView(), false);
}
};
}
TabDragController::TabDragData::TabDragData()
: contents(NULL),
original_delegate(NULL),
source_model_index(-1),
attached_tab(NULL),
pinned(false) {
}
TabDragController::TabDragData::~TabDragData() {
}
const int TabDragController::kTouchVerticalDetachMagnetism = 50;
const int TabDragController::kVerticalDetachMagnetism = 15;
TabDragController::TabDragController()
: detach_into_browser_(true),
event_source_(EVENT_SOURCE_MOUSE),
source_tabstrip_(NULL),
attached_tabstrip_(NULL),
screen_(NULL),
host_desktop_type_(chrome::HOST_DESKTOP_TYPE_NATIVE),
use_aura_capture_policy_(false),
offset_to_width_ratio_(0),
old_focused_view_id_(
views::ViewStorage::GetInstance()->CreateStorageID()),
last_move_screen_loc_(0),
started_drag_(false),
active_(true),
source_tab_index_(std::numeric_limits<size_t>::max()),
initial_move_(true),
detach_behavior_(DETACHABLE),
move_behavior_(REORDER),
mouse_move_direction_(0),
is_dragging_window_(false),
is_dragging_new_browser_(false),
was_source_maximized_(false),
was_source_fullscreen_(false),
did_restore_window_(false),
end_run_loop_behavior_(END_RUN_LOOP_STOP_DRAGGING),
waiting_for_run_loop_to_exit_(false),
tab_strip_to_attach_to_after_exit_(NULL),
move_loop_widget_(NULL),
is_mutating_(false),
attach_x_(-1),
attach_index_(-1),
weak_factory_(this) {
instance_ = this;
}
TabDragController::~TabDragController() {
views::ViewStorage::GetInstance()->RemoveView(old_focused_view_id_);
if (instance_ == this)
instance_ = NULL;
if (move_loop_widget_) {
move_loop_widget_->RemoveObserver(this);
SetWindowPositionManaged(move_loop_widget_->GetNativeView(), true);
}
if (source_tabstrip_ && detach_into_browser_)
GetModel(source_tabstrip_)->RemoveObserver(this);
base::MessageLoopForUI::current()->RemoveObserver(this);
if (!detach_into_browser_)
ResetDelegates();
if (event_source_ == EVENT_SOURCE_TOUCH) {
TabStrip* capture_tabstrip = (attached_tabstrip_ && detach_into_browser_) ?
attached_tabstrip_ : source_tabstrip_;
capture_tabstrip->GetWidget()->ReleaseCapture();
}
}
void TabDragController::Init(
TabStrip* source_tabstrip,
Tab* source_tab,
const std::vector<Tab*>& tabs,
const gfx::Point& mouse_offset,
int source_tab_offset,
const ui::ListSelectionModel& initial_selection_model,
DetachBehavior detach_behavior,
MoveBehavior move_behavior,
EventSource event_source) {
DCHECK(!tabs.empty());
DCHECK(std::find(tabs.begin(), tabs.end(), source_tab) != tabs.end());
source_tabstrip_ = source_tabstrip;
was_source_maximized_ = source_tabstrip->GetWidget()->IsMaximized();
was_source_fullscreen_ = source_tabstrip->GetWidget()->IsFullscreen();
screen_ = gfx::Screen::GetScreenFor(
source_tabstrip->GetWidget()->GetNativeView());
host_desktop_type_ = chrome::GetHostDesktopTypeForNativeView(
source_tabstrip->GetWidget()->GetNativeView());
#if defined(OS_LINUX)
use_aura_capture_policy_ = true;
#else
use_aura_capture_policy_ =
(host_desktop_type_ == chrome::HOST_DESKTOP_TYPE_ASH);
#endif
start_point_in_screen_ = gfx::Point(source_tab_offset, mouse_offset.y());
views::View::ConvertPointToScreen(source_tab, &start_point_in_screen_);
event_source_ = event_source;
mouse_offset_ = mouse_offset;
detach_behavior_ = detach_behavior;
move_behavior_ = move_behavior;
last_point_in_screen_ = start_point_in_screen_;
last_move_screen_loc_ = start_point_in_screen_.x();
initial_tab_positions_ = source_tabstrip->GetTabXCoordinates();
if (detach_behavior == NOT_DETACHABLE)
detach_into_browser_ = false;
if (detach_into_browser_)
GetModel(source_tabstrip_)->AddObserver(this);
drag_data_.resize(tabs.size());
for (size_t i = 0; i < tabs.size(); ++i)
InitTabDragData(tabs[i], &(drag_data_[i]));
source_tab_index_ =
std::find(tabs.begin(), tabs.end(), source_tab) - tabs.begin();
base::MessageLoopForUI::current()->AddObserver(this);
if (source_tab->width() > 0) {
offset_to_width_ratio_ = static_cast<float>(
source_tab->GetMirroredXInView(source_tab_offset)) /
static_cast<float>(source_tab->width());
}
InitWindowCreatePoint();
initial_selection_model_.Copy(initial_selection_model);
if (event_source == EVENT_SOURCE_TOUCH)
source_tabstrip_->GetWidget()->SetCapture(source_tabstrip_);
}
bool TabDragController::IsAttachedTo(const TabStrip* tab_strip) {
return (instance_ && instance_->active() &&
instance_->attached_tabstrip() == tab_strip);
}
bool TabDragController::IsActive() {
return instance_ && instance_->active();
}
void TabDragController::SetMoveBehavior(MoveBehavior behavior) {
if (started_drag())
return;
move_behavior_ = behavior;
}
void TabDragController::Drag(const gfx::Point& point_in_screen) {
TRACE_EVENT1("views", "TabDragController::Drag",
"point_in_screen", point_in_screen.ToString());
bring_to_front_timer_.Stop();
move_stacked_timer_.Stop();
if (waiting_for_run_loop_to_exit_)
return;
if (!started_drag_) {
if (!CanStartDrag(point_in_screen))
return;
{
base::WeakPtr<TabDragController> ref(weak_factory_.GetWeakPtr());
SaveFocus();
if (!ref)
return;
}
started_drag_ = true;
Attach(source_tabstrip_, gfx::Point());
if (detach_into_browser_ && static_cast<int>(drag_data_.size()) ==
GetModel(source_tabstrip_)->count()) {
if (was_source_maximized_ || was_source_fullscreen_) {
did_restore_window_ = true;
views::Widget* widget = GetAttachedBrowserWidget();
const int last_tabstrip_width = attached_tabstrip_->tab_area_width();
std::vector<gfx::Rect> drag_bounds = CalculateBoundsForDraggedTabs();
OffsetX(GetAttachedDragPoint(point_in_screen).x(), &drag_bounds);
gfx::Rect new_bounds(CalculateDraggedBrowserBounds(source_tabstrip_,
point_in_screen,
&drag_bounds));
new_bounds.Offset(-widget->GetRestoredBounds().x() +
point_in_screen.x() -
mouse_offset_.x(), 0);
widget->SetVisibilityChangedAnimationsEnabled(false);
widget->Restore();
widget->SetBounds(new_bounds);
AdjustBrowserAndTabBoundsForDrag(last_tabstrip_width,
point_in_screen,
&drag_bounds);
widget->SetVisibilityChangedAnimationsEnabled(true);
}
RunMoveLoop(GetWindowOffset(point_in_screen));
return;
}
}
ContinueDragging(point_in_screen);
}
void TabDragController::EndDrag(EndDragReason reason) {
TRACE_EVENT0("views", "TabDragController::EndDrag");
if (reason == END_DRAG_CAPTURE_LOST && is_dragging_window_)
return;
EndDragImpl(reason != END_DRAG_COMPLETE && source_tabstrip_ ?
CANCELED : NORMAL);
}
void TabDragController::InitTabDragData(Tab* tab,
TabDragData* drag_data) {
TRACE_EVENT0("views", "TabDragController::InitTabDragData");
drag_data->source_model_index =
source_tabstrip_->GetModelIndexOfTab(tab);
drag_data->contents = GetModel(source_tabstrip_)->GetWebContentsAt(
drag_data->source_model_index);
drag_data->pinned = source_tabstrip_->IsTabPinned(tab);
registrar_.Add(
this,
content::NOTIFICATION_WEB_CONTENTS_DESTROYED,
content::Source<WebContents>(drag_data->contents));
if (!detach_into_browser_) {
drag_data->original_delegate = drag_data->contents->GetDelegate();
drag_data->contents->SetDelegate(this);
}
}
WebContents* TabDragController::OpenURLFromTab(
WebContents* source,
const OpenURLParams& params) {
if (source_tab_drag_data()->original_delegate) {
OpenURLParams forward_params = params;
if (params.disposition == CURRENT_TAB)
forward_params.disposition = NEW_WINDOW;
return source_tab_drag_data()->original_delegate->OpenURLFromTab(
source, forward_params);
}
return NULL;
}
void TabDragController::NavigationStateChanged(const WebContents* source,
unsigned changed_flags) {
if (attached_tabstrip_ ||
changed_flags == content::INVALIDATE_TYPE_PAGE_ACTIONS) {
for (size_t i = 0; i < drag_data_.size(); ++i) {
if (drag_data_[i].contents == source) {
drag_data_[i].original_delegate->NavigationStateChanged(source,
changed_flags);
break;
}
}
}
}
void TabDragController::AddNewContents(WebContents* source,
WebContents* new_contents,
WindowOpenDisposition disposition,
const gfx::Rect& initial_pos,
bool user_gesture,
bool* was_blocked) {
DCHECK_NE(CURRENT_TAB, disposition);
if (source_tab_drag_data()->original_delegate) {
source_tab_drag_data()->original_delegate->AddNewContents(
source, new_contents, disposition, initial_pos, user_gesture,
was_blocked);
}
}
bool TabDragController::ShouldSuppressDialogs() {
EndDragImpl(CANCELED);
return false;
}
content::JavaScriptDialogManager*
TabDragController::GetJavaScriptDialogManager() {
return GetJavaScriptDialogManagerInstance();
}
void TabDragController::RequestMediaAccessPermission(
content::WebContents* web_contents,
const content::MediaStreamRequest& request,
const content::MediaResponseCallback& callback) {
::RequestMediaAccessPermission(
web_contents,
Profile::FromBrowserContext(web_contents->GetBrowserContext()),
request,
callback);
}
void TabDragController::Observe(
int type,
const content::NotificationSource& source,
const content::NotificationDetails& details) {
DCHECK_EQ(content::NOTIFICATION_WEB_CONTENTS_DESTROYED, type);
WebContents* destroyed_web_contents =
content::Source<WebContents>(source).ptr();
for (size_t i = 0; i < drag_data_.size(); ++i) {
if (drag_data_[i].contents == destroyed_web_contents) {
if (destroyed_web_contents->GetDelegate() == this)
destroyed_web_contents->SetDelegate(NULL);
drag_data_[i].contents = NULL;
drag_data_[i].original_delegate = NULL;
EndDragImpl(TAB_DESTROYED);
return;
}
}
NOTREACHED();
}
base::EventStatus TabDragController::WillProcessEvent(
const base::NativeEvent& event) {
return base::EVENT_CONTINUE;
}
void TabDragController::DidProcessEvent(const base::NativeEvent& event) {
if (ui::EventTypeFromNative(event) == ui::ET_KEY_PRESSED &&
ui::KeyboardCodeFromNative(event) == ui::VKEY_ESCAPE) {
EndDrag(END_DRAG_CANCEL);
}
}
void TabDragController::OnWidgetBoundsChanged(views::Widget* widget,
const gfx::Rect& new_bounds) {
TRACE_EVENT1("views", "TabDragController::OnWidgetBoundsChanged",
"new_bounds", new_bounds.ToString());
Drag(GetCursorScreenPoint());
}
void TabDragController::TabStripEmpty() {
DCHECK(detach_into_browser_);
GetModel(source_tabstrip_)->RemoveObserver(this);
source_tabstrip_ = NULL;
}
void TabDragController::InitWindowCreatePoint() {
views::View* first_tab = source_tabstrip_->tab_at(0);
views::View::ConvertPointToWidget(first_tab, &first_source_tab_point_);
window_create_point_ = first_source_tab_point_;
window_create_point_.Offset(mouse_offset_.x(), mouse_offset_.y());
}
gfx::Point TabDragController::GetWindowCreatePoint(
const gfx::Point& origin) const {
gfx::Rect work_area = screen_->GetDisplayNearestPoint(origin).work_area();
gfx::Point create_point(origin);
if (!work_area.IsEmpty()) {
if (create_point.x() < work_area.x())
create_point.set_x(work_area.x());
else if (create_point.x() > work_area.right())
create_point.set_x(work_area.right());
if (create_point.y() < work_area.y())
create_point.set_y(work_area.y());
else if (create_point.y() > work_area.bottom())
create_point.set_y(work_area.bottom());
}
return gfx::Point(create_point.x() - window_create_point_.x(),
create_point.y() - window_create_point_.y());
}
void TabDragController::SaveFocus() {
DCHECK(source_tabstrip_);
views::View* focused_view =
source_tabstrip_->GetFocusManager()->GetFocusedView();
if (focused_view)
views::ViewStorage::GetInstance()->StoreView(old_focused_view_id_,
focused_view);
source_tabstrip_->GetFocusManager()->SetFocusedView(source_tabstrip_);
}
void TabDragController::RestoreFocus() {
if (attached_tabstrip_ != source_tabstrip_) {
if (is_dragging_new_browser_) {
content::WebContents* active_contents = source_dragged_contents();
if (active_contents && !active_contents->FocusLocationBarByDefault())
active_contents->GetView()->Focus();
}
return;
}
views::View* old_focused_view =
views::ViewStorage::GetInstance()->RetrieveView(old_focused_view_id_);
if (!old_focused_view)
return;
old_focused_view->GetFocusManager()->SetFocusedView(old_focused_view);
}
bool TabDragController::CanStartDrag(const gfx::Point& point_in_screen) const {
static const int kMinimumDragDistance = 10;
int x_offset = abs(point_in_screen.x() - start_point_in_screen_.x());
int y_offset = abs(point_in_screen.y() - start_point_in_screen_.y());
return sqrt(pow(static_cast<float>(x_offset), 2) +
pow(static_cast<float>(y_offset), 2)) > kMinimumDragDistance;
}
void TabDragController::ContinueDragging(const gfx::Point& point_in_screen) {
TRACE_EVENT1("views", "TabDragController::ContinueDragging",
"point_in_screen", point_in_screen.ToString());
DCHECK(!detach_into_browser_ || attached_tabstrip_);
TabStrip* target_tabstrip = detach_behavior_ == DETACHABLE ?
GetTargetTabStripForPoint(point_in_screen) : source_tabstrip_;
bool tab_strip_changed = (target_tabstrip != attached_tabstrip_);
if (attached_tabstrip_) {
int move_delta = point_in_screen.x() - last_point_in_screen_.x();
if (move_delta > 0)
mouse_move_direction_ |= kMovedMouseRight;
else if (move_delta < 0)
mouse_move_direction_ |= kMovedMouseLeft;
}
last_point_in_screen_ = point_in_screen;
if (tab_strip_changed) {
is_dragging_new_browser_ = false;
did_restore_window_ = false;
if (detach_into_browser_ &&
DragBrowserToNewTabStrip(target_tabstrip, point_in_screen) ==
DRAG_BROWSER_RESULT_STOP) {
return;
} else if (!detach_into_browser_) {
if (attached_tabstrip_)
Detach(RELEASE_CAPTURE);
if (target_tabstrip)
Attach(target_tabstrip, point_in_screen);
}
}
if (is_dragging_window_) {
static_cast<base::Timer*>(&bring_to_front_timer_)->Start(FROM_HERE,
base::TimeDelta::FromMilliseconds(kBringToFrontDelay),
base::Bind(&TabDragController::BringWindowUnderPointToFront,
base::Unretained(this), point_in_screen));
}
if (!is_dragging_window_ && attached_tabstrip_) {
if (move_only()) {
DragActiveTabStacked(point_in_screen);
} else {
MoveAttached(point_in_screen);
if (tab_strip_changed) {
attached_tabstrip_->GetWidget()->Activate();
}
}
}
}
TabDragController::DragBrowserResultType
TabDragController::DragBrowserToNewTabStrip(
TabStrip* target_tabstrip,
const gfx::Point& point_in_screen) {
TRACE_EVENT1("views", "TabDragController::DragBrowserToNewTabStrip",
"point_in_screen", point_in_screen.ToString());
if (!target_tabstrip) {
DetachIntoNewBrowserAndRunMoveLoop(point_in_screen);
return DRAG_BROWSER_RESULT_STOP;
}
if (is_dragging_window_) {
if (use_aura_capture_policy_) {
move_loop_widget_->RemoveObserver(this);
move_loop_widget_ = NULL;
}
views::Widget* browser_widget = GetAttachedBrowserWidget();
attached_tabstrip_->ReleaseDragController();
target_tabstrip->OwnDragController(this);
browser_widget->SetVisibilityChangedAnimationsEnabled(false);
if (use_aura_capture_policy_)
target_tabstrip->GetWidget()->SetCapture(attached_tabstrip_);
else
browser_widget->ReleaseCapture();
#if defined(OS_WIN)
ui::GestureRecognizer::Get()->TransferEventsTo(
browser_widget->GetNativeView(),
target_tabstrip->GetWidget()->GetNativeView());
#endif
SetWindowPositionManaged(browser_widget->GetNativeView(), false);
#if !defined(OS_LINUX) || defined(OS_CHROMEOS)
browser_widget->Hide();
#endif
browser_widget->EndMoveLoop();
if (use_aura_capture_policy_) {
is_dragging_window_ = false;
Detach(DONT_RELEASE_CAPTURE);
Attach(target_tabstrip, point_in_screen);
MoveAttached(point_in_screen);
attached_tabstrip_->GetWidget()->Activate();
} else {
tab_strip_to_attach_to_after_exit_ = target_tabstrip;
}
waiting_for_run_loop_to_exit_ = true;
end_run_loop_behavior_ = END_RUN_LOOP_CONTINUE_DRAGGING;
return DRAG_BROWSER_RESULT_STOP;
}
Detach(DONT_RELEASE_CAPTURE);
Attach(target_tabstrip, point_in_screen);
return DRAG_BROWSER_RESULT_CONTINUE;
}
void TabDragController::DragActiveTabStacked(
const gfx::Point& point_in_screen) {
if (attached_tabstrip_->tab_count() !=
static_cast<int>(initial_tab_positions_.size()))
return;
int delta = point_in_screen.x() - start_point_in_screen_.x();
attached_tabstrip_->DragActiveTab(initial_tab_positions_, delta);
}
void TabDragController::MoveAttachedToNextStackedIndex(
const gfx::Point& point_in_screen) {
int index = attached_tabstrip_->touch_layout_->active_index();
if (index + 1 >= attached_tabstrip_->tab_count())
return;
GetModel(attached_tabstrip_)->MoveSelectedTabsTo(index + 1);
StartMoveStackedTimerIfNecessary(point_in_screen,
kMoveAttachedSubsequentDelay);
}
void TabDragController::MoveAttachedToPreviousStackedIndex(
const gfx::Point& point_in_screen) {
int index = attached_tabstrip_->touch_layout_->active_index();
if (index <= attached_tabstrip_->GetMiniTabCount())
return;
GetModel(attached_tabstrip_)->MoveSelectedTabsTo(index - 1);
StartMoveStackedTimerIfNecessary(point_in_screen,
kMoveAttachedSubsequentDelay);
}
void TabDragController::MoveAttached(const gfx::Point& point_in_screen) {
DCHECK(attached_tabstrip_);
DCHECK(!is_dragging_window_);
gfx::Point dragged_view_point = GetAttachedDragPoint(point_in_screen);
int threshold = kHorizontalMoveThreshold;
if (!attached_tabstrip_->touch_layout_.get()) {
double unselected, selected;
attached_tabstrip_->GetCurrentTabWidths(&unselected, &selected);
double ratio = unselected / Tab::GetStandardSize().width();
threshold = static_cast<int>(ratio * kHorizontalMoveThreshold);
}
std::vector<Tab*> tabs(drag_data_.size());
for (size_t i = 0; i < drag_data_.size(); ++i)
tabs[i] = drag_data_[i].attached_tab;
bool did_layout = false;
if ((abs(point_in_screen.x() - last_move_screen_loc_) > threshold ||
(initial_move_ && !AreTabsConsecutive()))) {
TabStripModel* attached_model = GetModel(attached_tabstrip_);
gfx::Rect bounds = GetDraggedViewTabStripBounds(dragged_view_point);
int to_index = GetInsertionIndexForDraggedBounds(bounds);
bool do_move = true;
if (attach_index_ != -1) {
gfx::Point tab_strip_point(point_in_screen);
views::View::ConvertPointFromScreen(attached_tabstrip_, &tab_strip_point);
const int new_x =
attached_tabstrip_->GetMirroredXInView(tab_strip_point.x());
if (new_x < attach_x_)
to_index = std::min(to_index, attach_index_);
else
to_index = std::max(to_index, attach_index_);
if (to_index != attach_index_)
attach_index_ = -1;
else
do_move = false;
}
if (do_move) {
WebContents* last_contents = drag_data_[drag_data_.size() - 1].contents;
int index_of_last_item =
attached_model->GetIndexOfWebContents(last_contents);
if (initial_move_) {
attached_tabstrip_->LayoutDraggedTabsAt(
tabs, source_tab_drag_data()->attached_tab, dragged_view_point,
initial_move_);
did_layout = true;
}
attached_model->MoveSelectedTabsTo(to_index);
if (index_of_last_item !=
attached_model->GetIndexOfWebContents(last_contents)) {
last_move_screen_loc_ = point_in_screen.x();
}
}
}
if (!did_layout) {
attached_tabstrip_->LayoutDraggedTabsAt(
tabs, source_tab_drag_data()->attached_tab, dragged_view_point,
initial_move_);
}
StartMoveStackedTimerIfNecessary(point_in_screen, kMoveAttachedInitialDelay);
initial_move_ = false;
}
void TabDragController::StartMoveStackedTimerIfNecessary(
const gfx::Point& point_in_screen,
int delay_ms) {
DCHECK(attached_tabstrip_);
StackedTabStripLayout* touch_layout = attached_tabstrip_->touch_layout_.get();
if (!touch_layout)
return;
gfx::Point dragged_view_point = GetAttachedDragPoint(point_in_screen);
gfx::Rect bounds = GetDraggedViewTabStripBounds(dragged_view_point);
int index = touch_layout->active_index();
if (ShouldDragToNextStackedTab(bounds, index)) {
static_cast<base::Timer*>(&move_stacked_timer_)->Start(
FROM_HERE,
base::TimeDelta::FromMilliseconds(delay_ms),
base::Bind(&TabDragController::MoveAttachedToNextStackedIndex,
base::Unretained(this), point_in_screen));
} else if (ShouldDragToPreviousStackedTab(bounds, index)) {
static_cast<base::Timer*>(&move_stacked_timer_)->Start(
FROM_HERE,
base::TimeDelta::FromMilliseconds(delay_ms),
base::Bind(&TabDragController::MoveAttachedToPreviousStackedIndex,
base::Unretained(this), point_in_screen));
}
}
TabDragController::DetachPosition TabDragController::GetDetachPosition(
const gfx::Point& point_in_screen) {
DCHECK(attached_tabstrip_);
gfx::Point attached_point(point_in_screen);
views::View::ConvertPointFromScreen(attached_tabstrip_, &attached_point);
if (attached_point.x() < 0)
return DETACH_BEFORE;
if (attached_point.x() >= attached_tabstrip_->width())
return DETACH_AFTER;
return DETACH_ABOVE_OR_BELOW;
}
TabStrip* TabDragController::GetTargetTabStripForPoint(
const gfx::Point& point_in_screen) {
TRACE_EVENT1("views", "TabDragController::GetTargetTabStripForPoint",
"point_in_screen", point_in_screen.ToString());
if (move_only() && attached_tabstrip_) {
DCHECK_EQ(DETACHABLE, detach_behavior_);
gfx::Rect tabstrip_bounds = GetViewScreenBounds(attached_tabstrip_);
if (DoesRectContainVerticalPointExpanded(tabstrip_bounds,
kTouchVerticalDetachMagnetism,
point_in_screen.y()))
return attached_tabstrip_;
}
gfx::NativeWindow local_window =
GetLocalProcessWindow(point_in_screen, is_dragging_window_);
TabStrip* tab_strip = GetTabStripForWindow(local_window);
if (tab_strip && DoesTabStripContain(tab_strip, point_in_screen))
return tab_strip;
return is_dragging_window_ ? attached_tabstrip_ : NULL;
}
TabStrip* TabDragController::GetTabStripForWindow(gfx::NativeWindow window) {
if (!window)
return NULL;
BrowserView* browser_view =
BrowserView::GetBrowserViewForNativeWindow(window);
if (!browser_view ||
!browser_view->browser()->SupportsWindowFeature(
Browser::FEATURE_TABSTRIP))
return NULL;
TabStrip* other_tabstrip = browser_view->tabstrip();
TabStrip* tab_strip =
attached_tabstrip_ ? attached_tabstrip_ : source_tabstrip_;
DCHECK(tab_strip);
return other_tabstrip->controller()->IsCompatibleWith(tab_strip) ?
other_tabstrip : NULL;
}
bool TabDragController::DoesTabStripContain(
TabStrip* tabstrip,
const gfx::Point& point_in_screen) const {
gfx::Rect tabstrip_bounds = GetViewScreenBounds(tabstrip);
return point_in_screen.x() < tabstrip_bounds.right() &&
point_in_screen.x() >= tabstrip_bounds.x() &&
DoesRectContainVerticalPointExpanded(tabstrip_bounds,
kVerticalDetachMagnetism,
point_in_screen.y());
}
void TabDragController::Attach(TabStrip* attached_tabstrip,
const gfx::Point& point_in_screen) {
TRACE_EVENT1("views", "TabDragController::Attach",
"point_in_screen", point_in_screen.ToString());
DCHECK(!attached_tabstrip_);
attached_tabstrip_ = attached_tabstrip;
std::vector<Tab*> tabs =
GetTabsMatchingDraggedContents(attached_tabstrip_);
if (tabs.empty()) {
selection_model_before_attach_.Copy(attached_tabstrip->GetSelectionModel());
if (!detach_into_browser_) {
for (size_t i = 0; i < drag_data_.size(); ++i) {
drag_data_[i].contents->SetDelegate(NULL);
drag_data_[i].original_delegate = NULL;
}
source_dragged_contents()->DecrementCapturerCount();
}
last_move_screen_loc_ = point_in_screen.x();
gfx::Point tab_strip_point(point_in_screen);
views::View::ConvertPointFromScreen(attached_tabstrip_, &tab_strip_point);
tab_strip_point.set_x(
attached_tabstrip_->GetMirroredXInView(tab_strip_point.x()));
tab_strip_point.Offset(0, -mouse_offset_.y());
gfx::Rect bounds = GetDraggedViewTabStripBounds(tab_strip_point);
int index = GetInsertionIndexForDraggedBounds(bounds);
attach_index_ = index;
attach_x_ = tab_strip_point.x();
base::AutoReset<bool> setter(&is_mutating_, true);
for (size_t i = 0; i < drag_data_.size(); ++i) {
int add_types = TabStripModel::ADD_NONE;
if (attached_tabstrip_->touch_layout_.get()) {
DCHECK_EQ(1u, drag_data_.size());
add_types |= TabStripModel::ADD_ACTIVE;
}
if (drag_data_[i].pinned)
add_types |= TabStripModel::ADD_PINNED;
GetModel(attached_tabstrip_)->InsertWebContentsAt(
index + i, drag_data_[i].contents, add_types);
}
tabs = GetTabsMatchingDraggedContents(attached_tabstrip_);
}
DCHECK_EQ(tabs.size(), drag_data_.size());
for (size_t i = 0; i < drag_data_.size(); ++i)
drag_data_[i].attached_tab = tabs[i];
attached_tabstrip_->StartedDraggingTabs(tabs);
ResetSelection(GetModel(attached_tabstrip_));
std::vector<Tab*> tabs_to_source(tabs);
tabs_to_source.erase(tabs_to_source.begin() + source_tab_index_ + 1,
tabs_to_source.end());
int new_x = attached_tabstrip_->GetSizeNeededForTabs(tabs_to_source) -
tabs[source_tab_index_]->width() +
static_cast<int>(offset_to_width_ratio_ *
tabs[source_tab_index_]->width());
mouse_offset_.set_x(new_x);
if (detach_into_browser_) {
attached_tabstrip_->GetWidget()->SetCapture(attached_tabstrip_);
attached_tabstrip_->OwnDragController(this);
}
if (detach_into_browser_ || attached_tabstrip_ == source_tabstrip_) {
static_cast<views::internal::RootView*>(
attached_tabstrip_->GetWidget()->GetRootView())->SetMouseHandler(
attached_tabstrip_);
}
}
void TabDragController::Detach(ReleaseCapture release_capture) {
TRACE_EVENT1("views", "TabDragController::Detach",
"release_capture", release_capture);
attach_index_ = -1;
move_behavior_ = REORDER;
if (detach_into_browser_) {
attached_tabstrip_->ReleaseDragController();
if (release_capture == RELEASE_CAPTURE)
attached_tabstrip_->GetWidget()->ReleaseCapture();
}
mouse_move_direction_ = kMovedMouseLeft | kMovedMouseRight;
if (!detach_into_browser_)
source_dragged_contents()->IncrementCapturerCount(gfx::Size());
std::vector<gfx::Rect> drag_bounds = CalculateBoundsForDraggedTabs();
TabStripModel* attached_model = GetModel(attached_tabstrip_);
std::vector<TabRendererData> tab_data;
for (size_t i = 0; i < drag_data_.size(); ++i) {
tab_data.push_back(drag_data_[i].attached_tab->data());
int index = attached_model->GetIndexOfWebContents(drag_data_[i].contents);
DCHECK_NE(-1, index);
drag_data_[i].attached_tab->SetVisible(false);
attached_model->DetachWebContentsAt(index);
if (!detach_into_browser_)
drag_data_[i].contents->SetDelegate(this);
drag_data_[i].attached_tab = NULL;
}
if (!attached_model->empty()) {
if (!selection_model_before_attach_.empty() &&
selection_model_before_attach_.active() >= 0 &&
selection_model_before_attach_.active() < attached_model->count()) {
attached_model->SetSelectionFromModel(selection_model_before_attach_);
} else if (attached_tabstrip_ == source_tabstrip_ &&
!initial_selection_model_.empty()) {
RestoreInitialSelection();
}
}
attached_tabstrip_->DraggedTabsDetached();
attached_tabstrip_ = NULL;
}
void TabDragController::DetachIntoNewBrowserAndRunMoveLoop(
const gfx::Point& point_in_screen) {
if (GetModel(attached_tabstrip_)->count() ==
static_cast<int>(drag_data_.size())) {
RunMoveLoop(GetWindowOffset(point_in_screen));
return;
}
const int last_tabstrip_width = attached_tabstrip_->tab_area_width();
std::vector<gfx::Rect> drag_bounds = CalculateBoundsForDraggedTabs();
OffsetX(GetAttachedDragPoint(point_in_screen).x(), &drag_bounds);
gfx::Vector2d drag_offset;
Browser* browser = CreateBrowserForDrag(
attached_tabstrip_, point_in_screen, &drag_offset, &drag_bounds);
#if defined(OS_WIN)
gfx::NativeView attached_native_view =
attached_tabstrip_->GetWidget()->GetNativeView();
#endif
Detach(use_aura_capture_policy_ ? DONT_RELEASE_CAPTURE : RELEASE_CAPTURE);
BrowserView* dragged_browser_view =
BrowserView::GetBrowserViewForBrowser(browser);
views::Widget* dragged_widget = dragged_browser_view->GetWidget();
#if defined(OS_WIN)
ui::GestureRecognizer::Get()->TransferEventsTo(
attached_native_view,
dragged_widget->GetNativeView());
#endif
dragged_widget->SetVisibilityChangedAnimationsEnabled(false);
Attach(dragged_browser_view->tabstrip(), gfx::Point());
AdjustBrowserAndTabBoundsForDrag(last_tabstrip_width,
point_in_screen,
&drag_bounds);
WindowPositionManagedUpdater updater;
dragged_widget->AddObserver(&updater);
browser->window()->Show();
dragged_widget->RemoveObserver(&updater);
dragged_widget->SetVisibilityChangedAnimationsEnabled(true);
{
base::WeakPtr<TabDragController> ref(weak_factory_.GetWeakPtr());
browser->window()->Activate();
if (!ref)
return;
}
RunMoveLoop(drag_offset);
}
void TabDragController::RunMoveLoop(const gfx::Vector2d& drag_offset) {
move_behavior_ = REORDER;
move_loop_widget_ = GetAttachedBrowserWidget();
DCHECK(move_loop_widget_);
move_loop_widget_->AddObserver(this);
is_dragging_window_ = true;
base::WeakPtr<TabDragController> ref(weak_factory_.GetWeakPtr());
if (host_desktop_type_ != chrome::HOST_DESKTOP_TYPE_ASH) {
attached_tabstrip_->ReleaseDragController();
attached_tabstrip_->GetWidget()->ReleaseCapture();
attached_tabstrip_->OwnDragController(this);
}
const views::Widget::MoveLoopSource move_loop_source =
event_source_ == EVENT_SOURCE_MOUSE ?
views::Widget::MOVE_LOOP_SOURCE_MOUSE :
views::Widget::MOVE_LOOP_SOURCE_TOUCH;
const views::Widget::MoveLoopEscapeBehavior escape_behavior =
is_dragging_new_browser_ ?
views::Widget::MOVE_LOOP_ESCAPE_BEHAVIOR_HIDE :
views::Widget::MOVE_LOOP_ESCAPE_BEHAVIOR_DONT_HIDE;
views::Widget::MoveLoopResult result =
move_loop_widget_->RunMoveLoop(
drag_offset, move_loop_source, escape_behavior);
content::NotificationService::current()->Notify(
chrome::NOTIFICATION_TAB_DRAG_LOOP_DONE,
content::NotificationService::AllBrowserContextsAndSources(),
content::NotificationService::NoDetails());
if (!ref)
return;
if (move_loop_widget_) {
move_loop_widget_->RemoveObserver(this);
move_loop_widget_ = NULL;
}
is_dragging_window_ = false;
waiting_for_run_loop_to_exit_ = false;
if (end_run_loop_behavior_ == END_RUN_LOOP_CONTINUE_DRAGGING) {
end_run_loop_behavior_ = END_RUN_LOOP_STOP_DRAGGING;
if (tab_strip_to_attach_to_after_exit_) {
gfx::Point point_in_screen(GetCursorScreenPoint());
Detach(DONT_RELEASE_CAPTURE);
Attach(tab_strip_to_attach_to_after_exit_, point_in_screen);
MoveAttached(point_in_screen);
attached_tabstrip_->GetWidget()->Activate();
if (!ref)
return;
tab_strip_to_attach_to_after_exit_ = NULL;
}
DCHECK(attached_tabstrip_);
attached_tabstrip_->GetWidget()->SetCapture(attached_tabstrip_);
} else if (active_) {
EndDrag(result == views::Widget::MOVE_LOOP_CANCELED ?
END_DRAG_CANCEL : END_DRAG_COMPLETE);
}
}
int TabDragController::GetInsertionIndexFrom(const gfx::Rect& dragged_bounds,
int start,
int delta) const {
for (int i = start, tab_count = attached_tabstrip_->tab_count();
i >= 0 && i < tab_count; i += delta) {
const gfx::Rect& ideal_bounds = attached_tabstrip_->ideal_bounds(i);
gfx::Rect left_half, right_half;
ideal_bounds.SplitVertically(&left_half, &right_half);
if (dragged_bounds.x() >= right_half.x() &&
dragged_bounds.x() < right_half.right()) {
return i + 1;
} else if (dragged_bounds.x() >= left_half.x() &&
dragged_bounds.x() < left_half.right()) {
return i;
}
}
return -1;
}
int TabDragController::GetInsertionIndexForDraggedBounds(
const gfx::Rect& dragged_bounds) const {
int index = -1;
if (attached_tabstrip_->touch_layout_.get()) {
index = GetInsertionIndexForDraggedBoundsStacked(dragged_bounds);
if (index != -1) {
int active_index = attached_tabstrip_->touch_layout_->active_index();
if ((index < active_index &&
(mouse_move_direction_ & kMovedMouseLeft) == 0) ||
(index > active_index &&
(mouse_move_direction_ & kMovedMouseRight) == 0)) {
index = active_index;
}
}
} else {
index = GetInsertionIndexFrom(dragged_bounds, 0, 1);
}
if (index == -1) {
int tab_count = attached_tabstrip_->tab_count();
int right_tab_x = tab_count == 0 ? 0 :
attached_tabstrip_->ideal_bounds(tab_count - 1).right();
if (dragged_bounds.right() > right_tab_x) {
index = GetModel(attached_tabstrip_)->count();
} else {
index = 0;
}
}
if (!drag_data_[0].attached_tab) {
return index;
}
int max_index = GetModel(attached_tabstrip_)->count() -
static_cast<int>(drag_data_.size());
return std::max(0, std::min(max_index, index));
}
bool TabDragController::ShouldDragToNextStackedTab(
const gfx::Rect& dragged_bounds,
int index) const {
if (index + 1 >= attached_tabstrip_->tab_count() ||
!attached_tabstrip_->touch_layout_->IsStacked(index + 1) ||
(mouse_move_direction_ & kMovedMouseRight) == 0)
return false;
int active_x = attached_tabstrip_->ideal_bounds(index).x();
int next_x = attached_tabstrip_->ideal_bounds(index + 1).x();
int mid_x = std::min(next_x - kStackedDistance,
active_x + (next_x - active_x) / 4);
return dragged_bounds.x() >= mid_x;
}
bool TabDragController::ShouldDragToPreviousStackedTab(
const gfx::Rect& dragged_bounds,
int index) const {
if (index - 1 < attached_tabstrip_->GetMiniTabCount() ||
!attached_tabstrip_->touch_layout_->IsStacked(index - 1) ||
(mouse_move_direction_ & kMovedMouseLeft) == 0)
return false;
int active_x = attached_tabstrip_->ideal_bounds(index).x();
int previous_x = attached_tabstrip_->ideal_bounds(index - 1).x();
int mid_x = std::max(previous_x + kStackedDistance,
active_x - (active_x - previous_x) / 4);
return dragged_bounds.x() <= mid_x;
}
int TabDragController::GetInsertionIndexForDraggedBoundsStacked(
const gfx::Rect& dragged_bounds) const {
StackedTabStripLayout* touch_layout = attached_tabstrip_->touch_layout_.get();
int active_index = touch_layout->active_index();
int index = GetInsertionIndexFrom(dragged_bounds, active_index, -1);
if (index != active_index)
return index;
if (index == -1)
return GetInsertionIndexFrom(dragged_bounds, active_index + 1, 1);
if (active_index + 1 < attached_tabstrip_->tab_count() &&
touch_layout->IsStacked(active_index + 1)) {
index = GetInsertionIndexFrom(dragged_bounds, active_index + 1, 1);
if (index == -1 && ShouldDragToNextStackedTab(dragged_bounds, active_index))
index = active_index + 1;
else if (index == -1)
index = active_index;
} else if (ShouldDragToPreviousStackedTab(dragged_bounds, active_index)) {
index = active_index - 1;
}
return index;
}
gfx::Rect TabDragController::GetDraggedViewTabStripBounds(
const gfx::Point& tab_strip_point) {
if (source_tab_drag_data()->attached_tab) {
return gfx::Rect(tab_strip_point.x(), tab_strip_point.y(),
source_tab_drag_data()->attached_tab->width(),
source_tab_drag_data()->attached_tab->height());
}
double sel_width, unselected_width;
attached_tabstrip_->GetCurrentTabWidths(&sel_width, &unselected_width);
return gfx::Rect(tab_strip_point.x(), tab_strip_point.y(),
static_cast<int>(sel_width),
Tab::GetStandardSize().height());
}
gfx::Point TabDragController::GetAttachedDragPoint(
const gfx::Point& point_in_screen) {
DCHECK(attached_tabstrip_);
gfx::Point tab_loc(point_in_screen);
views::View::ConvertPointFromScreen(attached_tabstrip_, &tab_loc);
const int x =
attached_tabstrip_->GetMirroredXInView(tab_loc.x()) - mouse_offset_.x();
std::vector<Tab*> attached_tabs;
for (size_t i = 0; i < drag_data_.size(); ++i)
attached_tabs.push_back(drag_data_[i].attached_tab);
const int size = attached_tabstrip_->GetSizeNeededForTabs(attached_tabs);
const int max_x = attached_tabstrip_->width() - size;
return gfx::Point(std::min(std::max(x, 0), max_x), 0);
}
std::vector<Tab*> TabDragController::GetTabsMatchingDraggedContents(
TabStrip* tabstrip) {
TabStripModel* model = GetModel(attached_tabstrip_);
std::vector<Tab*> tabs;
for (size_t i = 0; i < drag_data_.size(); ++i) {
int model_index = model->GetIndexOfWebContents(drag_data_[i].contents);
if (model_index == TabStripModel::kNoTab)
return std::vector<Tab*>();
tabs.push_back(tabstrip->tab_at(model_index));
}
return tabs;
}
std::vector<gfx::Rect> TabDragController::CalculateBoundsForDraggedTabs() {
std::vector<gfx::Rect> drag_bounds;
std::vector<Tab*> attached_tabs;
for (size_t i = 0; i < drag_data_.size(); ++i)
attached_tabs.push_back(drag_data_[i].attached_tab);
attached_tabstrip_->CalculateBoundsForDraggedTabs(attached_tabs,
&drag_bounds);
return drag_bounds;
}
void TabDragController::EndDragImpl(EndDragType type) {
DCHECK(active_);
active_ = false;
bring_to_front_timer_.Stop();
move_stacked_timer_.Stop();
if (is_dragging_window_) {
waiting_for_run_loop_to_exit_ = true;
if (type == NORMAL || (type == TAB_DESTROYED && drag_data_.size() > 1)) {
SetWindowPositionManaged(GetAttachedBrowserWidget()->GetNativeView(),
true);
}
GetAttachedBrowserWidget()->EndMoveLoop();
}
if (type != TAB_DESTROYED) {
if (started_drag_) {
RestoreFocus();
if (type == CANCELED)
RevertDrag();
else
CompleteDrag();
}
} else if (drag_data_.size() > 1) {
initial_selection_model_.Clear();
RevertDrag();
}
if (!detach_into_browser_)
ResetDelegates();
drag_data_.clear();
TabStrip* owning_tabstrip = (attached_tabstrip_ && detach_into_browser_) ?
attached_tabstrip_ : source_tabstrip_;
owning_tabstrip->DestroyDragController();
}
void TabDragController::RevertDrag() {
std::vector<Tab*> tabs;
for (size_t i = 0; i < drag_data_.size(); ++i) {
if (drag_data_[i].contents) {
tabs.push_back(drag_data_[i].attached_tab);
RevertDragAt(i);
}
}
bool restore_frame = !detach_into_browser_ &&
attached_tabstrip_ != source_tabstrip_;
if (attached_tabstrip_) {
if (did_restore_window_)
MaximizeAttachedWindow();
if (attached_tabstrip_ == source_tabstrip_) {
source_tabstrip_->StoppedDraggingTabs(
tabs, initial_tab_positions_, move_behavior_ == MOVE_VISIBILE_TABS,
false);
} else {
attached_tabstrip_->DraggedTabsDetached();
}
}
if (initial_selection_model_.empty())
ResetSelection(GetModel(source_tabstrip_));
else
GetModel(source_tabstrip_)->SetSelectionFromModel(initial_selection_model_);
if (restore_frame && !restore_bounds_.IsEmpty())
source_tabstrip_->GetWidget()->SetBounds(restore_bounds_);
if (detach_into_browser_ && source_tabstrip_)
source_tabstrip_->GetWidget()->Activate();
if (!detach_into_browser_ && !attached_tabstrip_ && source_dragged_contents())
source_dragged_contents()->DecrementCapturerCount();
}
void TabDragController::ResetSelection(TabStripModel* model) {
DCHECK(model);
ui::ListSelectionModel selection_model;
bool has_one_valid_tab = false;
for (size_t i = 0; i < drag_data_.size(); ++i) {
if (drag_data_[i].contents) {
int index = model->GetIndexOfWebContents(drag_data_[i].contents);
DCHECK_NE(-1, index);
selection_model.AddIndexToSelection(index);
if (!has_one_valid_tab || i == source_tab_index_) {
selection_model.set_active(index);
selection_model.set_anchor(index);
has_one_valid_tab = true;
}
}
}
if (!has_one_valid_tab)
return;
model->SetSelectionFromModel(selection_model);
}
void TabDragController::RestoreInitialSelection() {
ui::ListSelectionModel selection_model;
selection_model.Copy(initial_selection_model_);
for (DragData::const_reverse_iterator i(drag_data_.rbegin());
i != drag_data_.rend(); ++i) {
selection_model.DecrementFrom(i->source_model_index);
}
if (selection_model.empty())
return;
if (selection_model.anchor() == ui::ListSelectionModel::kUnselectedIndex)
selection_model.set_anchor(selection_model.selected_indices()[0]);
if (selection_model.active() == ui::ListSelectionModel::kUnselectedIndex)
selection_model.set_active(selection_model.selected_indices()[0]);
GetModel(source_tabstrip_)->SetSelectionFromModel(selection_model);
}
void TabDragController::RevertDragAt(size_t drag_index) {
DCHECK(started_drag_);
DCHECK(source_tabstrip_);
base::AutoReset<bool> setter(&is_mutating_, true);
TabDragData* data = &(drag_data_[drag_index]);
if (attached_tabstrip_) {
int index =
GetModel(attached_tabstrip_)->GetIndexOfWebContents(data->contents);
if (attached_tabstrip_ != source_tabstrip_) {
GetModel(attached_tabstrip_)->DetachWebContentsAt(index);
GetModel(source_tabstrip_)->InsertWebContentsAt(
data->source_model_index, data->contents,
(data->pinned ? TabStripModel::ADD_PINNED : 0));
} else {
GetModel(source_tabstrip_)->MoveWebContentsAt(
index, data->source_model_index, false);
}
} else {
GetModel(source_tabstrip_)->InsertWebContentsAt(
data->source_model_index, data->contents,
(data->pinned ? TabStripModel::ADD_PINNED : 0));
}
}
void TabDragController::CompleteDrag() {
DCHECK(started_drag_);
if (attached_tabstrip_) {
if (is_dragging_new_browser_ || did_restore_window_) {
if (IsDockedOrSnapped(attached_tabstrip_)) {
was_source_maximized_ = false;
was_source_fullscreen_ = false;
}
if (was_source_maximized_ || was_source_fullscreen_)
MaximizeAttachedWindow();
}
attached_tabstrip_->StoppedDraggingTabs(
GetTabsMatchingDraggedContents(attached_tabstrip_),
initial_tab_positions_,
move_behavior_ == MOVE_VISIBILE_TABS,
true);
} else {
views::Widget* widget = source_tabstrip_->GetWidget();
gfx::Rect window_bounds(widget->GetRestoredBounds());
window_bounds.set_origin(GetWindowCreatePoint(last_point_in_screen_));
base::AutoReset<bool> setter(&is_mutating_, true);
std::vector<TabStripModelDelegate::NewStripContents> contentses;
for (size_t i = 0; i < drag_data_.size(); ++i) {
TabStripModelDelegate::NewStripContents item;
item.web_contents = drag_data_[i].contents;
item.add_types = drag_data_[i].pinned ? TabStripModel::ADD_PINNED
: TabStripModel::ADD_NONE;
contentses.push_back(item);
}
Browser* new_browser =
GetModel(source_tabstrip_)->delegate()->CreateNewStripWithContents(
contentses, window_bounds, widget->IsMaximized());
ResetSelection(new_browser->tab_strip_model());
new_browser->window()->Show();
if (!detach_into_browser_)
source_dragged_contents()->DecrementCapturerCount();
}
CleanUpHiddenFrame();
}
void TabDragController::MaximizeAttachedWindow() {
GetAttachedBrowserWidget()->Maximize();
#if defined(USE_ASH)
if (was_source_fullscreen_ &&
host_desktop_type_ == chrome::HOST_DESKTOP_TYPE_ASH) {
ash::accelerators::ToggleFullscreen();
}
#endif
}
void TabDragController::ResetDelegates() {
DCHECK(!detach_into_browser_);
for (size_t i = 0; i < drag_data_.size(); ++i) {
if (drag_data_[i].contents &&
drag_data_[i].contents->GetDelegate() == this) {
drag_data_[i].contents->SetDelegate(
drag_data_[i].original_delegate);
}
}
}
gfx::Rect TabDragController::GetViewScreenBounds(
views::View* view) const {
gfx::Point view_topleft;
views::View::ConvertPointToScreen(view, &view_topleft);
gfx::Rect view_screen_bounds = view->GetLocalBounds();
view_screen_bounds.Offset(view_topleft.x(), view_topleft.y());
return view_screen_bounds;
}
void TabDragController::CleanUpHiddenFrame() {
if (!detach_into_browser_ && GetModel(source_tabstrip_)->empty())
GetModel(source_tabstrip_)->delegate()->CloseFrameAfterDragSession();
}
void TabDragController::BringWindowUnderPointToFront(
const gfx::Point& point_in_screen) {
aura::Window* window = GetLocalProcessWindow(point_in_screen, true);
if (!GetTabStripForWindow(window))
return;
if (window) {
views::Widget* widget_window = views::Widget::GetWidgetForNativeView(
window);
if (!widget_window)
return;
#if defined(USE_ASH)
if (host_desktop_type_ == chrome::HOST_DESKTOP_TYPE_ASH) {
aura::Window* browser_window = widget_window->GetNativeView();
for (aura::Window::Windows::const_reverse_iterator it =
browser_window->parent()->children().rbegin();
it != browser_window->parent()->children().rend(); ++it) {
if (*it == browser_window)
return;
if ((*it)->type() != ui::wm::WINDOW_TYPE_POPUP) {
widget_window->StackAbove(*it);
break;
}
}
} else {
widget_window->StackAtTop();
}
#else
widget_window->StackAtTop();
#endif
if (is_dragging_window_)
attached_tabstrip_->GetWidget()->StackAtTop();
}
}
TabStripModel* TabDragController::GetModel(
TabStrip* tabstrip) const {
return static_cast<BrowserTabStripController*>(tabstrip->controller())->
model();
}
views::Widget* TabDragController::GetAttachedBrowserWidget() {
return attached_tabstrip_->GetWidget();
}
bool TabDragController::AreTabsConsecutive() {
for (size_t i = 1; i < drag_data_.size(); ++i) {
if (drag_data_[i - 1].source_model_index + 1 !=
drag_data_[i].source_model_index) {
return false;
}
}
return true;
}
gfx::Rect TabDragController::CalculateDraggedBrowserBounds(
TabStrip* source,
const gfx::Point& point_in_screen,
std::vector<gfx::Rect>* drag_bounds) {
gfx::Point center(0, source->height() / 2);
views::View::ConvertPointToWidget(source, ¢er);
gfx::Rect new_bounds(source->GetWidget()->GetRestoredBounds());
if (source->GetWidget()->IsMaximized()) {
const gfx::Size max_size(
source->GetWidget()->GetWindowBoundsInScreen().size());
new_bounds.set_width(
std::max(max_size.width() / 2, new_bounds.width()));
new_bounds.set_height(
std::max(max_size.height() / 2, new_bounds.height()));
}
new_bounds.set_y(point_in_screen.y() - center.y());
switch (GetDetachPosition(point_in_screen)) {
case DETACH_BEFORE:
new_bounds.set_x(point_in_screen.x() - center.x());
new_bounds.Offset(-mouse_offset_.x(), 0);
break;
case DETACH_AFTER: {
gfx::Point right_edge(source->width(), 0);
views::View::ConvertPointToWidget(source, &right_edge);
new_bounds.set_x(point_in_screen.x() - right_edge.x());
new_bounds.Offset(drag_bounds->back().right() - mouse_offset_.x(), 0);
OffsetX(-(*drag_bounds)[0].x(), drag_bounds);
break;
}
default:
break;
}
if (source->GetWidget()->IsMaximized())
new_bounds.Offset(0, -source->button_v_offset());
return new_bounds;
}
void TabDragController::AdjustBrowserAndTabBoundsForDrag(
int last_tabstrip_width,
const gfx::Point& point_in_screen,
std::vector<gfx::Rect>* drag_bounds) {
attached_tabstrip_->InvalidateLayout();
attached_tabstrip_->DoLayout();
const int dragged_tabstrip_width = attached_tabstrip_->tab_area_width();
if (dragged_tabstrip_width < last_tabstrip_width) {
const float leading_ratio =
drag_bounds->front().x() / static_cast<float>(last_tabstrip_width);
*drag_bounds = CalculateBoundsForDraggedTabs();
if (drag_bounds->back().right() < dragged_tabstrip_width) {
const int delta_x =
std::min(static_cast<int>(leading_ratio * dragged_tabstrip_width),
dragged_tabstrip_width -
(drag_bounds->back().right() -
drag_bounds->front().x()));
OffsetX(delta_x, drag_bounds);
}
gfx::Point offset(
static_cast<int>((*drag_bounds)[source_tab_index_].width() *
offset_to_width_ratio_) +
(*drag_bounds)[source_tab_index_].x(), 0);
views::View::ConvertPointToWidget(attached_tabstrip_, &offset);
gfx::Rect bounds = GetAttachedBrowserWidget()->GetWindowBoundsInScreen();
bounds.set_x(point_in_screen.x() - offset.x());
GetAttachedBrowserWidget()->SetBounds(bounds);
}
attached_tabstrip_->SetTabBoundsForDrag(*drag_bounds);
}
Browser* TabDragController::CreateBrowserForDrag(
TabStrip* source,
const gfx::Point& point_in_screen,
gfx::Vector2d* drag_offset,
std::vector<gfx::Rect>* drag_bounds) {
gfx::Rect new_bounds(CalculateDraggedBrowserBounds(source,
point_in_screen,
drag_bounds));
*drag_offset = point_in_screen - new_bounds.origin();
Profile* profile =
Profile::FromBrowserContext(drag_data_[0].contents->GetBrowserContext());
Browser::CreateParams create_params(Browser::TYPE_TABBED,
profile,
host_desktop_type_);
create_params.initial_bounds = new_bounds;
Browser* browser = new Browser(create_params);
is_dragging_new_browser_ = true;
SetWindowPositionManaged(browser->window()->GetNativeWindow(), false);
browser->window()->SetBounds(new_bounds);
return browser;
}
gfx::Point TabDragController::GetCursorScreenPoint() {
#if defined(USE_ASH)
if (host_desktop_type_ == chrome::HOST_DESKTOP_TYPE_ASH &&
event_source_ == EVENT_SOURCE_TOUCH &&
aura::Env::GetInstance()->is_touch_down()) {
views::Widget* widget = GetAttachedBrowserWidget();
DCHECK(widget);
aura::Window* widget_window = widget->GetNativeWindow();
DCHECK(widget_window->GetRootWindow());
gfx::PointF touch_point_f;
bool got_touch_point = ui::GestureRecognizer::Get()->
GetLastTouchPointForTarget(widget_window, &touch_point_f);
gfx::Point touch_point = gfx::ToFlooredPoint(touch_point_f);
DCHECK(got_touch_point);
ash::wm::ConvertPointToScreen(widget_window->GetRootWindow(), &touch_point);
return touch_point;
}
#endif
return screen_->GetCursorScreenPoint();
}
gfx::Vector2d TabDragController::GetWindowOffset(
const gfx::Point& point_in_screen) {
TabStrip* owning_tabstrip = (attached_tabstrip_ && detach_into_browser_) ?
attached_tabstrip_ : source_tabstrip_;
views::View* toplevel_view = owning_tabstrip->GetWidget()->GetContentsView();
gfx::Point point = point_in_screen;
views::View::ConvertPointFromScreen(toplevel_view, &point);
return point.OffsetFromOrigin();
}
gfx::NativeWindow TabDragController::GetLocalProcessWindow(
const gfx::Point& screen_point,
bool exclude_dragged_view) {
std::set<aura::Window*> exclude;
if (exclude_dragged_view) {
aura::Window* dragged_window =
attached_tabstrip_->GetWidget()->GetNativeView();
if (dragged_window)
exclude.insert(dragged_window);
}
#if defined(OS_LINUX) && !defined(OS_CHROMEOS)
BrowserList* browser_list = BrowserList::GetInstance(
chrome::HOST_DESKTOP_TYPE_NATIVE);
for (BrowserList::const_iterator it = browser_list->begin();
it != browser_list->end(); ++it) {
if ((*it)->tab_strip_model()->empty())
exclude.insert((*it)->window()->GetNativeWindow());
}
#endif
return GetLocalProcessWindowAtPoint(host_desktop_type_,
screen_point,
exclude);
}