HomeSort by relevance Sort by last modified time
    Searched defs:panel (Results 1 - 25 of 104) 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
    [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...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
panel.h 34 /* $Id: panel.h,v 1.10 2006/05/27 19:49:40 tom Exp $ */
36 /* panel.h -- interface file for panels library */
43 typedef struct panel struct
46 struct panel *below;
47 struct panel *above;
49 } PANEL;
55 extern NCURSES_EXPORT(WINDOW*) panel_window (const PANEL *);
57 extern NCURSES_EXPORT(int) hide_panel (PANEL *);
58 extern NCURSES_EXPORT(int) show_panel (PANEL *);
59 extern NCURSES_EXPORT(int) del_panel (PANEL *);
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
panel.h 34 /* $Id: panel.h,v 1.10 2006/05/27 19:49:40 tom Exp $ */
36 /* panel.h -- interface file for panels library */
43 typedef struct panel struct
46 struct panel *below;
47 struct panel *above;
49 } PANEL;
55 extern NCURSES_EXPORT(WINDOW*) panel_window (const PANEL *);
57 extern NCURSES_EXPORT(int) hide_panel (PANEL *);
58 extern NCURSES_EXPORT(int) show_panel (PANEL *);
59 extern NCURSES_EXPORT(int) del_panel (PANEL *);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
panel.h 34 /* $Id: panel.h,v 1.10 2006/05/27 19:49:40 tom Exp $ */
36 /* panel.h -- interface file for panels library */
43 typedef struct panel struct
46 struct panel *below;
47 struct panel *above;
49 } PANEL;
55 extern NCURSES_EXPORT(WINDOW*) panel_window (const PANEL *);
57 extern NCURSES_EXPORT(int) hide_panel (PANEL *);
58 extern NCURSES_EXPORT(int) show_panel (PANEL *);
59 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
157 Panel* panel = CreatePanelWithBounds("PanelTest", bounds); local
    [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/jmonkeyengine/engine/src/test/jme3test/awt/
TestAwtPanels.java 25 private static AwtPanel panel, panel2; field in class:TestAwtPanels
28 private static void createWindowForPanel(AwtPanel panel, int location){
31 frame.getContentPane().add(panel, BorderLayout.CENTER);
60 panel = ctx.createPanel(PaintMode.Accelerated);
61 panel.setPreferredSize(new Dimension(400, 300));
62 ctx.setInputSource(panel);
67 createWindowForPanel(panel, 300);
84 panel.attachTo(true, viewPort);
  /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/chromium_org/third_party/WebKit/Source/devtools/front_end/
Panel.js 34 WebInspector.Panel = function(name)
39 this.element.addStyleClass("panel");
49 WebInspector.Panel.counterRightMargin = 25;
51 WebInspector.Panel._minimalSearchQuerySize = 3;
53 WebInspector.Panel.prototype = {
66 var panelStatusBar = document.getElementById("panel-status-bar")
125 return WebInspector.Panel._minimalSearchQuerySize;
228 this.sidebarTree.panel = this;
304 * @param {WebInspector.Panel=} panel
    [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/third_party/WebKit/Source/core/html/shadow/
MediaControlsChromium.cpp 67 // Create an enclosing element for the panel so we can visually offset the controls correctly.
70 RefPtr<MediaControlPanelElement> panel = MediaControlPanelElement::create(document); local
76 panel->appendChild(playButton.release(), es, AttachLazily);
82 panel->appendChild(timeline.release(), es, AttachLazily);
89 panel->appendChild(currentTimeDisplay.release(), es, AttachLazily);
95 panel->appendChild(durationDisplay.release(), es, AttachLazily);
101 panel->appendChild(panelMuteButton.release(), es, AttachLazily);
108 panel->appendChild(slider.release(), es, AttachLazily);
115 panel->appendChild(toggleClosedCaptionsButton.release(), es, AttachLazily);
122 panel->appendChild(fullscreenButton.release(), es, AttachLazily)
    [all...]
  /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/chrome/browser/chromeos/notifications/
notification_browsertest.cc 86 // Waits untilt the panel's state becomes the specified state.
96 // Busy loop to wait until the view becomes visible in the panel.
141 NotificationPanel* panel = GetNotificationPanel(); local
142 NotificationPanelTester* tester = panel->GetTester();
180 NotificationPanel* panel = GetNotificationPanel(); local
181 NotificationPanelTester* tester = panel->GetTester();
191 panel->OnMouseMotion(gfx::Point(10, 10));
228 NotificationPanel* panel = GetNotificationPanel(); local
231 NotificationPanelTester* tester = panel->GetTester();
265 NotificationPanel* panel = GetNotificationPanel() local
308 NotificationPanel* panel = GetNotificationPanel(); local
375 NotificationPanel* panel = GetNotificationPanel(); local
389 NotificationPanel* panel = GetNotificationPanel(); local
418 NotificationPanel* panel = GetNotificationPanel(); local
493 NotificationPanel* panel = GetNotificationPanel(); local
526 NotificationPanel* panel = GetNotificationPanel(); local
    [all...]
  /external/chromium/chrome/browser/chromeos/panels/
panel_scroller.cc 17 struct PanelScroller::Panel {
33 Panel* panel = new Panel; local
34 panel->header = new PanelScrollerHeader(this);
35 panel->header->set_title(ASCIIToUTF16("Email"));
36 panel->container = new PanelScrollerContainer(this, new views::View());
37 panels_.push_back(panel);
39 panel = new Panel;
    [all...]
  /external/chromium_org/chrome/browser/task_manager/
panel_resource_provider.cc 15 #include "chrome/browser/ui/panels/panel.h"
34 explicit PanelResource(Panel* panel);
46 Panel* panel_;
54 PanelResource::PanelResource(Panel* panel)
56 panel->GetWebContents()->GetRenderProcessHost()->GetHandle(),
57 panel->GetWebContents()->GetRenderViewHost()),
58 panel_(panel) {
62 panel->profile()->IsOffTheRecord()
226 Panel* panel = iter->first; local
    [all...]
task_manager_browsertest.cc 28 #include "chrome/browser/ui/panels/panel.h"
161 // Open a new panel to an extension url and make sure we notice that.
164 Panel* panel = PanelManager::GetInstance()->CreatePanel( local
173 // Check that the fourth entry is a resource with the panel's web contents
175 ASSERT_EQ(panel->GetWebContents(), model()->GetResourceWebContents(3));
180 // Close the panel and verify that we notice.
181 panel->Close();
208 // Open a new panel to an extension url and make sure we notice that.
220 // Kill the panel extension process and verify that it disappears from th
    [all...]
  /external/chromium_org/chrome/browser/ui/ash/launcher/
shell_window_launcher_item_controller.cc 59 LOG(ERROR) << "ShellWindow of type Panel added to non-panel launcher item";
147 ShellWindow* panel = shell_windows_.front(); local
148 aura::Window* panel_window = panel->GetNativeWindow();
149 // If the panel is attached on another display, move it to the current
153 if (!panel->GetBaseWindow()->IsActive())
154 ShowAndActivateOrMinimize(panel);
156 ShowAndActivateOrMinimize(panel);
  /external/chromium_org/chrome/browser/ui/gtk/panels/
panel_gtk.h 20 class Panel;
29 // An implementation of the native panel in GTK.
40 PanelGtk(Panel* panel, const gfx::Rect& bounds, bool always_on_top);
69 Panel::ExpansionState old_state,
70 Panel::ExpansionState new_state) OVERRIDE;
83 virtual void SetWindowCornerStyle(panel::CornerStyle corner_style) OVERRIDE;
94 Panel* panel() const { return panel_.get(); } function in class:PanelGtk
116 // Animation when panel is first shown
    [all...]
panel_stack_window_gtk.cc 9 #include "chrome/browser/ui/panels/panel.h"
39 void PanelStackWindowGtk::AddPanel(Panel* panel) {
40 panels_.push_back(panel);
45 // The panel being stacked should not appear on the taskbar.
46 gtk_window_set_skip_taskbar_hint(panel->GetNativeWindow(), true);
49 void PanelStackWindowGtk::RemovePanel(Panel* panel) {
50 panels_.remove(panel);
54 // The panel being unstacked should re-appear on the taskbar
67 Panel* panel = *iter; local
86 Panel* panel = *iter; local
217 Panel* panel = panels_.front(); local
    [all...]

Completed in 2998 milliseconds

1 2 3 4 5