• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/src/common/

Lines Matching defs:popup

64 #define POPUPWIN_IS_PERFECT           0 // Same, but for non-transient popup window.
73 // NB: It is not recommended to use wxDialog as popup on wxGTK, because of
82 #define POPUPWIN_IS_PERFECT 1 // Same, but for non-transient popup window.
91 #define POPUPWIN_IS_PERFECT 0 // Same, but for non-transient popup window.
105 #define POPUPWIN_IS_PERFECT 0 // Same, but for non-transient popup window.
129 // Define different types of popup windows
208 // wxComboFrameEventHandler takes care of hiding the popup when events happen
274 wxWindow* popup = m_combo->GetPopupControl()->GetControl();
279 winFocused != popup &&
280 winFocused->GetParent() != popup &&
400 // First thing that happens when a transient popup closes is that this method gets called.
414 // of a popup window. It is separate so we can have different types
415 // of popup windows.
452 // Block the event so that the popup control does not get auto-resized.
623 // This is pushed to the event handler queue of the control in popup.
672 // Block motion and click events outside the popup
696 // Some mouse events to popup that happen outside it, before cursor
1506 // If showing popup now, do not capture mouse or there will be interference
1569 // Filter out clicks on button immediately after popup dismiss (Windows like behaviour)
1589 // Click here always hides the popup.
1614 // relay (some) mouse events to the popup
1629 else // no popup
1711 // popup handling
1714 // Create popup window and the child control
1718 wxWindow* popup;
1745 m_popup = popup = popupInterface->GetControl();
1748 popup->PushEventHandler( m_popupExtraHandler );
1758 // Destroy popup window and the child control
1786 wxCHECK_RET( iface, wxT("no popup interface set for wxComboCtrl") );
1812 // Ensures there is atleast the default popup
1822 // popup action
1832 wxCHECK_RET( !IsPopupWindowState(Visible), wxT("popup window already shown") );
1864 wxWindow* popup;
1870 // that if transient popup is open, then tab traversal is to be ignored.
1872 // transient popup doesn't work yet (wxWinCE?).
1885 popup = m_popup;
1889 popup = m_popup;
1894 wxASSERT( !m_popup || m_popup == popup ); // Consistency check.
1900 popup->SetSize(adjustedSize);
1901 popup->Move(0,0);
1905 // Reposition and resize popup window
1908 wxSize szp = popup->GetSize();
1927 // If there is no space even then, place the popup at x 0.
1989 // This is neede since focus/selection indication may change when popup is shown
1998 m_popup = popup;
2017 // Make sure the popup window is shown in the right position.
2051 // Inform popup control itself
2094 // Should be able to call this without popup interface