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

1 2 3 4

  /external/chromium/chrome/browser/ui/panels/
panel_browser_view.cc 6 #include "chrome/browser/ui/panels/panel.h"
8 BrowserWindow* Panel::CreateNativePanel(Browser* browser, Panel* panel) {
panel_browser_window_gtk.cc 6 #include "chrome/browser/ui/panels/panel.h"
8 BrowserWindow* Panel::CreateNativePanel(Browser* browser, Panel* panel) {
panel_manager.h 16 class Panel;
29 // Creates a panel and returns it. The panel might be queued for display
31 Panel* CreatePanel(Browser* browser);
33 // Removes the given panel. Both active and pending panel lists are checked.
34 // If an active panel is removed, pending panels could put on display if we
36 void Remove(Panel* panel);
52 // Drags the given active panel
    [all...]
panel_manager.cc 11 #include "chrome/browser/ui/panels/panel.h"
15 // Invalid panel index.
18 // Minimum width and height of a panel.
22 // Default width and height of a panel.
26 // Maxmium width and height of a panel based on the factor of the working
77 Panel* PanelManager::CreatePanel(Browser* browser) {
81 Panel* panel = new Panel(browser, bounds); local
83 active_panels_.push_back(panel);
92 Panel* panel = pending_panels_.front(); 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...]
  /prebuilt/linux-x86/toolchain/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...]
  /external/webkit/Source/WebKit/mac/Panels/
WebAuthenticationPanel.m 58 [panel release];
70 // remove all of the panel's remaining refs, which can cause a
73 [[panel retain] autorelease];
78 [panel close];
80 [[NSApplication sharedApplication] endSheet:panel returnCode:1];
89 // remove all of the panel's remaining refs, which can cause a
92 [[panel retain] autorelease];
94 [panel close];
96 [[NSApplication sharedApplication] endSheet:panel returnCode:0];
116 // Methods related to displaying the panel
    [all...]
WebPanelAuthenticationHandler.m 124 WebAuthenticationPanel *panel = [[WebAuthenticationPanel alloc] initWithCallback:self selector:@selector(_authenticationDoneWithChallenge:result:)];
126 [windowToPanel _webkit_setObject:panel forUncopiedKey:window];
127 [panel release];
130 [panel runAsModalDialogWithChallenge:challenge];
132 [panel runAsSheetOnWindow:window withChallenge:challenge];
140 WebAuthenticationPanel *panel = [windowToPanel objectForKey:window];
141 [panel cancel:self];
  /external/webkit/Source/WebCore/inspector/front-end/
SearchController.js 44 updateSearchMatchesCount: function(matches, panel)
46 if (!panel)
47 panel = WebInspector.currentPanel;
49 panel.currentSearchMatches = matches;
51 if (panel === WebInspector.currentPanel)
122 panel = WebInspector.currentPanel;
123 if (panel.performSearch) {
128 panel.currentQuery = this._currentQuery;
129 panel.performSearch(this._currentQuery);
132 // Perform the search on a timeout so the panel switches fast
    [all...]
Toolbar.js 50 addPanel: function(panel)
52 this.element.appendChild(panel.toolbarItem);
138 WebInspector.Toolbar.createPanelToolbarItem = function(panel)
142 toolbarItem.panel = panel;
143 toolbarItem.addStyleClass(panel._panelName);
147 WebInspector.currentPanel = panel;
153 if ("toolbarItemLabel" in panel)
154 toolbarItem.createChild("div", "toolbar-label").textContent = panel.toolbarItemLabel;
156 if (panel === WebInspector.currentPanel
    [all...]
ExtensionServer.js 64 this._postNotification("panel-objectSelected-" + panelId, objectId);
69 this._postNotification("panel-search-" + panelId, action, searchString);
74 this._postNotification("panel-shown-" + panelId);
79 this._postNotification("panel-hidden-" + panelId);
188 var panel = new WebInspector.ExtensionPanel(id, message.title, message.icon);
189 this._clientObjects[id] = panel;
190 WebInspector.panels[id] = panel;
191 WebInspector.addPanel(panel);
193 var iframe = this.createClientIframe(panel.element, message.url);
200 var panel = WebInspector.panels[message.panel]
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
comstats.h 37 unsigned long panel; member in struct:__anon20919
78 unsigned long panel; member in struct:__anon20920
111 * private port, panel and board structures. The argument required
  /sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/views/
SelectionDependentViewPart.java 36 protected final void setSelectionDependentPanel(SelectionDependentPanel panel) {
37 // remember the panel
38 mPanel = panel;
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/webkit/Tools/WebKitLauncher/
WebKitNightlyEnablerSparkle.m 49 NSPanel *panel = NSGetInformationalAlertPanel([NSString stringWithFormat:@"Would you like to download and install %@ %@ now?", hostName, objc_msgSend(updateItem, @selector(displayVersionString))],
52 NSArray *subviews = [[panel contentView] subviews];
64 [panel center];
65 return panel;
68 // Sparkle's udpate alert panel looks odd with the release notes hidden, so we
69 // swap it out with a standard NSAlert-style panel instead.
72 NSPanel *panel = updateAlertPanel(updateItem, host);
73 [panel setDelegate:self];
75 self = [self initWithWindow:panel];
  /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...]
notification_panel.h 31 // NotificationPanel is a panel that displays notifications. It has
33 // depending on in which state the panel is. The following shows
34 // how the panel's state changes in response to various events.
39 // or the system closed the panel.
42 // expand: a user pressed minimized panel to expand.
43 // minimize: a user pressed the panel's title bar to minimize.
44 // user: the user's mouse moved over the panel, indicates
45 // that user is trying to interact with the panel.
80 MINIMIZED, // The panel is minimized.
81 CLOSED, // The panel is closed
    [all...]
  /external/webkit/Source/WebCore/html/shadow/
MediaControlRootElement.cpp 79 RefPtr<MediaControlPanelElement> panel = MediaControlPanelElement::create(mediaElement); local
85 panel->appendChild(rewindButton.release(), ec, true);
91 panel->appendChild(playButton.release(), ec, true);
97 panel->appendChild(returnToRealtimeButton.release(), ec, true);
104 panel->appendChild(statusDisplay.release(), ec, true);
130 panel->appendChild(timelineContainer.release(), ec, true);
138 panel->appendChild(seekBackButton.release(), ec, true);
145 panel->appendChild(seekForwardButton.release(), ec, true);
153 panel->appendChild(toggleClosedCaptionsButton.release(), ec, true);
161 panel->appendChild(fullScreenButton.release(), ec, true)
    [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();
  /sdk/monkeyrunner/src/com/android/monkeyrunner/recorder/
MonkeyRecorderFrame.java 230 JPanel panel = new JPanel();
235 panel.add(text);
236 panel.add(keys);
237 panel.add(direction);
239 int result = JOptionPane.showConfirmDialog(null, panel, "Input", JOptionPane.OK_CANCEL_OPTION);
286 JPanel panel = new JPanel();
287 panel.setLayout(new BoxLayout(panel, BoxLayout.Y_AXIS));
288 panel.add(new JLabel("Which Direction to fling?"));
290 panel.add(directionChooser)
    [all...]
  /external/webkit/Source/WebKit/mac/DefaultDelegates/
WebDefaultUIDelegate.m 168 WebJavaScriptTextInputPanel *panel = [[WebJavaScriptTextInputPanel alloc] initWithPrompt:prompt text:defaultText];
169 [panel showWindow:nil];
171 if ([NSApp runModalForWindow:[panel window]]) {
172 result = [panel text];
176 [[panel window] close];
177 [panel release];
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/ui/
ResourcePreviewHelper.java 102 Composite panel = new Composite(parent, SWT.NONE);
103 panel.setLayout(new GridLayout(3, false));
104 Label dummy1 = new Label(panel, SWT.NONE);
106 mPreviewImageControl = new ImageControl(panel, SWT.NONE, SwtUtils
112 Label dummy2 = new Label(panel, SWT.NONE);
115 return panel;
  /external/junit/src/junit/awtui/
TestRunner.java 20 import java.awt.Panel;
110 protected void addGrid(Panel p, Component co, int x, int y, int w, int fill, double wx, int anchor) {
249 Panel numbersPanel= createCounterPanel();
272 Panel failedPanel= new Panel(new GridLayout(0, 1, 0, 2));
298 Panel panel= new Panel(new GridBagLayout()); local
300 addGrid(panel, suiteLabel, 0, 0, 2, GridBagConstraints.HORIZONTAL, 1.0, GridBagConstraints.WEST);
302 addGrid(panel, fSuiteField, 0, 1, 2, GridBagConstraints.HORIZONTAL, 1.0, GridBagConstraints.WEST)
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/tablet/
TabletStatusBarView.java 98 * Let the status bar know that if you tap on ignore while panel is showing, don't do anything.
102 public void setIgnoreChildren(int index, View ignore, View panel) {
104 mPanels[index] = panel;
  /external/junit/src/junit/swingui/
TestRunner.java 454 JPanel panel= new JPanel(new GridBagLayout()); local
456 addGrid(panel, suiteLabel, 0, 0, 2, GridBagConstraints.HORIZONTAL, 1.0, GridBagConstraints.WEST);
457 addGrid(panel, fSuiteCombo, 0, 1, 1, GridBagConstraints.HORIZONTAL, 1.0, GridBagConstraints.WEST);
458 addGrid(panel, browseButton, 1, 1, 1, GridBagConstraints.NONE, 0.0, GridBagConstraints.WEST);
459 addGrid(panel, fRun, 2, 1, 1, GridBagConstraints.HORIZONTAL, 0.0, GridBagConstraints.CENTER);
461 addGrid(panel, fUseLoadingRunner, 0, 2, 3, GridBagConstraints.NONE, 1.0, GridBagConstraints.WEST);
462 //addGrid(panel, new JSeparator(), 0, 3, 3, GridBagConstraints.HORIZONTAL, 1.0, GridBagConstraints.WEST);
465 addGrid(panel, fProgressIndicator, 0, 3, 2, GridBagConstraints.HORIZONTAL, 1.0, GridBagConstraints.WEST);
466 addGrid(panel, fLogo, 2, 3, 1, GridBagConstraints.NONE, 0.0, GridBagConstraints.NORTH);
468 addGrid(panel, fCounterPanel, 0, 4, 2, GridBagConstraints.NONE, 0.0, GridBagConstraints.WEST)
    [all...]

Completed in 1052 milliseconds

1 2 3 4