Searched refs:panel (Results 1 - 25 of 65) sorted by relevance

123

/external/chromium/chrome/browser/ui/panels/
H A Dpanel_browser_view.cc6 #include "chrome/browser/ui/panels/panel.h"
8 BrowserWindow* Panel::CreateNativePanel(Browser* browser, Panel* panel) { argument
H A Dpanel_browser_window_gtk.cc6 #include "chrome/browser/ui/panels/panel.h"
8 BrowserWindow* Panel::CreateNativePanel(Browser* browser, Panel* panel) { argument
H A Dpanel_manager.cc11 #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
81 Panel* panel = new Panel(browser, bounds); local
83 active_panels_.push_back(panel);
85 pending_panels_.push_back(panel);
87 return panel;
92 Panel* panel local
102 Remove(Panel* panel) argument
118 DoRemove(Panel* panel) argument
137 StartDragging(Panel* panel) argument
[all...]
H A Dpanel_manager.h29 // Creates a panel and returns it. The panel might be queued for display
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.
53 void StartDragging(Panel* panel);
70 void DoRemove(Panel* panel);
74 // area being changed or a panel bein
[all...]
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/
H A DStatusBarController.java38 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/chrome/browser/chromeos/panels/
H A Dpanel_scroller.cc33 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;
40 panel->header = new PanelScrollerHeader(this);
41 panel->header->set_title(ASCIIToUTF16("Chat"));
42 panel->container = new PanelScrollerContainer(this, new views::View());
43 panels_.push_back(panel);
[all...]
/external/webkit/Source/WebCore/inspector/front-end/
H A DSearchController.js44 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 switche
[all...]
H A DToolbar.js50 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
[all...]
H A DExtensionServer.js64 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
[all...]
H A DPanel.js33 this.element.addStyleClass("panel");
183 var panel = this;
195 if (panel._currentSearchChunkIntervalIdentifier === chunkIntervalIdentifier)
196 delete panel._currentSearchChunkIntervalIdentifier;
307 this.sidebarTree.panel = this;
H A Dinspector.js515 WebInspector.addPanel = function(panel)
517 this.panelOrder.push(panel);
518 this.toolbar.addPanel(panel);
631 if (parsedURL.host === "show-panel") {
632 var panel = parsedURL.path.substring(1);
633 if (WebInspector.panels[panel])
634 WebInspector.showPanel(panel);
674 section.addRelatedKeys(keys, WebInspector.UIString("Next/previous panel"));
967 WebInspector.showPanel = function(panel)
969 if (!(panel i
[all...]
/external/libvorbis/examples/
H A Dframeview.pl114 my $panel=new MainWindow(-class=>'AnalyzerPanel');
115 my $X2name=$panel->Class;
117 $panel->optionAdd("$X2name.background", "#353535",20);
118 $panel->optionAdd("$X2name*highlightBackground", "#80c0d3",20);
119 $panel->optionAdd("$X2name.Panel.background", "#353535",20);
120 $panel->optionAdd("$X2name.Panel.foreground", "#4fc627",20);
121 $panel->optionAdd("$X2name.Panel.font",
123 $panel->optionAdd("$X2name*Statuslabel.font",
125 $panel->optionAdd("$X2name*Statuslabel.foreground", "#4fc627",20);
126 $panel
[all...]
/external/jmonkeyengine/engine/src/test/jme3test/awt/
H A DTestAwtPanels.java25 private static AwtPanel panel, panel2; field in class:TestAwtPanels
28 private static void createWindowForPanel(AwtPanel panel, int location){ argument
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/jmonkeyengine/engine/src/desktop/com/jme3/system/awt/
H A DAwtPanelsContext.java64 public void setInputSource(AwtPanel panel){ argument
65 if (!panels.contains(panel))
68 inputSource = panel;
69 mouseInput.setInputSource(panel);
70 keyInput.setInputSource(panel);
121 AwtPanel panel = new AwtPanel(paintMode);
122 panels.add(panel);
123 return panel;
134 for (AwtPanel panel : panels){
135 if (panel
[all...]
/external/webkit/Source/WebKit/mac/Panels/
H A DWebAuthenticationPanel.m58 [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...]
H A DWebPanelAuthenticationHandler.m124 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];
H A DWebAuthenticationPanel.h37 IBOutlet id panel; variable
/external/webkit/Tools/WebKitLauncher/
H A DWebKitNightlyEnablerSparkle.m49 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/
H A Dnotification_browsertest.cc86 // 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 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...]
H A Dnotification_panel.h31 // 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 i
205 NotificationPanelTester(NotificationPanel* panel) argument
[all...]
/external/webkit/Source/WebCore/html/shadow/
H A DMediaControlRootElement.cpp79 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
[all...]
/external/proguard/src/proguard/gui/splash/
H A DSplashPanel.java200 * A main method for testing the splash panel.
226 SplashPanel panel = new SplashPanel(sprite, 0.5);
227 panel.setBackground(Color.white);
229 frame.getContentPane().add(panel);
233 panel.start();
/external/webkit/Source/WebKit/mac/DefaultDelegates/
H A DWebDefaultUIDelegate.m168 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];
/external/webkit/Source/WebCore/css/
H A DmediaControlsGtk.css28 audio::-webkit-media-controls-panel, video::-webkit-media-controls-panel {
H A DmediaControlsQtFullscreen.css24 video::-webkit-media-controls-panel {
25 /* The control panel is only play button for full screen */
33 video:-webkit-full-page-media::-webkit-media-controls-panel {

Completed in 446 milliseconds

123