////////////////////////////////////////////////////////////////////////////
// Name: ScintillaWX.h
-// Purpose: A wxWindows implementation of Scintilla. A class derived
+// Purpose: A wxWidgets implementation of Scintilla. A class derived
// from ScintillaBase that uses the "wx platform" defined in
// PlatWX.cpp. This class is one end of a bridge between
// the wx world and the Scintilla world. It needs a peer
//----------------------------------------------------------------------
+#include <ctype.h>
+#include <stdlib.h>
+#include <stdio.h>
+#include <string.h>
+
#include "Platform.h"
#include "Scintilla.h"
+#include "CharClassify.h"
+#include "XPM.h"
#ifdef SCI_LEXER
#include "SciLexer.h"
#include "PropSet.h"
#include "Editor.h"
#include "ScintillaBase.h"
-#include <wx/wx.h>
-#include <wx/dataobj.h>
-#include <wx/clipbrd.h>
-#include <wx/dnd.h>
-
//----------------------------------------------------------------------
-class wxStyledTextCtrl; // forward
+#ifdef WXMAKINGDLL_STC
+ #define WXDLLIMPEXP_STC WXEXPORT
+#elif defined(WXUSINGDLL)
+ #define WXDLLIMPEXP_STC WXIMPORT
+#else // not making nor using DLL
+ #define WXDLLIMPEXP_STC
+#endif
+
+class WXDLLIMPEXP_STC wxStyledTextCtrl; // forward
class ScintillaWX;
//----------------------------------------------------------------------
// Helper classes
+#if wxUSE_DRAG_AND_DROP
class wxSTCDropTarget : public wxTextDropTarget {
public:
void SetScintilla(ScintillaWX* swx) {
private:
ScintillaWX* swx;
};
-
+#endif
//----------------------------------------------------------------------
virtual void Initialise();
virtual void Finalise();
virtual void StartDrag();
+ virtual bool SetIdle(bool on);
virtual void SetTicking(bool on);
virtual void SetMouseCapture(bool on);
virtual bool HaveMouseCapture();
virtual bool ModifyScrollBars(int nMax, int nPage);
virtual void Copy();
virtual void Paste();
+ virtual void CopyToClipboard(const SelectionText &selectedText);
+
virtual void CreateCallTipWindow(PRectangle rc);
virtual void AddToPopUp(const char *label, int cmd = 0, bool enabled = true);
virtual void ClaimSelection();
virtual void NotifyChange();
virtual void NotifyParent(SCNotification scn);
+ virtual void CancelModes();
+
+ virtual void UpdateSystemCaret();
// Event delegates
void DoPaint(wxDC* dc, wxRect rect);
void DoLoseFocus();
void DoGainFocus();
void DoSysColourChange();
- void DoButtonDown(Point pt, unsigned int curTime, bool shift, bool ctrl, bool alt);
- void DoButtonUp(Point pt, unsigned int curTime, bool ctrl);
- void DoButtonMove(Point pt);
- void DoMouseWheel(int rotation, int delta, int linesPerAction, int ctrlDown);
- void DoAddChar(char ch);
- int DoKeyDown(int key, bool shift, bool ctrl, bool alt, bool* consumed);
+ void DoLeftButtonDown(Point pt, unsigned int curTime, bool shift, bool ctrl, bool alt);
+ void DoLeftButtonUp(Point pt, unsigned int curTime, bool ctrl);
+ void DoLeftButtonMove(Point pt);
+ void DoMiddleButtonUp(Point pt);
+ void DoMouseWheel(int rotation, int delta, int linesPerAction, int ctrlDown, bool isPageScroll);
+ void DoAddChar(int key);
+ 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);
wxDragResult DoDragEnter(wxCoord x, wxCoord y, wxDragResult def);
wxDragResult DoDragOver(wxCoord x, wxCoord y, wxDragResult def);
void DoDragLeave();
+#endif
void DoCommand(int ID);
void DoContextMenu(Point pt);
bool GetHideSelection() { return hideSelection; }
void DoScrollToLine(int line);
void DoScrollToColumn(int column);
+ void ClipChildren(wxDC& dc, PRectangle rect);
+ void SetUseAntiAliasing(bool useAA);
+ bool GetUseAntiAliasing();
private:
bool capturedMouse;
+ bool focusEvent;
wxStyledTextCtrl* stc;
+#if wxUSE_DRAG_AND_DROP
wxSTCDropTarget* dropTarget;
wxDragResult dragResult;
+ wxTimer* startDragTimer;
+#endif
+
int wheelRotation;
+
+ // For use in creating a system caret
+ bool HasCaretSizeChanged();
+ bool CreateSystemCaret();
+ bool DestroySystemCaret();
+#ifdef __WXMSW__
+ HBITMAP sysCaretBitmap;
+ int sysCaretWidth;
+ int sysCaretHeight;
+#endif
+
+ friend class wxSTCCallTip;
};
//----------------------------------------------------------------------