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

Lines Matching defs:SimpleTransientPopup

64 // SimpleTransientPopup
66 class SimpleTransientPopup: public wxPopupTransientWindow
69 SimpleTransientPopup( wxWindow *parent );
70 virtual ~SimpleTransientPopup();
95 DECLARE_CLASS(SimpleTransientPopup)
100 // SimpleTransientPopup
102 IMPLEMENT_CLASS(SimpleTransientPopup,wxPopupTransientWindow)
104 BEGIN_EVENT_TABLE(SimpleTransientPopup,wxPopupTransientWindow)
105 EVT_MOUSE_EVENTS( SimpleTransientPopup::OnMouse )
106 EVT_SIZE( SimpleTransientPopup::OnSize )
107 EVT_SET_FOCUS( SimpleTransientPopup::OnSetFocus )
108 EVT_KILL_FOCUS( SimpleTransientPopup::OnKillFocus )
109 EVT_BUTTON( Minimal_PopupButton, SimpleTransientPopup::OnButton )
110 EVT_SPINCTRL( Minimal_PopupSpinctrl, SimpleTransientPopup::OnSpinCtrl )
113 SimpleTransientPopup::SimpleTransientPopup( wxWindow *parent )
123 wxMouseEventHandler(SimpleTransientPopup::OnMouse),
151 SimpleTransientPopup::~SimpleTransientPopup()
155 void SimpleTransientPopup::Popup(wxWindow *focus)
157 wxLogMessage( wxT("0x%lx SimpleTransientPopup::Popup"), long(this) );
161 void SimpleTransientPopup::OnDismiss()
163 wxLogMessage( wxT("0x%lx SimpleTransientPopup::OnDismiss"), long(this) );
167 bool SimpleTransientPopup::ProcessLeftDown(wxMouseEvent& event)
169 wxLogMessage( wxT("0x%lx SimpleTransientPopup::ProcessLeftDown pos(%d, %d)"), long(this), event.GetX(), event.GetY());
172 bool SimpleTransientPopup::Show( bool show )
174 wxLogMessage( wxT("0x%lx SimpleTransientPopup::Show %d"), long(this), int(show));
178 void SimpleTransientPopup::OnSize(wxSizeEvent &event)
180 wxLogMessage( wxT("0x%lx SimpleTransientPopup::OnSize"), long(this) );
184 void SimpleTransientPopup::OnSetFocus(wxFocusEvent &event)
186 wxLogMessage( wxT("0x%lx SimpleTransientPopup::OnSetFocus"), long(this) );
190 void SimpleTransientPopup::OnKillFocus(wxFocusEvent &event)
192 wxLogMessage( wxT("0x%lx SimpleTransientPopup::OnKillFocus"), long(this) );
196 void SimpleTransientPopup::OnMouse(wxMouseEvent &event)
206 wxLogMessage( wxT("0x%lx SimpleTransientPopup::OnMouse pos(%d, %d)"), long(event.GetEventObject()), event.GetX(), event.GetY());
217 void SimpleTransientPopup::OnButton(wxCommandEvent& event)
219 wxLogMessage( wxT("0x%lx SimpleTransientPopup::OnButton ID %d"), long(this), event.GetId());
230 void SimpleTransientPopup::OnSpinCtrl(wxSpinEvent& event)
232 wxLogMessage( wxT("0x%lx SimpleTransientPopup::OnSpinCtrl ID %d Value %d"), long(this), event.GetId(), event.GetInt());
249 SimpleTransientPopup *m_simplePopup;
250 SimpleTransientPopup *m_scrolledPopup;
267 SimpleTransientPopup *m_simplePopup;
268 SimpleTransientPopup *m_scrolledPopup;
382 m_simplePopup = new SimpleTransientPopup( this );
395 m_scrolledPopup = new SimpleTransientPopup( this );
461 m_simplePopup = new SimpleTransientPopup( this );
474 m_scrolledPopup = new SimpleTransientPopup( this );