Home | History | Annotate | Download | only in panels

Lines Matching refs:Panels

5 #include "chrome/browser/ui/panels/stacked_panel_drag_handler.h"
8 #include "chrome/browser/ui/panels/panel.h"
9 #include "chrome/browser/ui/panels/panel_collection.h"
10 #include "chrome/browser/ui/panels/stacked_panel_collection.h"
27 // Find out if all panels in the stack are being dragged.
29 for (StackedPanelCollection::Panels::const_iterator iter =
30 stack->panels().begin();
31 iter != stack->panels().end(); ++iter) {
40 // If not all panels in the stack are being dragged, it means that these
41 // panels being dragged have just been added to this stack. Dragging these
42 // panels should only cause the horizontal movement due to that y position
43 // of these panels have already aligned.
62 // Find the first non-dragging panel that is used to align all dragging panels
63 // above it to have the same x position. This is because all dragging panels
66 for (StackedPanelCollection::Panels::const_iterator iter =
67 stack->panels().begin();
68 iter != stack->panels().end(); ++iter) {