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

1 2 3 4 5

  /external/chromium_org/chrome/browser/ui/panels/
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...]
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...]
panel_extension_browsertest.cc 16 #include "chrome/browser/ui/panels/panel.h"
43 Panel* CreatePanelFromExtension(const Extension* extension) const {
45 // Opening panels on a Mac causes NSWindowController of the Panel window
47 // can close correctly. The NSWindowController of the Panel window controls
48 // lifetime of the Panel object so we want to release it as soon as
54 Panel* panel = PanelManager::GetInstance()->CreatePanel( local
60 panel->ShowInactive();
61 return panel;
64 void WaitForAppIconAvailable(Panel* panel) const
84 Panel* panel = CreatePanelFromExtension(extension); local
109 Panel* panel = CreatePanelFromExtension(extension); local
145 Panel* panel = panel_manager->panels().front(); local
248 Panel* panel = panel_manager->panels().front(); local
    [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...]
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...]
panel_constants.h 8 namespace panel { namespace
18 // Motivation for height is to allow autosized tightly-wrapped panel with a
24 // The panel can be minimized to 4-pixel lines.
49 // The number of times to flash the panel's taskbar icon in order to draw the
53 // Different types of buttons that can be shown on panel's titlebar.
68 // Ways a panel can be resized.
86 // Describes how 4 corners of a panel should be painted.
94 } // namespace 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_manager.cc 32 // Maxmium width of a panel is based on a factor of the working area.
41 // Maxmium height of a panel is based on a factor of the working area.
53 // stack or panel we want to seacrh first for adding new panel.
54 bool ComparePanelsByPosition(Panel* panel1, Panel* panel2) {
83 bool CompareDetachedPanels(Panel* panel1, Panel* panel2) {
140 // Stacked panel mode is not supported in linux-aura.
202 std::vector<Panel*> all_panels = panels()
255 Panel* panel = new Panel(profile, app_name, min_size, max_size); local
322 Panel* panel = stack->bottom_panel(); local
359 Panel* panel = *iter; local
    [all...]
panel_resize_browsertest.cc 7 #include "chrome/browser/ui/panels/panel.h"
32 void ResizePanel(Panel* panel,
36 gfx::Rect bounds = panel->GetBounds();
69 panel_manager->StartResizingByMouse(panel, mouse_location, component);
76 // http://crbug.com/175760; several panel tests failing regularly on mac.
84 Panel* panel = CreatePanel("Panel"); local
86 EXPECT_EQ(panel::RESIZABLE_EXCEPT_BOTTOM, panel->CanResizeByMouse())
200 Panel* panel = CreateDetachedPanel("Panel", gfx::Rect(300, 200, 150, 100)); local
272 Panel* panel = CreateDetachedPanel("1", local
299 Panel* panel = CreateDetachedPanel("Panel", gfx::Rect(300, 200, 150, 100)); local
416 Panel* panel = CreateDetachedPanel("Panel", gfx::Rect(300, 200, 150, 100)); local
471 Panel* panel = CreateDetachedPanel("1", gfx::Rect(300, 200, 250, 200)); local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/
panel.h 35 /* $Id: panel.h,v 1.11 2009/04/11 19:50:40 tom Exp $ */
37 /* panel.h -- interface file for panels library */
44 typedef struct panel struct
47 struct panel *below;
48 struct panel *above;
50 } PANEL;
56 extern NCURSES_EXPORT(WINDOW*) panel_window (const PANEL *);
58 extern NCURSES_EXPORT(int) hide_panel (PANEL *);
59 extern NCURSES_EXPORT(int) show_panel (PANEL *);
60 extern NCURSES_EXPORT(int) del_panel (PANEL *);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
panel.h 35 /* $Id: panel.h,v 1.11 2009/04/11 19:50:40 tom Exp $ */
37 /* panel.h -- interface file for panels library */
44 typedef struct panel struct
47 struct panel *below;
48 struct panel *above;
50 } PANEL;
56 extern NCURSES_EXPORT(WINDOW*) panel_window (const PANEL *);
58 extern NCURSES_EXPORT(int) hide_panel (PANEL *);
59 extern NCURSES_EXPORT(int) show_panel (PANEL *);
60 extern NCURSES_EXPORT(int) del_panel (PANEL *);
    [all...]
  /external/chromium_org/chrome/browser/ui/cocoa/
ssl_client_certificate_selector_cocoa.h 42 @property (readonly, nonatomic) SFChooseIdentityPanel* panel; variable
  /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...]
panel_view.h 19 class Panel;
39 PanelView(Panel* panel, const gfx::Rect& bounds, bool always_on_top);
68 virtual void SetWindowCornerStyle(panel::CornerStyle corner_style) OVERRIDE;
70 Panel::ExpansionState old_state,
71 Panel::ExpansionState new_state) OVERRIDE;
93 bool OnTitlebarMouseReleased(panel::ClickModifier modifier);
99 // The panel does not show a resizing border. Instead, the inner content area
105 Panel* panel() const { return panel_.get(); function in class:PanelView
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/state/
StatePanel.java 49 View panel = mMainView.findViewById(R.id.listStates); local
50 track = (StatePanelTrack) panel;
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/components/
Panel.js 33 WebInspector.Panel = function(name)
37 this.element.classList.add("panel");
45 WebInspector.Panel.counterRightMargin = 25;
47 WebInspector.Panel.prototype = {
142 * @extends {WebInspector.Panel}
149 WebInspector.Panel.call(this, name);
189 __proto__: WebInspector.Panel.prototype
211 * @return {!WebInspector.Panel}
213 panel: function() {}
246 * @return {!WebInspector.Panel}
    [all...]
  /external/proguard/src/proguard/gui/splash/
SplashPanel.java 200 * A main method for testing the splash panel.
226 SplashPanel panel = new SplashPanel(sprite, 0.5); local
227 panel.setBackground(Color.white);
229 frame.getContentPane().add(panel);
233 panel.start();
  /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;
  /sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/views/
TableView.java 45 * Setup the listener for the Table objects of <code>Panel</code>, and setup
48 * @param panel The panel to setup
49 * @param parent The parent composite of the Panel's content.
51 void setupTableFocusListener(TablePanel panel, Composite parent) {
52 panel.setTableFocusListener(new ITableFocusListener() {
  /external/chromium_org/chrome/browser/task_manager/
task_manager_browsertest.cc 27 #include "chrome/browser/ui/panels/panel.h"
178 // Open a new panel to an extension url.
181 Panel* panel = PanelManager::GetInstance()->CreatePanel( local
189 // Make sure that a task manager model created after the panel shows the
190 // existence of the panel and the extension.
203 // Close the panel and verify that we notice.
204 panel->Close();
231 // Open a new panel to an extension url and make sure we notice that.
234 Panel* panel = PanelManager::GetInstance()->CreatePanel local
351 int panel = FindResourceIndex(MatchExtension( local
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/category/
CategoryPanel.java 116 CategoryTrack panel = (CategoryTrack) panelView; local
119 panel.setAdapter(mAdapter);
120 mAdapter.setContainer(panel);
123 ListView panel = (ListView) main.findViewById(R.id.listItems); local
124 panel.setAdapter(mAdapter);
125 mAdapter.setContainer(panel);
  /external/chromium_org/chrome/browser/ui/ash/launcher/
app_window_launcher_item_controller.cc 93 LOG(ERROR) << "AppWindow of type Panel added to non-panel launcher item";
222 AppWindow* panel = app_windows_.front(); local
223 aura::Window* panel_window = panel->GetNativeWindow();
224 // If the panel is attached on another display, move it to the current
228 if (!panel->GetBaseWindow()->IsActive())
229 ShowAndActivateOrMinimize(panel);
231 ShowAndActivateOrMinimize(panel);
  /external/chromium_org/third_party/WebKit/Source/core/html/shadow/
MediaControls.cpp 103 // Create an enclosing element for the panel so we can visually offset the controls correctly.
106 RefPtrWillBeRawPtr<MediaControlPanelElement> panel = MediaControlPanelElement::create(*this); local
110 panel->appendChild(playButton.release(), exceptionState);
116 panel->appendChild(timeline.release(), exceptionState);
123 panel->appendChild(currentTimeDisplay.release(), exceptionState);
129 panel->appendChild(durationDisplay.release(), exceptionState);
135 panel->appendChild(muteButton.release(), exceptionState);
141 panel->appendChild(slider.release(), exceptionState);
147 panel->appendChild(toggleClosedCaptionsButton.release(), exceptionState);
153 panel->appendChild(fullscreenButton.release(), exceptionState)
    [all...]
  /frameworks/base/core/tests/coretests/src/com/android/internal/widget/
SizeAdaptiveLayoutTest.java 422 View panel = mSizeAdaptiveLayout.getModestyPanel(); local
424 panel.getBackground() instanceof ColorDrawable);
425 ColorDrawable panelColor = (ColorDrawable) panel.getBackground();
434 View panel = mSizeAdaptiveLayout.getModestyPanel(); local
436 panel.getBackground().getClass(), ColorDrawable.class);
437 ColorDrawable panelColor = (ColorDrawable) panel.getBackground();

Completed in 698 milliseconds

1 2 3 4 5