Home
last modified time | relevance | path

Searched refs:top_panel (Results 1 – 8 of 8) sorted by relevance

/external/chromium_org/chrome/browser/ui/panels/
Dstacked_panel_collection.cc49 gfx::Rect top_bounds = top_panel()->GetBounds(); in OnDisplayChanged()
74 gfx::Rect top_bounds = top_panel()->GetBounds(); in RefreshLayout()
162 if (top_panel()->in_preview_mode() != bottom_panel()->in_preview_mode() || in PanelBoundsBatchUpdateCompleted()
174 gfx::Rect enclosing_bounds = top_panel()->GetBounds(); in GetEnclosingBounds()
212 adjacent_panel = top_panel(); in AddPanel()
242 if (top_panel()->in_preview_mode() == bottom_panel()->in_preview_mode() && in AddPanel()
243 top_panel()->GetBounds().x() == bottom_panel()->GetBounds().x() && in AddPanel()
244 top_panel()->GetBounds().width() == bottom_panel()->GetBounds().width()) { in AddPanel()
260 bool is_top = panel == top_panel(); in RemovePanel()
279 Panel* new_top_panel = top_panel(); in RemovePanel()
[all …]
Dstacked_panel_drag_handler.cc24 if (in_orginal_collection && panel != stack->top_panel()) in HandleDrag()
59 if (stack->top_panel() != panel) in FinalizeDrag()
Dpanel_manager.cc83 return ComparePanelsByPosition(stack1->top_panel(), stack2->top_panel()); in ComparerNumberOfPanelsInStack()
420 Panel* top_panel = stack->top_panel(); in OnPanelClosed() local
421 MovePanelToCollection(top_panel, in OnPanelClosed()
424 if (top_panel->expansion_state() != Panel::EXPANDED) in OnPanelClosed()
425 top_panel->SetExpansionState(Panel::EXPANDED); in OnPanelClosed()
Dstacked_panel_collection.h83 Panel* top_panel() const { return panels_.empty() ? NULL : panels_.front(); } in top_panel() function
101 Panel* top_panel; member
103 PanelPlacement() : panel(NULL), top_panel(NULL) { } in PanelPlacement()
Dpanel_drag_controller.cc413 if (dragging_panel_ != dragging_stack->top_panel() || in TryUnstackFromTop()
525 if (dragging_panel_ == dragging_stack->top_panel()) in TryUnstackFromBottom()
550 MovePanelAndBelowToCollection(dragging_stack->top_panel(), in TryUnstackFromBottom()
572 dragging_stack->top_panel()) { in TryUnstackFromBottom()
573 panel_manager_->MovePanelToCollection(dragging_stack->top_panel(), in TryUnstackFromBottom()
727 if ((!stack || panel == stack->top_panel()) && in FindPanelToGlue()
804 stack->top_panel(), in MovePanelAndBelowToCollection()
Dstacked_panel_browsertest.cc819 EXPECT_TRUE(panel2 == stack->top_panel()); in IN_PROC_BROWSER_TEST_F()
846 EXPECT_TRUE(panel2 == stack->top_panel()); in IN_PROC_BROWSER_TEST_F()
932 EXPECT_TRUE(panel1 == stack->top_panel()); in IN_PROC_BROWSER_TEST_F()
Dpanel_drag_browsertest.cc1912 EXPECT_EQ(panel3, stack->top_panel()); in IN_PROC_BROWSER_TEST_F()
/external/chromium_org/chrome/browser/ui/gtk/panels/
Dpanel_gtk.cc880 other_panel = panel_ != stack->top_panel() ? stack->top_panel() in DeactivatePanel()