X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f9ee2e27420999ce929386bbd1d6e088391f179e..7807a2b4998ef075b5ac7c05ab48274c28b477ba:/src/stc/ScintillaWX.h?ds=inline diff --git a/src/stc/ScintillaWX.h b/src/stc/ScintillaWX.h index e703efe606..29cec64796 100644 --- a/src/stc/ScintillaWX.h +++ b/src/stc/ScintillaWX.h @@ -27,6 +27,7 @@ #include "Platform.h" #include "Scintilla.h" +#include "CharClassify.h" #include "XPM.h" #ifdef SCI_LEXER #include "SciLexer.h" @@ -48,7 +49,6 @@ #include "Editor.h" #include "ScintillaBase.h" - //---------------------------------------------------------------------- #ifdef WXMAKINGDLL_STC @@ -142,6 +142,7 @@ public: int DoKeyDown(const wxKeyEvent& event, bool* consumed); void DoTick() { Tick(); } void DoOnIdle(wxIdleEvent& evt); + void DoStartDrag(); #if wxUSE_DRAG_AND_DROP bool DoDropText(long x, long y, const wxString& data); @@ -173,7 +174,9 @@ private: #if wxUSE_DRAG_AND_DROP wxSTCDropTarget* dropTarget; wxDragResult dragResult; + wxTimer* startDragTimer; #endif + int wheelRotation; // For use in creating a system caret @@ -185,7 +188,7 @@ private: int sysCaretWidth; int sysCaretHeight; #endif - + friend class wxSTCCallTip; };