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

1 2 3 4 5 6 7 8 91011

  /external/chromium_org/chrome/browser/ui/panels/
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...]
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...]
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);
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);
detached_panel_browsertest.cc 9 #include "chrome/browser/ui/panels/panel.h"
20 // Create an initially detached panel (as opposed to other tests which create
21 // a docked panel, then detaches it).
25 Panel* panel = CreatePanelWithParams(params); local
27 CreateNativePanelTesting(panel));
30 EXPECT_TRUE(detached_collection->HasPanel(panel));
32 EXPECT_EQ(bounds.x(), panel->GetBounds().x());
33 // Ignore checking y position since the detached panel will be placed near
36 EXPECT_EQ(bounds.y(), panel->GetBounds().y())
64 Panel* panel = CreateDetachedPanel("1", gfx::Rect(300, 200, 250, 200)); local
80 Panel* panel = local
102 Panel* panel = local
122 Panel* panel = CreateDetachedPanel("1", gfx::Rect(300, 200, 250, 200)); local
156 Panel* panel = CreateDetachedPanel("1", initial_bounds); local
192 Panel* panel = CreateDetachedPanel("1", initial_bounds); local
216 Panel* panel = CreatePanelWithParams(params); local
243 Panel* panel = CreatePanelWithParams(params); local
    [all...]
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...]
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...]
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...]
stacked_panel_drag_handler.h 10 class Panel;
18 static void HandleDrag(Panel* panel,
22 static void FinalizeDrag(Panel* panel);
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...]
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),
docked_panel_drag_handler.cc 8 #include "chrome/browser/ui/panels/panel.h"
14 void DockedPanelDragHandler::HandleDrag(Panel* panel,
16 DCHECK_EQ(PanelCollection::DOCKED, panel->collection()->type());
19 static_cast<DockedPanelCollection*>(panel->collection());
21 // Moves this panel to the dragging position.
22 // Note that we still allow the panel to be moved vertically until it gets
24 gfx::Rect new_bounds(panel->GetBounds());
26 int delta_x = new_bounds.x() - panel->GetBounds().x();
28 panel->expansion_state())
    [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...]
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...]
stacked_panel_collection.cc 14 #include "chrome/browser/ui/panels/panel.h"
83 // If only one panel is left in the stack, we only need to check if it should
86 Panel* panel = panels_.front(); local
87 gfx::Rect bounds = panel->GetBounds();
90 panel->SetPanelBounds(bounds);
105 Panel* panel = *iter; local
108 // top panel might change when a panel is being added or removed fro
456 Panel* panel = *iter; local
465 DCHECK_EQ(top_panel(), panel); local
586 Panel* panel = *iter; local
712 Panel* panel = *iter; local
781 Panel* panel = *iter; local
    [all...]
