Fixed bugs in, and added operators and copy constructors to, style
[wxWidgets.git] / include / wx / richtext / richtextctrl.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/richtext/richtextctrl.h
3 // Purpose: A rich edit control
4 // Author: Julian Smart
5 // Modified by:
6 // Created: 2005-09-30
7 // RCS-ID: $Id$
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifndef _WX_RICHTEXTCTRL_H_
13 #define _WX_RICHTEXTCTRL_H_
14
15 #include "wx/richtext/richtextbuffer.h"
16
17 #if wxUSE_RICHTEXT
18
19 #include "wx/scrolwin.h"
20 #include "wx/caret.h"
21
22 #if wxCHECK_VERSION(2,7,0)
23 #define wxRICHTEXT_DERIVES_FROM_TEXTCTRLBASE 1
24 #else
25 #define wxRICHTEXT_DERIVES_FROM_TEXTCTRLBASE 0
26 #endif
27
28 #if wxRICHTEXT_DERIVES_FROM_TEXTCTRLBASE
29 #include "wx/textctrl.h"
30 #endif
31
32 class WXDLLIMPEXP_RICHTEXT wxRichTextStyleDefinition;
33
34 /*!
35 * Styles and flags
36 */
37
38 /* Styles
39 */
40
41 #define wxRE_READONLY 0x0010
42 #define wxRE_MULTILINE 0x0020
43
44 /* Flags
45 */
46
47 #define wxRICHTEXT_SHIFT_DOWN 0x01
48 #define wxRICHTEXT_CTRL_DOWN 0x02
49 #define wxRICHTEXT_ALT_DOWN 0x04
50
51 /* Defaults
52 */
53
54 #define wxRICHTEXT_DEFAULT_OVERALL_SIZE wxSize(-1, -1)
55 #define wxRICHTEXT_DEFAULT_IMAGE_SIZE wxSize(80, 80)
56 #define wxRICHTEXT_DEFAULT_SPACING 3
57 #define wxRICHTEXT_DEFAULT_MARGIN 3
58 #define wxRICHTEXT_DEFAULT_UNFOCUSSED_BACKGROUND wxColour(175, 175, 175)
59 #define wxRICHTEXT_DEFAULT_FOCUSSED_BACKGROUND wxColour(140, 140, 140)
60 #define wxRICHTEXT_DEFAULT_UNSELECTED_BACKGROUND wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE)
61 #define wxRICHTEXT_DEFAULT_TYPE_COLOUR wxColour(0, 0, 200)
62 #define wxRICHTEXT_DEFAULT_FOCUS_RECT_COLOUR wxColour(100, 80, 80)
63 #define wxRICHTEXT_DEFAULT_CARET_WIDTH 2
64 // Minimum buffer size before delayed layout kicks in
65 #define wxRICHTEXT_DEFAULT_DELAYED_LAYOUT_THRESHOLD 20000
66 // Milliseconds before layout occurs after resize
67 #define wxRICHTEXT_DEFAULT_LAYOUT_INTERVAL 50
68
69 /*!
70 * Forward declarations
71 */
72
73 /*!
74 * wxRichTextItem class declaration
75 */
76
77 // Drawing styles/states
78 #define wxRICHTEXT_SELECTED 0x01
79 #define wxRICHTEXT_TAGGED 0x02
80 // The control is focussed
81 #define wxRICHTEXT_FOCUSSED 0x04
82 // The item itself has the focus
83 #define wxRICHTEXT_IS_FOCUS 0x08
84
85 /*!
86 * wxRichTextCtrl class declaration
87 */
88
89 class WXDLLIMPEXP_RICHTEXT wxRichTextCtrl:
90 #if wxRICHTEXT_DERIVES_FROM_TEXTCTRLBASE
91 public wxTextCtrlBase, public wxScrollHelper
92 #else
93 public wxScrolledWindow
94 #endif
95 {
96 DECLARE_CLASS( wxRichTextCtrl )
97 DECLARE_EVENT_TABLE()
98
99 public:
100 // Constructors
101
102 wxRichTextCtrl( );
103 wxRichTextCtrl( wxWindow* parent, wxWindowID id = -1, const wxString& value = wxEmptyString, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize,
104 long style = wxRE_MULTILINE );
105 virtual ~wxRichTextCtrl( );
106
107 // Operations
108
109 /// Creation
110 bool Create( wxWindow* parent, wxWindowID id = -1, const wxString& value = wxEmptyString, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize,
111 long style = wxRE_MULTILINE );
112
113 /// Member initialisation
114 void Init();
115
116 ///// wxTextCtrl compatibility
117
118 // Accessors
119
120 virtual wxString GetValue() const;
121 virtual void SetValue(const wxString& value);
122
123 virtual wxString GetRange(long from, long to) const;
124
125 virtual int GetLineLength(long lineNo) const ;
126 virtual wxString GetLineText(long lineNo) const ;
127 virtual int GetNumberOfLines() const ;
128
129 virtual bool IsModified() const ;
130 virtual bool IsEditable() const ;
131
132 // more readable flag testing methods
133 bool IsSingleLine() const { return !HasFlag(wxRE_MULTILINE); }
134 bool IsMultiLine() const { return !IsSingleLine(); }
135
136 // If the return values from and to are the same, there is no selection.
137 virtual void GetSelection(long* from, long* to) const;
138
139 virtual wxString GetStringSelection() const;
140
141 /// Get filename
142 wxString GetFilename() const { return m_filename; }
143
144 /// Set filename
145 void SetFilename(const wxString& filename) { m_filename = filename; }
146
147 /// Set the threshold in character positions for doing layout optimization during sizing
148 void SetDelayedLayoutThreshold(long threshold) { m_delayedLayoutThreshold = threshold; }
149
150 /// Get the threshold in character positions for doing layout optimization during sizing
151 long GetDelayedLayoutThreshold() const { return m_delayedLayoutThreshold; }
152
153 // Operations
154
155 // editing
156 virtual void Clear();
157 virtual void Replace(long from, long to, const wxString& value);
158 virtual void Remove(long from, long to);
159
160 #if !wxRICHTEXT_DERIVES_FROM_TEXTCTRLBASE
161 bool LoadFile(const wxString& file, int fileType = wxRICHTEXT_TYPE_ANY);
162 bool SaveFile(const wxString& file = wxEmptyString, int fileType = wxRICHTEXT_TYPE_ANY);
163 #endif
164
165 // load/save the controls contents from/to the file
166 virtual bool DoLoadFile(const wxString& file, int fileType);
167 virtual bool DoSaveFile(const wxString& file = wxEmptyString, int fileType = wxRICHTEXT_TYPE_ANY);
168
169 // sets/clears the dirty flag
170 virtual void MarkDirty();
171 virtual void DiscardEdits();
172
173 // set the max number of characters which may be entered in a single line
174 // text control
175 virtual void SetMaxLength(unsigned long WXUNUSED(len)) { }
176
177 // writing text inserts it at the current position, appending always
178 // inserts it at the end
179 virtual void WriteText(const wxString& text);
180 virtual void AppendText(const wxString& text);
181
182 // text control under some platforms supports the text styles: these
183 // methods allow to apply the given text style to the given selection or to
184 // set/get the style which will be used for all appended text
185 virtual bool SetStyle(long start, long end, const wxTextAttr& style);
186 virtual bool SetStyle(long start, long end, const wxTextAttrEx& style);
187 virtual bool SetStyle(const wxRichTextRange& range, const wxRichTextAttr& style);
188 virtual bool GetStyle(long position, wxTextAttr& style);
189 virtual bool GetStyle(long position, wxTextAttrEx& style);
190 virtual bool GetStyle(long position, wxRichTextAttr& style);
191
192 /// Get the content (uncombined) attributes for this position.
193 virtual bool GetUncombinedStyle(long position, wxTextAttr& style);
194 virtual bool GetUncombinedStyle(long position, wxTextAttrEx& style);
195 virtual bool GetUncombinedStyle(long position, wxRichTextAttr& style);
196
197 virtual bool SetDefaultStyle(const wxTextAttrEx& style);
198 virtual bool SetDefaultStyle(const wxTextAttr& style);
199
200 // TODO: change to GetDefaultStyle if we merge wxTextAttr and wxTextAttrEx
201 virtual const wxTextAttrEx& GetDefaultStyleEx() const;
202 virtual const wxTextAttr& GetDefaultStyle() const;
203
204 // translate between the position (which is just an index in the text ctrl
205 // considering all its contents as a single strings) and (x, y) coordinates
206 // which represent column and line.
207 virtual long XYToPosition(long x, long y) const;
208 virtual bool PositionToXY(long pos, long *x, long *y) const;
209
210 virtual void ShowPosition(long pos);
211
212 // find the character at position given in pixels
213 //
214 // NB: pt is in device coords (not adjusted for the client area origin nor
215 // scrolling)
216 virtual wxTextCtrlHitTestResult HitTest(const wxPoint& pt, long *pos) const;
217 virtual wxTextCtrlHitTestResult HitTest(const wxPoint& pt,
218 wxTextCoord *col,
219 wxTextCoord *row) const;
220
221 // Clipboard operations
222 virtual void Copy();
223 virtual void Cut();
224 virtual void Paste();
225 virtual void DeleteSelection();
226
227 virtual bool CanCopy() const;
228 virtual bool CanCut() const;
229 virtual bool CanPaste() const;
230 virtual bool CanDeleteSelection() const;
231
232 // Undo/redo
233 virtual void Undo();
234 virtual void Redo();
235
236 virtual bool CanUndo() const;
237 virtual bool CanRedo() const;
238
239 // Insertion point
240 virtual void SetInsertionPoint(long pos);
241 virtual void SetInsertionPointEnd();
242 virtual long GetInsertionPoint() const;
243 virtual wxTextPos GetLastPosition() const;
244
245 virtual void SetSelection(long from, long to);
246 virtual void SelectAll();
247 virtual void SetEditable(bool editable);
248
249 /// Call Freeze to prevent refresh
250 virtual void Freeze();
251
252 /// Call Thaw to refresh
253 virtual void Thaw();
254
255 /// Call Thaw to refresh
256 virtual bool IsFrozen() const { return m_freezeCount > 0; }
257
258 virtual bool HasSelection() const;
259
260 ///// Functionality specific to wxRichTextCtrl
261
262 /// Write an image at the current insertion point. Supply optional type to use
263 /// for internal and file storage of the raw data.
264 virtual bool WriteImage(const wxImage& image, int bitmapType = wxBITMAP_TYPE_PNG);
265
266 /// Write a bitmap at the current insertion point. Supply optional type to use
267 /// for internal and file storage of the raw data.
268 virtual bool WriteImage(const wxBitmap& bitmap, int bitmapType = wxBITMAP_TYPE_PNG);
269
270 /// Load an image from file and write at the current insertion point.
271 virtual bool WriteImage(const wxString& filename, int bitmapType);
272
273 /// Write an image block at the current insertion point.
274 virtual bool WriteImage(const wxRichTextImageBlock& imageBlock);
275
276 /// Insert a newline (actually paragraph) at the current insertion point.
277 virtual bool Newline();
278
279 /// Set basic (overall) style
280 virtual void SetBasicStyle(const wxTextAttrEx& style) { GetBuffer().SetBasicStyle(style); }
281 virtual void SetBasicStyle(const wxRichTextAttr& style) { GetBuffer().SetBasicStyle(style); }
282
283 /// Get basic (overall) style
284 virtual const wxTextAttrEx& GetBasicStyle() const { return GetBuffer().GetBasicStyle(); }
285
286 /// Begin using a style
287 virtual bool BeginStyle(const wxTextAttrEx& style) { return GetBuffer().BeginStyle(style); }
288
289 /// End the style
290 virtual bool EndStyle() { return GetBuffer().EndStyle(); }
291
292 /// End all styles
293 virtual bool EndAllStyles() { return GetBuffer().EndAllStyles(); }
294
295 /// Begin using bold
296 bool BeginBold() { return GetBuffer().BeginBold(); }
297
298 /// End using bold
299 bool EndBold() { return GetBuffer().EndBold(); }
300
301 /// Begin using italic
302 bool BeginItalic() { return GetBuffer().BeginItalic(); }
303
304 /// End using italic
305 bool EndItalic() { return GetBuffer().EndItalic(); }
306
307 /// Begin using underline
308 bool BeginUnderline() { return GetBuffer().BeginUnderline(); }
309
310 /// End using underline
311 bool EndUnderline() { return GetBuffer().EndUnderline(); }
312
313 /// Begin using point size
314 bool BeginFontSize(int pointSize) { return GetBuffer().BeginFontSize(pointSize); }
315
316 /// End using point size
317 bool EndFontSize() { return GetBuffer().EndFontSize(); }
318
319 /// Begin using this font
320 bool BeginFont(const wxFont& font) { return GetBuffer().BeginFont(font); }
321
322 /// End using a font
323 bool EndFont() { return GetBuffer().EndFont(); }
324
325 /// Begin using this colour
326 bool BeginTextColour(const wxColour& colour) { return GetBuffer().BeginTextColour(colour); }
327
328 /// End using a colour
329 bool EndTextColour() { return GetBuffer().EndTextColour(); }
330
331 /// Begin using alignment
332 bool BeginAlignment(wxTextAttrAlignment alignment) { return GetBuffer().BeginAlignment(alignment); }
333
334 /// End alignment
335 bool EndAlignment() { return GetBuffer().EndAlignment(); }
336
337 /// Begin left indent
338 bool BeginLeftIndent(int leftIndent, int leftSubIndent = 0) { return GetBuffer().BeginLeftIndent(leftIndent, leftSubIndent); }
339
340 /// End left indent
341 bool EndLeftIndent() { return GetBuffer().EndLeftIndent(); }
342
343 /// Begin right indent
344 bool BeginRightIndent(int rightIndent) { return GetBuffer().BeginRightIndent(rightIndent); }
345
346 /// End right indent
347 bool EndRightIndent() { return GetBuffer().EndRightIndent(); }
348
349 /// Begin paragraph spacing
350 bool BeginParagraphSpacing(int before, int after) { return GetBuffer().BeginParagraphSpacing(before, after); }
351
352 /// End paragraph spacing
353 bool EndParagraphSpacing() { return GetBuffer().EndParagraphSpacing(); }
354
355 /// Begin line spacing
356 bool BeginLineSpacing(int lineSpacing) { return GetBuffer().BeginLineSpacing(lineSpacing); }
357
358 /// End line spacing
359 bool EndLineSpacing() { return GetBuffer().EndLineSpacing(); }
360
361 /// Begin numbered bullet
362 bool BeginNumberedBullet(int bulletNumber, int leftIndent, int leftSubIndent, int bulletStyle = wxTEXT_ATTR_BULLET_STYLE_ARABIC|wxTEXT_ATTR_BULLET_STYLE_PERIOD)
363 { return GetBuffer().BeginNumberedBullet(bulletNumber, leftIndent, leftSubIndent, bulletStyle); }
364
365 /// End numbered bullet
366 bool EndNumberedBullet() { return GetBuffer().EndNumberedBullet(); }
367
368 /// Begin symbol bullet
369 bool BeginSymbolBullet(wxChar symbol, int leftIndent, int leftSubIndent, int bulletStyle = wxTEXT_ATTR_BULLET_STYLE_SYMBOL)
370 { return GetBuffer().BeginSymbolBullet(symbol, leftIndent, leftSubIndent, bulletStyle); }
371
372 /// End symbol bullet
373 bool EndSymbolBullet() { return GetBuffer().EndSymbolBullet(); }
374
375 /// Begin named character style
376 bool BeginCharacterStyle(const wxString& characterStyle) { return GetBuffer().BeginCharacterStyle(characterStyle); }
377
378 /// End named character style
379 bool EndCharacterStyle() { return GetBuffer().EndCharacterStyle(); }
380
381 /// Begin named paragraph style
382 bool BeginParagraphStyle(const wxString& paragraphStyle) { return GetBuffer().BeginParagraphStyle(paragraphStyle); }
383
384 /// End named character style
385 bool EndParagraphStyle() { return GetBuffer().EndParagraphStyle(); }
386
387 /// Sets the default style to the style under the cursor
388 bool SetDefaultStyleToCursorStyle();
389
390 /// Clear the selection
391 virtual void SelectNone();
392
393 /// Get/set the selection range in character positions. -1, -1 means no selection.
394 /// The range is in API convention, i.e. a single character selection is denoted
395 /// by (n, n+1)
396 wxRichTextRange GetSelectionRange() const;
397 void SetSelectionRange(const wxRichTextRange& range);
398
399 /// Get/set the selection range in character positions. -1, -1 means no selection.
400 /// The range is in internal format, i.e. a single character selection is denoted
401 /// by (n, n)
402 const wxRichTextRange& GetInternalSelectionRange() const { return m_selectionRange; }
403 void SetInternalSelectionRange(const wxRichTextRange& range) { m_selectionRange = range; }
404
405 /// Add a new paragraph of text to the end of the buffer
406 virtual wxRichTextRange AddParagraph(const wxString& text);
407
408 /// Add an image
409 virtual wxRichTextRange AddImage(const wxImage& image);
410
411 /// Layout the buffer: which we must do before certain operations, such as
412 /// setting the caret position.
413 virtual bool LayoutContent(bool onlyVisibleRect = false);
414
415 /// Move the caret to the given character position
416 virtual bool MoveCaret(long pos, bool showAtLineStart = false);
417
418 /// Move right
419 virtual bool MoveRight(int noPositions = 1, int flags = 0);
420
421 /// Move left
422 virtual bool MoveLeft(int noPositions = 1, int flags = 0);
423
424 /// Move up
425 virtual bool MoveUp(int noLines = 1, int flags = 0);
426
427 /// Move up
428 virtual bool MoveDown(int noLines = 1, int flags = 0);
429
430 /// Move to the end of the line
431 virtual bool MoveToLineEnd(int flags = 0);
432
433 /// Move to the start of the line
434 virtual bool MoveToLineStart(int flags = 0);
435
436 /// Move to the end of the paragraph
437 virtual bool MoveToParagraphEnd(int flags = 0);
438
439 /// Move to the start of the paragraph
440 virtual bool MoveToParagraphStart(int flags = 0);
441
442 /// Move to the start of the buffer
443 virtual bool MoveHome(int flags = 0);
444
445 /// Move to the end of the buffer
446 virtual bool MoveEnd(int flags = 0);
447
448 /// Move n pages up
449 virtual bool PageUp(int noPages = 1, int flags = 0);
450
451 /// Move n pages down
452 virtual bool PageDown(int noPages = 1, int flags = 0);
453
454 /// Move n words left
455 virtual bool WordLeft(int noPages = 1, int flags = 0);
456
457 /// Move n words right
458 virtual bool WordRight(int noPages = 1, int flags = 0);
459
460 /// Returns the buffer associated with the control.
461 wxRichTextBuffer& GetBuffer() { return m_buffer; }
462 const wxRichTextBuffer& GetBuffer() const { return m_buffer; }
463
464 /// Start batching undo history for commands.
465 virtual bool BeginBatchUndo(const wxString& cmdName) { return m_buffer.BeginBatchUndo(cmdName); }
466
467 /// End batching undo history for commands.
468 virtual bool EndBatchUndo() { return m_buffer.EndBatchUndo(); }
469
470 /// Are we batching undo history for commands?
471 virtual bool BatchingUndo() const { return m_buffer.BatchingUndo(); }
472
473 /// Start suppressing undo history for commands.
474 virtual bool BeginSuppressUndo() { return m_buffer.BeginSuppressUndo(); }
475
476 /// End suppressing undo history for commands.
477 virtual bool EndSuppressUndo() { return m_buffer.EndSuppressUndo(); }
478
479 /// Are we suppressing undo history for commands?
480 virtual bool SuppressingUndo() const { return m_buffer.SuppressingUndo(); }
481
482 /// Test if this whole range has character attributes of the specified kind. If any
483 /// of the attributes are different within the range, the test fails. You
484 /// can use this to implement, for example, bold button updating. style must have
485 /// flags indicating which attributes are of interest.
486 virtual bool HasCharacterAttributes(const wxRichTextRange& range, const wxTextAttrEx& style) const
487 {
488 return GetBuffer().HasCharacterAttributes(range, style);
489 }
490 virtual bool HasCharacterAttributes(const wxRichTextRange& range, const wxRichTextAttr& style) const
491 {
492 return GetBuffer().HasCharacterAttributes(range, style);
493 }
494
495 /// Test if this whole range has paragraph attributes of the specified kind. If any
496 /// of the attributes are different within the range, the test fails. You
497 /// can use this to implement, for example, centering button updating. style must have
498 /// flags indicating which attributes are of interest.
499 virtual bool HasParagraphAttributes(const wxRichTextRange& range, const wxTextAttrEx& style) const
500 {
501 return GetBuffer().HasParagraphAttributes(range, style);
502 }
503 virtual bool HasParagraphAttributes(const wxRichTextRange& range, const wxRichTextAttr& style) const
504 {
505 return GetBuffer().HasParagraphAttributes(range, style);
506 }
507
508 /// Is all of the selection bold?
509 virtual bool IsSelectionBold();
510
511 /// Is all of the selection italics?
512 virtual bool IsSelectionItalics();
513
514 /// Is all of the selection underlined?
515 virtual bool IsSelectionUnderlined();
516
517 /// Is all of the selection aligned according to the specified flag?
518 virtual bool IsSelectionAligned(wxTextAttrAlignment alignment);
519
520 /// Apply bold to the selection
521 virtual bool ApplyBoldToSelection();
522
523 /// Apply italic to the selection
524 virtual bool ApplyItalicToSelection();
525
526 /// Apply underline to the selection
527 virtual bool ApplyUnderlineToSelection();
528
529 /// Apply alignment to the selection
530 virtual bool ApplyAlignmentToSelection(wxTextAttrAlignment alignment);
531
532 /// Apply a named style to the selection
533 virtual void ApplyStyle(wxRichTextStyleDefinition* def);
534
535 /// Set style sheet, if any.
536 void SetStyleSheet(wxRichTextStyleSheet* styleSheet) { GetBuffer().SetStyleSheet(styleSheet); }
537 wxRichTextStyleSheet* GetStyleSheet() const { return GetBuffer().GetStyleSheet(); }
538
539 /// Apply the style sheet to the buffer, for example if the styles have changed.
540 bool ApplyStyleSheet(wxRichTextStyleSheet* styleSheet = NULL);
541
542 // Command handlers
543
544 void Command(wxCommandEvent& event);
545 void OnDropFiles(wxDropFilesEvent& event);
546
547 void OnCut(wxCommandEvent& event);
548 void OnCopy(wxCommandEvent& event);
549 void OnPaste(wxCommandEvent& event);
550 void OnUndo(wxCommandEvent& event);
551 void OnRedo(wxCommandEvent& event);
552 void OnSelectAll(wxCommandEvent& event);
553 void OnClear(wxCommandEvent& event);
554
555 void OnUpdateCut(wxUpdateUIEvent& event);
556 void OnUpdateCopy(wxUpdateUIEvent& event);
557 void OnUpdatePaste(wxUpdateUIEvent& event);
558 void OnUpdateUndo(wxUpdateUIEvent& event);
559 void OnUpdateRedo(wxUpdateUIEvent& event);
560 void OnUpdateSelectAll(wxUpdateUIEvent& event);
561 void OnUpdateClear(wxUpdateUIEvent& event);
562
563 // Show a context menu for Rich Edit controls (the standard
564 // EDIT control has one already)
565 void OnContextMenu(wxContextMenuEvent& event);
566
567 // Event handlers
568
569 /// Painting
570 void OnPaint(wxPaintEvent& event);
571 void OnEraseBackground(wxEraseEvent& event);
572
573 /// Left-click
574 void OnLeftClick(wxMouseEvent& event);
575
576 /// Left-up
577 void OnLeftUp(wxMouseEvent& event);
578
579 /// Motion
580 void OnMoveMouse(wxMouseEvent& event);
581
582 /// Left-double-click
583 void OnLeftDClick(wxMouseEvent& event);
584
585 /// Middle-click
586 void OnMiddleClick(wxMouseEvent& event);
587
588 /// Right-click
589 void OnRightClick(wxMouseEvent& event);
590
591 /// Key press
592 void OnChar(wxKeyEvent& event);
593
594 /// Sizing
595 void OnSize(wxSizeEvent& event);
596
597 /// Setting/losing focus
598 void OnSetFocus(wxFocusEvent& event);
599 void OnKillFocus(wxFocusEvent& event);
600
601 /// Idle-time processing
602 void OnIdle(wxIdleEvent& event);
603
604 /// Scrolling
605 void OnScroll(wxScrollWinEvent& event);
606
607 /// Set font, and also default attributes
608 virtual bool SetFont(const wxFont& font);
609
610 /// Set up scrollbars, e.g. after a resize
611 virtual void SetupScrollbars(bool atTop = false);
612
613 /// Keyboard navigation
614 virtual bool KeyboardNavigate(int keyCode, int flags);
615
616 /// Paint the background
617 virtual void PaintBackground(wxDC& dc);
618
619 /// Recreate buffer bitmap if necessary
620 virtual bool RecreateBuffer(const wxSize& size = wxDefaultSize);
621
622 /// Set the selection
623 virtual void DoSetSelection(long from, long to, bool scrollCaret = true);
624
625 /// Write text
626 virtual void DoWriteText(const wxString& value, bool selectionOnly = true);
627
628 /// Send an update event
629 virtual bool SendUpdateEvent();
630
631 /// Init command event
632 void InitCommandEvent(wxCommandEvent& event) const;
633
634 /// do the window-specific processing after processing the update event
635 // (duplicated code from wxTextCtrlBase)
636 #if !wxRICHTEXT_DERIVES_FROM_TEXTCTRLBASE
637 virtual void DoUpdateWindowUI(wxUpdateUIEvent& event);
638 #endif
639
640 /// Should we inherit colours?
641 virtual bool ShouldInheritColours() const { return false; }
642
643 /// Position the caret
644 virtual void PositionCaret();
645
646 /// Extend the selection, returning true if the selection was
647 /// changed. Selections are in caret positions.
648 virtual bool ExtendSelection(long oldPosition, long newPosition, int flags);
649
650 /// Scroll into view. This takes a _caret_ position.
651 virtual bool ScrollIntoView(long position, int keyCode);
652
653 /// The caret position is the character position just before the caret.
654 /// A value of -1 means the caret is at the start of the buffer.
655 void SetCaretPosition(long position, bool showAtLineStart = false) ;
656 long GetCaretPosition() const { return m_caretPosition; }
657
658 /// The adjusted caret position is the character position adjusted to take
659 /// into account whether we're at the start of a paragraph, in which case
660 /// style information should be taken from the next position, not current one.
661 long GetAdjustedCaretPosition(long caretPos) const;
662
663 /// Move caret one visual step forward: this may mean setting a flag
664 /// and keeping the same position if we're going from the end of one line
665 /// to the start of the next, which may be the exact same caret position.
666 void MoveCaretForward(long oldPosition) ;
667
668 /// Move caret one visual step forward: this may mean setting a flag
669 /// and keeping the same position if we're going from the end of one line
670 /// to the start of the next, which may be the exact same caret position.
671 void MoveCaretBack(long oldPosition) ;
672
673 /// Get the caret height and position for the given character position
674 bool GetCaretPositionForIndex(long position, wxRect& rect);
675
676 /// Gets the line for the visible caret position. If the caret is
677 /// shown at the very end of the line, it means the next character is actually
678 /// on the following line. So let's get the line we're expecting to find
679 /// if this is the case.
680 wxRichTextLine* GetVisibleLineForCaretPosition(long caretPosition) const;
681
682 /// Gets the command processor
683 wxCommandProcessor* GetCommandProcessor() const { return GetBuffer().GetCommandProcessor(); }
684
685 /// Delete content if there is a selection, e.g. when pressing a key.
686 /// Returns the new caret position in newPos, or leaves it if there
687 /// was no action.
688 bool DeleteSelectedContent(long* newPos= NULL);
689
690 /// Transform logical to physical
691 wxPoint GetPhysicalPoint(const wxPoint& ptLogical) const;
692
693 /// Transform physical to logical
694 wxPoint GetLogicalPoint(const wxPoint& ptPhysical) const;
695
696 /// Finds the caret position for the next word. Direction
697 /// is 1 (forward) or -1 (backwards).
698 virtual long FindNextWordPosition(int direction = 1) const;
699
700 /// Is the given position visible on the screen?
701 bool IsPositionVisible(long pos) const;
702
703 /// Returns the first visible position in the current view
704 long GetFirstVisiblePosition() const;
705
706 /// Returns the caret position since the default formatting was changed. As
707 /// soon as this position changes, we no longer reflect the default style
708 /// in the UI. A value of -2 means that we should only reflect the style of the
709 /// content under the caret.
710 long GetCaretPositionForDefaultStyle() const { return m_caretPositionForDefaultStyle; }
711
712 /// Set the caret position for the default style that the user is selecting.
713 void SetCaretPositionForDefaultStyle(long pos) { m_caretPositionForDefaultStyle = pos; }
714
715 /// Should the UI reflect the default style chosen by the user, rather than the style under
716 /// the caret?
717 bool IsDefaultStyleShowing() const { return m_caretPositionForDefaultStyle != -2; }
718
719 /// Convenience function that tells the control to start reflecting the default
720 /// style, since the user is changing it.
721 void SetAndShowDefaultStyle(const wxRichTextAttr& attr)
722 {
723 SetDefaultStyle(attr);
724 SetCaretPositionForDefaultStyle(GetCaretPosition());
725 }
726
727 // Implementation
728
729 #if wxRICHTEXT_DERIVES_FROM_TEXTCTRLBASE
730 WX_FORWARD_TO_SCROLL_HELPER()
731 #endif
732
733 // Overrides
734 protected:
735
736 virtual wxSize DoGetBestSize() const ;
737
738 // Data members
739 private:
740
741 /// Allows nested Freeze/Thaw
742 int m_freezeCount;
743
744 /// Buffer bitmap
745 wxBitmap m_bufferBitmap;
746
747 /// Text buffer
748 wxRichTextBuffer m_buffer;
749
750 #if !wxRICHTEXT_DERIVES_FROM_TEXTCTRLBASE
751 /// Filename
752 wxString m_filename;
753 #endif
754
755 wxMenu* m_contextMenu;
756
757 /// Caret position (1 less than the character position, so -1 is the
758 /// first caret position).
759 long m_caretPosition;
760
761 /// Caret position when the default formatting has been changed. As
762 /// soon as this position changes, we no longer reflect the default style
763 /// in the UI.
764 long m_caretPositionForDefaultStyle;
765
766 /// Selection range in character positions. -2, -2 means no selection.
767 wxRichTextRange m_selectionRange;
768
769 /// Anchor so we know how to extend the selection
770 /// It's a caret position since it's between two characters.
771 long m_selectionAnchor;
772
773 /// Are we editable?
774 bool m_editable;
775
776 /// Are we showing the caret position at the start of a line
777 /// instead of at the end of the previous one?
778 bool m_caretAtLineStart;
779
780 /// Are we dragging a selection?
781 bool m_dragging;
782
783 /// Start position for drag
784 wxPoint m_dragStart;
785
786 /// Do we need full layout in idle?
787 bool m_fullLayoutRequired;
788 wxLongLong m_fullLayoutTime;
789 long m_fullLayoutSavedPosition;
790
791 /// Threshold for doing delayed layout
792 long m_delayedLayoutThreshold;
793 };
794
795 /*!
796 * wxRichTextEvent - the event class for wxRichTextCtrl notifications
797 */
798
799 class WXDLLIMPEXP_RICHTEXT wxRichTextEvent : public wxNotifyEvent
800 {
801 public:
802 wxRichTextEvent(wxEventType commandType = wxEVT_NULL, int winid = 0)
803 : wxNotifyEvent(commandType, winid),
804 m_itemIndex(-1), m_flags(0)
805 { }
806
807 wxRichTextEvent(const wxRichTextEvent& event)
808 : wxNotifyEvent(event),
809 m_itemIndex(event.m_itemIndex), m_flags(event.m_flags)
810 { }
811
812 int GetIndex() const { return m_itemIndex; }
813 void SetIndex(int n) { m_itemIndex = n; }
814
815 int GetFlags() const { return m_flags; }
816 void SetFlags(int flags) { m_flags = flags; }
817
818 virtual wxEvent *Clone() const { return new wxRichTextEvent(*this); }
819
820 protected:
821 int m_itemIndex;
822 int m_flags;
823
824 private:
825 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxRichTextEvent)
826 };
827
828 /*!
829 * wxRichTextCtrl event macros
830 */
831
832 BEGIN_DECLARE_EVENT_TYPES()
833 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_RICHTEXT, wxEVT_COMMAND_RICHTEXT_ITEM_SELECTED, 2600)
834 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_RICHTEXT, wxEVT_COMMAND_RICHTEXT_ITEM_DESELECTED, 2601)
835 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_RICHTEXT, wxEVT_COMMAND_RICHTEXT_LEFT_CLICK, 2602)
836 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_RICHTEXT, wxEVT_COMMAND_RICHTEXT_RIGHT_CLICK, 2603)
837 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_RICHTEXT, wxEVT_COMMAND_RICHTEXT_MIDDLE_CLICK, 2604)
838 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_RICHTEXT, wxEVT_COMMAND_RICHTEXT_LEFT_DCLICK, 2605)
839 DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_RICHTEXT, wxEVT_COMMAND_RICHTEXT_RETURN, 2606)
840 END_DECLARE_EVENT_TYPES()
841
842 typedef void (wxEvtHandler::*wxRichTextEventFunction)(wxRichTextEvent&);
843
844 #define EVT_RICHTEXT_ITEM_SELECTED(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RICHTEXT_ITEM_SELECTED, id, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxRichTextEventFunction, & fn ), NULL ),
845 #define EVT_RICHTEXT_ITEM_DESELECTED(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RICHTEXT_ITEM_DESELECTED, id, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxRichTextEventFunction, & fn ), NULL ),
846 #define EVT_RICHTEXT_LEFT_CLICK(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RICHTEXT_LEFT_CLICK, id, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxRichTextEventFunction, & fn ), NULL ),
847 #define EVT_RICHTEXT_RIGHT_CLICK(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RICHTEXT_RIGHT_CLICK, id, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxRichTextEventFunction, & fn ), NULL ),
848 #define EVT_RICHTEXT_MIDDLE_CLICK(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RICHTEXT_MIDDLE_CLICK, id, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxRichTextEventFunction, & fn ), NULL ),
849 #define EVT_RICHTEXT_LEFT_DCLICK(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RICHTEXT_LEFT_DCLICK, id, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxRichTextEventFunction, & fn ), NULL ),
850 #define EVT_RICHTEXT_RETURN(id, fn) DECLARE_EVENT_TABLE_ENTRY( wxEVT_COMMAND_RICHTEXT_RETURN, id, -1, (wxObjectEventFunction) (wxEventFunction) wxStaticCastEvent( wxRichTextEventFunction, & fn ), NULL ),
851
852 #endif
853 // wxUSE_RICHTEXT
854
855 #endif
856 // _WX_RICHTEXTCTRL_H_