1 /*-*- c++ -*-********************************************************
2 * wxLwindow.h : a scrolled Window for displaying/entering rich text*
4 * (C) 1998,1999 by Karsten Ballüder (Ballueder@usa.net) *
7 *******************************************************************/
12 # pragma interface "wxlwindow.h"
21 #ifndef WXLOWIN_MENU_FIRST
22 # define WXLOWIN_MENU_FIRST 12000
27 WXLOWIN_MENU_LARGER
= WXLOWIN_MENU_FIRST
,
29 WXLOWIN_MENU_UNDERLINE_ON
,
30 WXLOWIN_MENU_UNDERLINE_OFF
,
32 WXLOWIN_MENU_BOLD_OFF
,
33 WXLOWIN_MENU_ITALICS_ON
,
34 WXLOWIN_MENU_ITALICS_OFF
,
36 WXLOWIN_MENU_TYPEWRITER
,
37 WXLOWIN_MENU_SANSSERIF
,
40 WXLOWIN_MENU_DBLCLICK
,
41 WXLOWIN_MENU_MOUSEMOVE
,
42 WXLOWIN_MENU_LAST
= WXLOWIN_MENU_MOUSEMOVE
46 This class is a rich text editing widget.
48 class wxLayoutWindow
: public wxScrolledWindow
52 @param parent parent window to display this panel in
54 wxLayoutWindow(wxWindow
*parent
);
57 virtual ~wxLayoutWindow();
59 /**@name Editing functionality */
61 /// Clears the window and sets default parameters.
62 void Clear(int family
= wxROMAN
,
69 /** Sets a background image, only used on screen, not on printouts.
70 @param bitmap a pointer to a wxBitmap or NULL to remove it
72 void SetBackgroundBitmap(wxBitmap
*bitmap
= NULL
)
74 if(m_BGbitmap
) delete m_BGbitmap
;
77 /// Enable or disable editing, i.e. processing of keystrokes.
78 void SetEditable(bool toggle
) { m_Editable
= toggle
; }
79 /// Query whether list can be edited by user.
80 bool IsEditable(void) const { return m_Editable
; }
81 /// Pastes text from clipboard.
83 /// Copies selection to clipboard.
85 /// Copies selection to clipboard and deletes it.
89 bool Find(const wxString
&needle
,
90 wxPoint
* fromWhere
= NULL
);
92 void EnablePopup(bool enable
= true) { m_DoPopupMenu
= enable
; }
94 /** Sets the wrap margin.
95 @param margin set this to 0 to disable it
97 void SetWrapMargin(CoordType margin
) { m_WrapMargin
= margin
; }
99 /** Redraws the window.
100 Internally, this stores the parameter and calls a refresh on
101 wxMSW, draws directly on wxGTK.
103 void DoPaint(const wxRect
*updateRect
);
106 virtual long MSWGetDlgCode();
109 /// if exact == false, assume 50% extra size for the future
110 void ResizeScrollbars(bool exact
= false); // don't change this to true!
112 /// if the flag is true, we send events when user clicks on embedded objects
113 inline void SetMouseTracking(bool doIt
= true) { m_doSendEvents
= doIt
; }
115 /* Returns a pointer to the wxLayoutList object.
118 wxLayoutList
* GetLayoutList(void) { return m_llist
; }
120 /**@name Callbacks */
122 void OnPaint(wxPaintEvent
&event
);
123 void OnChar(wxKeyEvent
& event
);
124 void OnKeyUp(wxKeyEvent
& event
);
125 void OnMenu(wxCommandEvent
& event
);
126 void OnLeftMouseClick(wxMouseEvent
& event
) { OnMouse(WXLOWIN_MENU_LCLICK
, event
); }
127 void OnRightMouseClick(wxMouseEvent
& event
) { OnMouse(WXLOWIN_MENU_RCLICK
, event
); }
128 void OnMouseDblClick(wxMouseEvent
& event
) { OnMouse(WXLOWIN_MENU_DBLCLICK
, event
); }
129 void OnMouseMove(wxMouseEvent
&event
) { OnMouse(WXLOWIN_MENU_MOUSEMOVE
, event
) ; }
130 void OnSetFocus(wxFocusEvent
&ev
);
131 void OnKillFocus(wxFocusEvent
&ev
);
134 /// Creates a wxMenu for use as a format popup.
135 static wxMenu
* MakeFormatMenu(void);
136 /**@name Dirty flag handling for optimisations. */
139 void SetDirty(void) { m_Dirty
= true; }
140 /// Query whether window needs redrawing.
141 bool IsDirty(void) const { return m_Dirty
; }
142 /// Reset dirty flag.
143 void ResetDirty(void) { m_Dirty
= false; }
145 /// Redraws the window, used by DoPaint() or OnPaint().
146 void InternalPaint(const wxRect
*updateRect
);
148 /// Has list been modified/edited?
149 bool IsModified(void) const { return m_Modified
; }
150 /// Mark list as modified or unchanged.
151 void SetModified(bool modified
= true) { m_Modified
= modified
; }
154 /// generic function for mouse events processing
155 void OnMouse(int eventId
, wxMouseEvent
& event
);
157 void ScrollToCursor(void);
158 /// for sending events
160 /// Shall we send events?
162 /// Where does the current view start?
163 int m_ViewStartX
; int m_ViewStartY
;
164 /// Do we currently have the focus?
166 /// do we handle clicks of the right mouse button?
168 /// Should InternalPaint() scroll to cursor.
169 bool m_ScrollToCursor
;
170 /// Do we currently have a non-standard cursor?
173 wxMenu
* m_PopupMenu
;
174 /// for derived classes, set when mouse is clicked
175 wxPoint m_ClickPosition
;
176 /// for scrollbar calculations:
181 /// The layout list to be displayed.
182 wxLayoutList
*m_llist
;
183 /// Can user edit the window?
185 /// Are we currently building a selection with the keyboard?
188 CoordType m_WrapMargin
;
189 /// Is list dirty (for redraws, internal use)?
191 /// Has list been edited?
195 wxPoint m_bitmapSize
;
196 /// a pointer to a bitmap for the background
197 wxBitmap
*m_BGbitmap
;
198 DECLARE_EVENT_TABLE()