Home
last modified time | relevance | path

Searched refs:m_popup (Results 1 – 12 of 12) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/web/
DWebPagePopupImpl.cpp64 : m_popup(popup) in PagePopupChromeClient()
66 ASSERT(m_popup->widgetClient()); in PagePopupChromeClient()
72 m_popup->closePopup(); in closeWindowSoon()
77 …return FloatRect(m_popup->m_windowRectInScreen.x, m_popup->m_windowRectInScreen.y, m_popup->m_wind… in windowRect()
82 m_popup->m_windowRectInScreen = IntRect(rect); in setWindowRect()
83 m_popup->widgetClient()->setWindowRect(m_popup->m_windowRectInScreen); in setWindowRect()
97 m_popup->widgetClient()->didInvalidateRect(paintRect); in invalidateContentsAndRootView()
102m_popup->widgetClient()->didScrollRect(scrollDelta.width(), scrollDelta.height(), intersection(scr… in scroll()
112 if (m_popup->isAcceleratedCompositingActive()) { in scheduleAnimation()
113 ASSERT(m_popup->m_layerTreeView); in scheduleAnimation()
[all …]
DPopupMenuChromium.cpp53 if (m_popup) in ~PopupMenuChromium()
54 m_popup->listBox()->disconnectClient(); in ~PopupMenuChromium()
60 if (!m_popup) { in show()
62 m_popup = PopupContainer::create(m_popupClient, deviceSupportsTouch); in show()
64 m_popup->showInRect(controlPosition, controlSize, m_frameView.get(), index); in show()
69 if (m_popup) in hide()
70 m_popup->hide(); in hide()
75 m_popup->listBox()->updateFromElement(); in updateFromElement()
DColorChooserPopupUIController.cpp53 , m_popup(0) in ColorChooserPopupUIController()
74 if (m_popup) in endChooser()
112 ASSERT(m_popup); in setValueAndClosePopup()
132 m_popup = 0; in didClosePopup()
141 ASSERT(!m_popup); in openPopup()
142 m_popup = m_chromeClient->openPagePopup(this, m_client->elementRectRelativeToRootView()); in openPopup()
147 if (!m_popup) in closePopup()
149 m_chromeClient->closePagePopup(m_popup); in closePopup()
DDateTimeChooserImpl.cpp54 , m_popup(0) in DateTimeChooserImpl()
60 m_popup = m_chromeClient->openPagePopup(this, m_parameters.anchorRectInRootView); in DateTimeChooserImpl()
74 if (!m_popup) in endChooser()
76 m_chromeClient->closePagePopup(m_popup); in endChooser()
196 m_popup = 0; in didClosePopup()
DPopupMenuChromium.h60 RefPtr<PopupContainer> m_popup; variable
DColorChooserPopupUIController.h68 WebCore::PagePopup* m_popup; variable
DDateTimeChooserImpl.h69 WebCore::PagePopup* m_popup; variable
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/
DCCombo3.java44 private final Shell m_popup; field in CCombo3
79 m_popup = new Shell(shell, SWT.NONE); in CCombo3()
80 m_popup.setLayout(new FillLayout()); in CCombo3()
84 m_table = new Table(m_popup, SWT.FULL_SELECTION); in CCombo3()
99 || m_popup.isFocusControl() in CCombo3()
136 if (!m_popup.isDisposed()) {
137 m_popup.dispose();
321 m_popup.setVisible(false); in doDropDown()
341 m_popup.pack(); in doDropDown()
356 m_popup.computeTrim(popupLocation.x, popupLocation.y, preferredWidth, preferredHeight); in doDropDown()
[all …]
DCTableCombo.java49 protected Shell m_popup; field in CTableCombo
69 m_popup = new Shell(shell, SWT.NONE); in init()
70 m_table = new Table(m_popup, SWT.FULL_SELECTION); in init()
74 if (m_popup == event.widget) { in init()
124 m_popup.addListener(popupEvents[i], listener); in init()
294 if (m_popup != null && !m_popup.isDisposed()) { in handleComboEvent()
295 m_popup.dispose(); in handleComboEvent()
297 m_popup = null; in handleComboEvent()
502 m_popup.setVisible(false); in dropDown()
519 if (!(m_popup.getLayout() instanceof FillLayout)) { in dropDown()
[all …]
DCComboBox.java70 private Shell m_popup; field in CComboBox
272 m_popup = new Shell(getShell(), SWT.BORDER); in createPopup()
273 m_popup.setLayout(new FillLayout()); in createPopup()
274 createTable(m_popup); in createPopup()
339 if (!m_popup.isDisposed()) { in disposeInner()
340 m_popup.dispose(); in disposeInner()
447 || m_popup.isFocusControl()
560 return m_popup.isVisible();
576 m_popup.pack();
600 m_popup.computeTrim(popupBounds.x, popupBounds.y, popupBounds.width, popupBounds.height);
[all …]
/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderMenuList.cpp70 if (m_popup) in ~RenderMenuList()
71 m_popup->disconnectClient(); in ~RenderMenuList()
72 m_popup = nullptr; in ~RenderMenuList()
206 m_popup->updateFromElement(); in updateFromElement()
371 if (!m_popup) in showPopup()
372 m_popup = document().frameHost()->chrome().createPopupMenu(*document().frame(), this); in showPopup()
378 m_popup->show(quad, size, select->optionToListIndex(select->selectedIndex())); in showPopup()
383 if (m_popup) in hidePopup()
384 m_popup->hide(); in hidePopup()
DRenderMenuList.h130 RefPtr<PopupMenu> m_popup; variable