detached_panel_drag_handler.h 10 class Panel;
18 static void HandleDrag(Panel* panel, const gfx::Point& target_position);
panel_resize_controller.cc 8 #include "chrome/browser/ui/panels/panel.h"
44 void PanelResizeController::StartResizing(Panel* panel,
50 panel::Resizability resizability = panel->CanResizeByMouse();
51 DCHECK_NE(panel::NOT_RESIZABLE, resizability);
52 panel::Resizability resizability_to_test;
55 resizability_to_test = panel::RESIZABLE_TOP_LEFT;
58 resizability_to_test = panel::RESIZABLE_TOP;
61 resizability_to_test = panel::RESIZABLE_TOP_RIGHT
    [all...]
panel_browsertest.cc 25 #include "chrome/browser/ui/panels/panel.h"
57 const std::vector<Panel*>& panels = PanelManager::GetInstance()->panels();
70 std::vector<Panel*> panels = PanelManager::GetInstance()->panels();
85 std::vector<Panel::ExpansionState> GetAllPanelExpansionStates() {
86 std::vector<Panel*> panels = PanelManager::GetInstance()->panels();
87 std::vector<Panel::ExpansionState> expansion_states;
94 std::vector<Panel*> panels = PanelManager::GetInstance()->panels();
103 std::vector<Panel*> panels = PanelManager::GetInstance()->panels();
113 std::vector<Panel*> panels = PanelManager::GetInstance()->panels();
124 // top edge of the panel'. On some platforms (Mac) we extend hover are
326 Panel* panel = CreatePanel("PanelTest"); local
346 Panel* panel = CreatePanelWithBounds("BigPanel", work_area); local
421 Panel* panel = CreatePanelWithParams(params); local
477 Panel* panel = CreatePanel("TestPanel"); local
509 Panel* panel = CreateDetachedPanel("1", gfx::Rect(200, 100, 100, 100)); local
542 Panel* panel = CreatePanelWithBounds("PanelTest", gfx::Rect(0, 0, 100, 100)); local
854 Panel* panel = CreatePanel("1"); local
900 Panel* panel = CreatePanel("PanelTest"); local
997 Panel* panel = CreatePanel("PanelTest"); local
1055 Panel* panel = CreateInactivePanel("P1"); local
1200 Panel* panel = CreatePanel("P1"); local
1214 Panel* panel = CreateInactivePanel("P1"); local
1233 Panel* panel = CreateInactivePanel("P1"); local
1258 Panel* panel = CreateInactivePanel("P1"); local
1288 Panel* panel = CreatePanelWithParams(params); local
1309 Panel* panel = CreatePanelWithParams(params); local
1319 Panel* panel = CreateInactivePanel("1"); local
1399 Panel* panel = CreatePanelWithParams(params); local
1454 Panel* panel = CreatePanelWithParams(params); local
1472 Panel* panel = CreatePanelWithParams(params); local
1508 Panel* panel = CreatePanelWithParams(params); local
1544 Panel* panel = CreatePanelWithBounds("1", gfx::Rect(0, 0, 240, 220)); local
1576 Panel* panel = CreatePanelWithBounds("1", gfx::Rect(0, 0, 240, 220)); local
1618 Panel* panel = CreatePanelWithParams(params); local
1652 Panel* panel = CreatePanelWithParams(params); local
1693 Panel* panel = CreatePanelWithParams(params); local
1723 Panel* panel = CreatePanel("PanelTest"); local
1755 Panel* panel = CreatePanelWithParams(params); local
    [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();
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_;
base_panel_browser_test.cc 272 // environment for all panel related tests.
297 Panel* panel, ActiveState expected_state) {
303 CreateNativePanelTesting(panel));
308 PanelActiveStateObserver signal(panel, expected_state == SHOW_AS_ACTIVE);
312 void BasePanelBrowserTest::WaitForWindowSizeAvailable(Panel* panel) {
314 CreateNativePanelTesting(panel));
317 content::Source<Panel>(panel));
369 Panel* panel = manager->CreatePanel( local
437 Panel* panel = CreatePanelWithBounds(name, bounds); local
444 Panel* panel = CreatePanelWithBounds(name, bounds); local
461 Panel* panel = CreateDetachedPanel(name, bounds); local
477 Panel* panel = CreatePanel(name); local
490 Panel* panel = CreateDockedPanel(name, bounds); local
503 Panel* panel = CreateDetachedPanel(name, bounds); local
    [all...]
  /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/
StatusBarController.java 38 private final JPanel panel = new JPanel(); field in class:StatusBarController
57 panel.setLayout(layout);
58 panel.add(labelText);
59 panel.add(progress);
60 panel.add(labRuleHint);
61 panel.add(labelRuleName);
62 panel.setOpaque(false);
63 panel.setBorder(javax.swing.BorderFactory.createEmptyBorder());
80 return panel;
  /external/chromium_org/ui/file_manager/file_manager/audio_player/elements/
audio_player.css 5 control-panel {
  /external/chromium_org/chrome/browser/ui/views/panels/
panel_view_browsertest.cc 6 #include "chrome/browser/ui/panels/panel.h"
30 PanelView* GetPanelView(Panel* panel) const {
31 return static_cast<PanelView*>(panel->native_panel());
37 Panel* panel = CreatePanelWithParams(params); local
38 EXPECT_TRUE(panel->IsActive());
43 HWND native_window = views::HWNDForWidget(GetPanelView(panel)->window());
60 panel->Close();
65 Panel* panel = CreatePanelWithParams(params) local
94 Panel* panel = CreatePanelWithBounds("PanelTest", gfx::Rect(0, 0, 200, 50)); local
140 Panel* panel = CreatePanelWithBounds("PanelTest", bounds); local
153 Panel* panel = CreatePanelWithBounds("PanelTest", bounds); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
panelEnablerView.css 30 .panel-enabler-view {
40 .panel-enabler-view h1 {
48 .panel-enabler-view img {
59 .panel-enabler-view img.hidden {
64 .panel-enabler-view .flexible-space {
68 .panel-enabler-view form {
77 .panel-enabler-view label {
85 .panel-enabler-view button:not(.status-bar-item) {
98 body.inactive .panel-enabler-view button:not(.status-bar-item),
99 .panel-enabler-view button:disabled:not(.status-bar-item)
    [all...]

Completed in 336 milliseconds

1 2 3 4 5 6 7 8 91011