#if'd out my wxPopupWindow meanderings and just use a simple wxListBox
for the AutoComplete window.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16134
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
#else
wxCursor wc = wxCursor(cursorId) ;
#endif
- GETWIN(id)->SetCursor(wc);
+ GETWIN(id)->SetCursor(wc);
}
// Helper classes for ListBox
-#if defined(__WXMAC__)
+#if 1 // defined(__WXMAC__)
class wxSTCListBoxWin : public wxListBox {
public:
wxSTCListBoxWin(wxWindow* parent, wxWindowID id)
}
void wxStyledTextCtrl::OnMouseLeftDown(wxMouseEvent& evt) {
+ SetFocus();
wxPoint pt = evt.GetPosition();
m_swx->DoButtonDown(Point(pt.x, pt.y), m_stopWatch.Time(),
evt.ShiftDown(), evt.ControlDown(), evt.AltDown());
}
void wxStyledTextCtrl::OnMouseLeftDown(wxMouseEvent& evt) {
+ SetFocus();
wxPoint pt = evt.GetPosition();
m_swx->DoButtonDown(Point(pt.x, pt.y), m_stopWatch.Time(),
evt.ShiftDown(), evt.ControlDown(), evt.AltDown());
#else
wxCursor wc = wxCursor(cursorId) ;
#endif
- GETWIN(id)->SetCursor(wc);
+ GETWIN(id)->SetCursor(wc);
}
// Helper classes for ListBox
-#if defined(__WXMAC__)
+#if 1 // defined(__WXMAC__)
class wxSTCListBoxWin : public wxListBox {
public:
wxSTCListBoxWin(wxWindow* parent, wxWindowID id)
}
void wxStyledTextCtrl::OnMouseLeftDown(wxMouseEvent& evt) {
+ SetFocus();
wxPoint pt = evt.GetPosition();
m_swx->DoButtonDown(Point(pt.x, pt.y), m_stopWatch.Time(),
evt.ShiftDown(), evt.ControlDown(), evt.AltDown());
}
void wxStyledTextCtrl::OnMouseLeftDown(wxMouseEvent& evt) {
+ SetFocus();
wxPoint pt = evt.GetPosition();
m_swx->DoButtonDown(Point(pt.x, pt.y), m_stopWatch.Time(),
evt.ShiftDown(), evt.ControlDown(), evt.AltDown());