| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #include "ui/views/widget/widget.h" | 5 #include "ui/views/widget/widget.h" |
| 6 | 6 |
| 7 #include "base/debug/trace_event.h" | 7 #include "base/debug/trace_event.h" |
| 8 #include "base/logging.h" | 8 #include "base/logging.h" |
| 9 #include "base/message_loop/message_loop.h" | 9 #include "base/message_loop/message_loop.h" |
| 10 #include "base/strings/utf_string_conversions.h" | 10 #include "base/strings/utf_string_conversions.h" |
| (...skipping 769 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 780 ui::InputMethod* Widget::GetHostInputMethod() { | 780 ui::InputMethod* Widget::GetHostInputMethod() { |
| 781 return native_widget_private()->GetHostInputMethod(); | 781 return native_widget_private()->GetHostInputMethod(); |
| 782 } | 782 } |
| 783 | 783 |
| 784 void Widget::RunShellDrag(View* view, | 784 void Widget::RunShellDrag(View* view, |
| 785 const ui::OSExchangeData& data, | 785 const ui::OSExchangeData& data, |
| 786 const gfx::Point& location, | 786 const gfx::Point& location, |
| 787 int operation, | 787 int operation, |
| 788 ui::DragDropTypes::DragEventSource source) { | 788 ui::DragDropTypes::DragEventSource source) { |
| 789 dragged_view_ = view; | 789 dragged_view_ = view; |
| 790 OnDragWillStart(); |
| 790 native_widget_->RunShellDrag(view, data, location, operation, source); | 791 native_widget_->RunShellDrag(view, data, location, operation, source); |
| 791 // If the view is removed during the drag operation, dragged_view_ is set to | 792 // If the view is removed during the drag operation, dragged_view_ is set to |
| 792 // NULL. | 793 // NULL. |
| 793 if (view && dragged_view_ == view) { | 794 if (view && dragged_view_ == view) { |
| 794 dragged_view_ = NULL; | 795 dragged_view_ = NULL; |
| 795 view->OnDragDone(); | 796 view->OnDragDone(); |
| 796 } | 797 } |
| 798 OnDragComplete(); |
| 797 } | 799 } |
| 798 | 800 |
| 799 void Widget::SchedulePaintInRect(const gfx::Rect& rect) { | 801 void Widget::SchedulePaintInRect(const gfx::Rect& rect) { |
| 800 native_widget_->SchedulePaintInRect(rect); | 802 native_widget_->SchedulePaintInRect(rect); |
| 801 } | 803 } |
| 802 | 804 |
| 803 void Widget::SetCursor(gfx::NativeCursor cursor) { | 805 void Widget::SetCursor(gfx::NativeCursor cursor) { |
| 804 native_widget_->SetCursor(cursor); | 806 native_widget_->SetCursor(cursor); |
| 805 } | 807 } |
| 806 | 808 |
| (...skipping 568 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1375 return new internal::RootView(this); | 1377 return new internal::RootView(this); |
| 1376 } | 1378 } |
| 1377 | 1379 |
| 1378 void Widget::DestroyRootView() { | 1380 void Widget::DestroyRootView() { |
| 1379 non_client_view_ = NULL; | 1381 non_client_view_ = NULL; |
| 1380 root_view_.reset(); | 1382 root_view_.reset(); |
| 1381 // Input method has to be destroyed before focus manager. | 1383 // Input method has to be destroyed before focus manager. |
| 1382 input_method_.reset(); | 1384 input_method_.reset(); |
| 1383 } | 1385 } |
| 1384 | 1386 |
| 1387 void Widget::OnDragWillStart() { |
| 1388 } |
| 1389 |
| 1390 void Widget::OnDragComplete() { |
| 1391 } |
| 1392 |
| 1385 //////////////////////////////////////////////////////////////////////////////// | 1393 //////////////////////////////////////////////////////////////////////////////// |
| 1386 // Widget, private: | 1394 // Widget, private: |
| 1387 | 1395 |
| 1388 void Widget::SetInactiveRenderingDisabled(bool value) { | 1396 void Widget::SetInactiveRenderingDisabled(bool value) { |
| 1389 if (value == disable_inactive_rendering_) | 1397 if (value == disable_inactive_rendering_) |
| 1390 return; | 1398 return; |
| 1391 | 1399 |
| 1392 disable_inactive_rendering_ = value; | 1400 disable_inactive_rendering_ = value; |
| 1393 if (non_client_view_) | 1401 if (non_client_view_) |
| 1394 non_client_view_->SetInactiveRenderingDisabled(value); | 1402 non_client_view_->SetInactiveRenderingDisabled(value); |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1493 | 1501 |
| 1494 //////////////////////////////////////////////////////////////////////////////// | 1502 //////////////////////////////////////////////////////////////////////////////// |
| 1495 // internal::NativeWidgetPrivate, NativeWidget implementation: | 1503 // internal::NativeWidgetPrivate, NativeWidget implementation: |
| 1496 | 1504 |
| 1497 internal::NativeWidgetPrivate* NativeWidgetPrivate::AsNativeWidgetPrivate() { | 1505 internal::NativeWidgetPrivate* NativeWidgetPrivate::AsNativeWidgetPrivate() { |
| 1498 return this; | 1506 return this; |
| 1499 } | 1507 } |
| 1500 | 1508 |
| 1501 } // namespace internal | 1509 } // namespace internal |
| 1502 } // namespace views | 1510 } // namespace views |
| OLD | NEW |