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

1 2

  /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.cc 5 #include "chrome/browser/ui/panels/panel.h"
12 Panel::Panel(Browser* browser, const gfx::Rect& bounds)
18 Panel::~Panel() {
22 PanelManager* Panel::manager() const {
26 void Panel::Minimize() {
30 void Panel::Restore() {
34 void Panel::Show() {
38 void Panel::ShowInactive()
    [all...]
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.h 21 // - Do Panel specific platform independent processing and then invoke the
23 // Panel size is restricted to certain limits.
25 // other Panels. For example deleting a panel would rearrange other panels.
26 class Panel : public BrowserWindow {
28 virtual ~Panel();
30 // Returns the PanelManager associated with this panel.
130 // Construct a native panel BrowserWindow implementation for the specified
132 static BrowserWindow* CreateNativePanel(Browser* browser, Panel* panel);
140 // Panel can only be created using PanelManager::CreatePanel()
    [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/javassist/sample/rmi/
AlertDialog.java 16 Panel p = new Panel();
  /external/webkit/Source/WebCore/inspector/front-end/
ConsolePanel.js 31 WebInspector.Panel.call(this, "console");
42 WebInspector.Panel.prototype.show.call(this);
64 WebInspector.Panel.prototype.hide.call(this);
86 WebInspector.ConsolePanel.prototype.__proto__ = WebInspector.Panel.prototype;
ExtensionPanel.js 35 WebInspector.Panel.call(this, id);
53 WebInspector.Panel.prototype.searchCanceled.apply(this, arguments);
59 WebInspector.Panel.prototype.performSearch.apply(this, arguments);
65 WebInspector.Panel.prototype.jumpToNextSearchResult.call(this);
71 WebInspector.Panel.prototype.jumpToPreviousSearchResult.call(this);
82 WebInspector.ExtensionPanel.prototype.__proto__ = WebInspector.Panel.prototype;
Panel.js 29 WebInspector.Panel = function(name)
33 this.element.addStyleClass("panel");
41 WebInspector.Panel.counterRightMargin = 25;
43 WebInspector.Panel.prototype = {
183 var panel = this;
195 if (panel._currentSearchChunkIntervalIdentifier === chunkIntervalIdentifier)
196 delete panel._currentSearchChunkIntervalIdentifier;
307 this.sidebarTree.panel = this;
424 WebInspector.Panel.prototype.__proto__ = WebInspector.View.prototype;
AuditsPanel.js 33 WebInspector.Panel.call(this, "audits");
241 WebInspector.Panel.prototype.attach.call(this);
259 WebInspector.AuditsPanel.prototype.__proto__ = WebInspector.Panel.prototype;
ProfilesPanel.js 93 WebInspector.Panel.call(this, "profiles");
100 var panelEnablerHeading = WebInspector.UIString("You need to enable profiling before you can use the Profiles panel.");
121 this.welcomeView = new WebInspector.WelcomeView("profiles", WebInspector.UIString("Welcome to the Profiles panel"));
180 WebInspector.Panel.prototype.show.call(this);
207 WebInspector.Panel.prototype.reset.call(this);
613 WebInspector.Panel.prototype.searchCanceled.call(this, startingNewSearch);
795 WebInspector.ProfilesPanel.prototype.__proto__ = WebInspector.Panel.prototype;
861 this.treeOutline.panel.showProfile(this.profile);
866 this.treeOutline.panel._removeProfileHeader(this.profile);
ExtensionAPI.js 164 for (var panel in panels)
165 this.__defineGetter__(panel, bind(panelGetter, null, panel));
171 var id = "extension-panel-" + extensionServer.nextObjectId();
186 this.onShown = new EventSink("panel-shown-" + id);
187 this.onHidden = new EventSink("panel-hidden-" + id);
201 panel: this._id,
219 this.onSelectionChanged = new EventSink("panel-objectSelected-" + id);
224 Panel.call(this, id);
225 this.onSearch = new EventSink("panel-search-" + id)
    [all...]
NetworkPanel.js 33 WebInspector.Panel.call(this, "network");
112 WebInspector.Panel.prototype.resize.call(this);
121 WebInspector.Panel.prototype.updateSidebarWidth.call(this, width);
627 WebInspector.Panel.prototype.show.call(this);
638 WebInspector.Panel.prototype.hide.call(this);
655 WebInspector.Panel.prototype.searchCanceled.call(this, startingNewSearch);
663 WebInspector.Panel.prototype.performSearch.call(this, query);
    [all...]
ElementsPanel.js 33 WebInspector.Panel.call(this, "elements");
44 this.treeOutline.panel = this;
50 if (this.panel.visible && WebInspector.currentFocusElement !== document.getElementById("search"))
53 this.panel.updateBreadcrumb(forceUpdate);
55 for (var pane in this.panel.sidebarPanes)
56 this.panel.sidebarPanes[pane].needsUpdate = true;
58 this.panel.updateStyles(true);
59 this.panel.updateMetrics();
60 this.panel.updateProperties();
61 this.panel.updateEventListeners()
    [all...]
ResourcesPanel.js 32 WebInspector.Panel.call(this, "resources");
99 WebInspector.Panel.prototype.show.call(this);
353 // Show XHRs in the network panel only.
744 WebInspector.Panel.prototype.searchCanceled.call(this, startingNewSearch);
763 WebInspector.Panel.prototype.performSearch.call(this, query);
806 WebInspector.ResourcesPanel.prototype.__proto__ = WebInspector.Panel.prototype;
    [all...]
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/
Panel.java 26 public abstract class Panel {
45 * Sets the focus to the proper control inside the panel.
SelectionDependentPanel.java 23 * A Panel that requires {@link Device}/{@link Client} selection notifications.
25 public abstract class SelectionDependentPanel extends Panel {
  /external/chromium/chrome/browser/chromeos/panels/
panel_scroller.h 34 // Called when a panel header is clicked with the affected container. This
35 // function will make sure the panel is fully visible.
39 struct Panel;
44 // Scrolls to the panel at the given index. It will be moved to the top.
48 std::vector<Panel*> panels_;
50 // Height in pixels of the headers above each panel.
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/chrome/browser/ui/
browser_window.h 20 class Panel;
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/
PanelController.java 54 private static int PANEL = 0;
61 class Panel {
67 public Panel(View view, View container, int position) {
288 private final HashMap<View, Panel> mPanels = new HashMap<View, Panel>();
308 mPanels.put(view, new Panel(view, container, position));
310 mViews.put(view, new ViewType(view, PANEL));
314 Panel panel = mPanels.get(aPanel); local
315 if (panel == null)
422 Panel panel = mPanels.get(view); local
    [all...]
  /external/webkit/Source/WebKit/wx/bindings/python/samples/
simple.py 30 class TestPanel(wx.Panel):
32 wx.Panel.__init__(
149 self.panel = TestPanel(self, -1)
150 self.panel.webview.LoadURL("http://www.wxwidgets.org/")
  /external/linux-tools-perf/scripts/python/Perf-Trace-Util/lib/Perf/Trace/
SchedGui.py 38 # whole window panel
39 self.panel = wx.Panel(self, size=(self.screen_width, self.screen_height))
42 self.scroll = wx.ScrolledWindow(self.panel)
48 self.scroll_panel = wx.Panel(self.scroll, size=(self.screen_width - 15, self.screen_height / 2))
131 self.txt = wx.StaticText(self.panel, -1, txt, (0, (self.screen_height / 2) + 50))
  /external/sonivox/jet_tools/JetCreator/
JetSegGraph.py 89 class SegmentGraph(wx.Panel):
92 wx.Panel.__init__(self, parent, -1, pos=pos, size=size, style=wx.BORDER_STATIC)

Completed in 483 milliseconds

1 2