]>
git.saurik.com Git - wxWidgets.git/blob - user/wxLayout/wxlwindow.h
1 /*-*- c++ -*-********************************************************
2 * wxLwindow.h : a scrolled Window for displaying/entering rich text*
4 * (C) 1998 by Karsten Ballüder (Ballueder@usa.net) *
7 *******************************************************************/
12 # pragma interface "wxlwindow.h"
23 WXLOWIN_MENU_LARGER
= 12000,
25 WXLOWIN_MENU_UNDERLINE
,
29 WXLOWIN_MENU_TYPEWRITER
,
30 WXLOWIN_MENU_SANSSERIF
,
37 class wxLayoutWindow
: public wxScrolledWindow
41 @param parent parent window to display this panel in
43 wxLayoutWindow(wxWindow
*parent
);
46 virtual ~wxLayoutWindow();
48 /* Returns a reference to the wxLayoutList object.
51 wxLayoutList
& GetLayoutList(void) { return m_llist
; }
53 // clears the window and sets default parameters:
54 void Clear(int family
= wxROMAN
, int size
=12, int style
=wxNORMAL
, int weight
=wxNORMAL
,
55 int underline
=0, char const *fg
="black", char const
58 GetLayoutList().Clear(family
,size
,style
,weight
,underline
,fg
,bg
);
59 SetBackgroundColour( *GetLayoutList().GetDefaults()->GetBGColour());
65 // NB: these functions are used as event handlers and must not be virtual
66 void OnPaint(wxPaintEvent
&event
);
67 void OnLeftMouseClick(wxMouseEvent
& event
)
68 { OnMouse(WXLOWIN_MENU_LCLICK
, event
); }
69 void OnRightMouseClick(wxMouseEvent
& event
)
70 { OnMouse(WXLOWIN_MENU_RCLICK
, event
); }
71 void OnMouseDblClick(wxMouseEvent
& event
)
72 { OnMouse(WXLOWIN_MENU_DBLCLICK
, event
); }
74 void OnChar(wxKeyEvent
& event
);
75 void OnMenu(wxCommandEvent
& event
);
77 void EnablePopup(bool enable
= true) { m_DoPopupMenu
= enable
; }
78 /// gets called by either Update() or OnPaint()
79 void DoPaint(bool cursoronly
= false);
82 virtual long MSWGetDlgCode();
85 /// if exact == false, assume 50% extra size for the future
86 void UpdateScrollbars(bool exact
= false); // don't change this to true!
88 wxMenu
* MakeFormatMenu(void);
90 /// if the flag is true, we send events when user clicks on embedded objects
91 inline void SetMouseTracking(bool doIt
= true) { m_doSendEvents
= doIt
; }
94 bool IsDirty() const { return m_llist
.IsDirty(); }
95 void ResetDirty() { m_llist
.ResetDirty(); }
97 void OnSetFocus(wxFocusEvent
&ev
);
98 void OnKillFocus(wxFocusEvent
&ev
);
100 /// Deletes from cursor to end of line.
101 void DeleteToEndOfLine(void);
102 /// Deletes everything left of cursor.
103 void DeleteToBeginOfLine(void);
104 /// Goto end of line.
105 void GotoEndOfLine(void);
106 /// Goto begin of line.
107 void GotoBeginOfLine(void);
109 void DeleteLine(void);
110 /// generic function for mouse events processing
111 void OnMouse(int eventId
, wxMouseEvent
& event
);
113 void ScrollToCursor(void);
115 /// repaint if needed
118 /// for sending events
122 /// the layout list to be displayed
123 wxLayoutList m_llist
;
125 /// Where does the current view start?
126 int m_ViewStartX
; int m_ViewStartY
;
128 /// do we have unsaved data?
131 /// do we handle clicks of the right mouse button?
134 wxMenu
* m_PopupMenu
;
135 /// for derived classes, set when mouse is clicked
136 wxPoint m_ClickPosition
;
137 /// for scrollbar calculations:
144 wxPoint m_bitmapSize
;
146 DECLARE_EVENT_TABLE()