HomeSort by relevance Sort by last modified time
    Searched refs:Panel (Results 1 - 25 of 105) sorted by null

1 2 3 4 5

  /external/chromium_org/chrome/browser/ui/panels/
docked_panel_drag_handler.h 10 class Panel;
18 static void HandleDrag(Panel* panel, const gfx::Point& target_position);
21 static void DragLeft(Panel* panel);
22 static void DragRight(Panel* panel);
panel_collection.h 12 class Panel;
18 // Types of layout for the panel collections.
25 // Masks that control how the panel is added and positioned.
27 // The panel is added and placed at default position that is decided by the
30 // The panel is being added based on its current known position.
32 // The panel is added and placed at top position (currently only used by
35 // Do not update panel bounds. Only valid with DEFAULT_POSIITON.
38 // adding panel to the collection. If not set, the collection will refresh
43 // Collapse other inactive stacked panels such the tha new panel can fit
59 // a result of removing or resizing a panel in collection
    [all...]
stacked_panel_drag_handler.h 10 class Panel;
18 static void HandleDrag(Panel* panel,
22 static void FinalizeDrag(Panel* panel);
test_panel_active_state_observer.h 10 class Panel;
12 // Custom notification observer for waiting on panel active state.
16 // Register to listen for panel active state change notifications
17 // for the specified panel to detect a change to the expected active
19 PanelActiveStateObserver(Panel* panel, bool expect_active);
26 Panel* panel_;
detached_panel_drag_handler.h 10 class Panel;
18 static void HandleDrag(Panel* panel, const gfx::Point& target_position);
test_panel_collection_squeeze_observer.h 11 class Panel;
13 // Custom notification observer for waiting on panel collection that squeezes
18 // Register to listen for panel collection updated notifications
23 Panel* active_panel);
30 bool IsSqueezed(Panel* panel);
33 Panel* active_panel_;
detached_panel_collection.h 10 #include "chrome/browser/ui/panels/panel.h"
20 typedef std::list<Panel*> Panels;
21 typedef bool (*PanelsComparer)(Panel* panel1, Panel* panel2);
29 virtual void AddPanel(Panel* panel,
31 virtual void RemovePanel(Panel* panel, RemovalReason reason) OVERRIDE;
34 Panel* panel,
80 Panel* panel; member in struct:DetachedPanelCollection::PanelPlacement
    [all...]
native_panel_stack_window.h 12 class Panel;
52 // Makes |panel| be enclosed by this stack window.
54 // Adds |panel| to the set of panels grouped and shown inside this stack
55 // Window. It does not take ownership of |panel|.
56 virtual void AddPanel(Panel* panel) = 0;
58 // Removes |panel| from the set of panels grouped and shown inside this stack
60 virtual void RemovePanel(Panel* panel) = 0;
66 // Returns true if no panel is being shown inside this stack window
    [all...]
stacked_panel_collection.h 24 typedef std::list<Panel*> Panels;
32 virtual void AddPanel(Panel* panel,
34 virtual void RemovePanel(Panel* panel, RemovalReason reason) OVERRIDE;
37 Panel* panel,
39 virtual panel::Resizability GetPanelResizability(
40 const Panel* panel) const OVERRIDE
94 Panel* panel; member in struct:StackedPanelCollection::PanelPlacement
    [all...]
panel_resize_controller.h 14 class Panel;
25 // Resize the given panel.
27 void StartResizing(Panel* panel,
32 // Returns the panel that was resized.
33 Panel* EndResizing(bool cancelled);
35 // Asynchronous confirmation of panel having been closed.
36 void OnPanelClosed(Panel* panel);
43 // Panel currently being resized
    [all...]
docked_panel_collection.h 13 #include "chrome/browser/ui/panels/panel.h"
27 typedef std::list<Panel*> Panels;
38 // area being changed or a panel being closed.
41 // Adds a panel to the collection. The panel may be a newly created panel or
43 virtual void AddPanel(Panel* panel,
45 virtual void RemovePanel(Panel* pane, RemovalReason reasonl) OVERRIDE;
48 Panel* panel
122 Panel* panel; member in struct:DockedPanelCollection::PanelPlacement
    [all...]
base_panel_browser_test.h 11 #include "chrome/browser/ui/panels/panel.h"
46 // certain panel tests. Skip those tests when running on the bots.
52 // created as inactive, causing certain panel tests to fail. These tests
79 Panel* CreatePanelWithParams(const CreatePanelParams& params);
80 Panel* CreatePanelWithBounds(const std::string& panel_name,
82 Panel* CreatePanel(const std::string& panel_name);
84 Panel* CreateDockedPanel(const std::string& name, const gfx::Rect& bounds);
85 Panel* CreateDetachedPanel(const std::string& name, const gfx::Rect& bounds);
86 Panel* CreateStackedPanel(const std::string& name,
90 Panel* CreateInactivePanel(const std::string& name)
    [all...]
panel_bounds_animation.h 13 class Panel;
18 Panel* panel,
33 Panel* panel_; // Weak, owns us.
test_panel_active_state_observer.cc 8 #include "chrome/browser/ui/panels/panel.h"
12 Panel* panel,
16 content::Source<Panel>(panel)),
17 panel_(panel),
detached_panel_collection.cc 18 // When the stacking mode is enabled, the detached panel will be positioned
19 // near the top of the working area such that the subsequent panel could be
20 // stacked to the bottom of the detached panel. This value is experimental
40 Panel* panel = *iter; local
42 display_settings_provider->GetWorkAreaMatching(panel->GetBounds());
45 panel->LimitSizeToWorkArea(work_area);
47 // Update bounds to make sure the panel falls completely within the work
49 gfx::Rect bounds = panel->GetBounds();
50 if (panel->full_size() != bounds.size())
75 Panel* panel = *iter; local
    [all...]
panel_drag_controller.h 12 class Panel;
27 // Drags the given panel.
29 void StartDragging(Panel* panel, const gfx::Point& mouse_location);
33 // Asynchronous confirmation of panel having been closed.
34 void OnPanelClosed(Panel* panel);
37 Panel* dragging_panel() const { return dragging_panel_; }
63 // panel origin to move to. Returns true if the request has been performed.
71 // Finds the panel that the dragging panel with |potential_position| coul
    [all...]
docked_panel_collection.cc 24 // Width of spacing around panel collection and the left/right edges of the
35 // After focus changed, one panel lost active status, another got it,
39 // As we refresh panel positions, some or all panels may move. We make sure
82 void DockedPanelCollection::AddPanel(Panel* panel,
85 DCHECK_EQ(Panel::EXPANDED, panel->expansion_state());
87 DCHECK(panel->initialized());
88 DCHECK_NE(this, panel->collection());
89 panel->set_collection(this)
198 Panel* panel = saved_panel_placement_.panel; local
480 Panel* panel = *iter; local
570 Panel* panel = *iter; local
637 Panel* panel = *panel_iter; local
662 Panel* panel = *panel_iter; local
705 Panel* panel = bounds_info.first; local
    [all...]
panel.cc 5 #include "chrome/browser/ui/panels/panel.h"
51 PanelExtensionWindowController(Panel* panel, Profile* profile);
68 Panel* panel_; // Weak pointer. Owns us.
73 Panel* panel, Profile* profile)
74 : extensions::WindowController(panel, profile),
75 panel_(panel) {
156 Panel::~Panel() {
    [all...]
test_panel_collection_squeeze_observer.cc 9 #include "chrome/browser/ui/panels/panel.h"
13 DockedPanelCollection* collection, Panel* active_panel)
23 bool PanelCollectionSqueezeObserver::IsSqueezed(Panel* panel) {
24 return panel->GetBounds().width() < panel->GetRestoredBounds().width();
detached_panel_drag_handler.cc 8 #include "chrome/browser/ui/panels/panel.h"
14 void DetachedPanelDragHandler::HandleDrag(Panel* panel,
16 DCHECK_EQ(PanelCollection::DETACHED, panel->collection()->type());
18 gfx::Rect new_bounds(panel->GetBounds());
20 panel->SetPanelBoundsInstantly(new_bounds);
stacked_panel_drag_handler.cc 8 #include "chrome/browser/ui/panels/panel.h"
15 void StackedPanelDragHandler::HandleDrag(Panel* panel,
18 DCHECK_EQ(PanelCollection::STACKED, panel->collection()->type());
20 StackedPanelCollection* stack = panel->stack();
23 // If the panel is in its original stack, only top panel is allowed to drag.
24 if (in_orginal_collection && panel != stack->top_panel())
38 gfx::Vector2d delta_origin = target_position - panel->GetBounds().origin();
51 void StackedPanelDragHandler::FinalizeDrag(Panel* panel)
69 Panel* panel = *iter; local
    [all...]
  /external/chromium_org/chrome/browser/ui/cocoa/panels/
panel_stack_window_cocoa.h 20 class Panel;
37 virtual void AddPanel(Panel* panel) OVERRIDE;
38 virtual void RemovePanel(Panel* panel) OVERRIDE;
41 virtual bool HasPanel(Panel* panel) const OVERRIDE;
44 virtual void AddPanelBoundsForBatchUpdate(Panel* panel,
51 virtual void OnPanelActivated(Panel* panel) OVERRIDE
    [all...]
  /external/chromium_org/chrome/browser/ui/views/panels/
x11_panel_resizer.h 15 class Panel;
19 // When resizing a panel:
20 // - The panel bounds should update in sync with the user's mouse movement
28 X11PanelResizer(Panel* panel, aura::Window* window);
35 // The user has clicked on one of the panel's edges.
38 // The user has dragged one of the panel's edges far enough for resizing to
56 // The panel being resized.
57 Panel* panel_;
59 // |panel|'s window
    [all...]
panel_stack_view.h 46 virtual void AddPanel(Panel* panel) OVERRIDE;
47 virtual void RemovePanel(Panel* panel) OVERRIDE;
50 virtual bool HasPanel(Panel* panel) const OVERRIDE;
54 Panel* panel, const gfx::Rect& new_bounds) OVERRIDE;
60 virtual void OnPanelActivated(Panel* panel) OVERRIDE
    [all...]
  /external/javassist/sample/rmi/
AlertDialog.java 16 Panel p = new Panel();

Completed in 250 milliseconds

1 2 3 4 5