1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/palmos/textctrl.cpp
4 // Author: William Osborne - minimal working wxPalmOS port
8 // Copyright: (c) William Osborne
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
17 #pragma implementation "textctrl.h"
20 // ----------------------------------------------------------------------------
22 // ----------------------------------------------------------------------------
24 // For compilers that support precompilation, includes "wx.h".
25 #include "wx/wxprec.h"
34 #include "wx/textctrl.h"
35 #include "wx/settings.h"
44 #include "wx/module.h"
47 #include "wx/clipbrd.h"
50 #include "wx/textfile.h"
52 #include "wx/palmos/private.h"
53 #include "wx/palmos/winundef.h"
59 #include "wx/palmos/missing.h"
61 #endif // wxUSE_RICHEDIT
63 // ----------------------------------------------------------------------------
65 // ----------------------------------------------------------------------------
69 // this module initializes RichEdit DLL(s) if needed
70 class wxRichEditModule
: public wxModule
73 virtual bool OnInit();
74 virtual void OnExit();
76 // load the richedit DLL of at least of required version
77 static bool Load(int version
= 1);
80 // the handles to richedit 1.0 and 2.0 (or 3.0) DLLs
81 static HINSTANCE ms_hRichEdit
[2];
83 DECLARE_DYNAMIC_CLASS(wxRichEditModule
)
86 HINSTANCE
wxRichEditModule::ms_hRichEdit
[2] = { NULL
, NULL
};
88 IMPLEMENT_DYNAMIC_CLASS(wxRichEditModule
, wxModule
)
90 #endif // wxUSE_RICHEDIT
92 // ----------------------------------------------------------------------------
93 // event tables and other macros
94 // ----------------------------------------------------------------------------
96 #if wxUSE_EXTENDED_RTTI
97 WX_DEFINE_FLAGS( wxTextCtrlStyle
)
99 wxBEGIN_FLAGS( wxTextCtrlStyle
)
100 // new style border flags, we put them first to
101 // use them for streaming out
102 wxFLAGS_MEMBER(wxBORDER_SIMPLE
)
103 wxFLAGS_MEMBER(wxBORDER_SUNKEN
)
104 wxFLAGS_MEMBER(wxBORDER_DOUBLE
)
105 wxFLAGS_MEMBER(wxBORDER_RAISED
)
106 wxFLAGS_MEMBER(wxBORDER_STATIC
)
107 wxFLAGS_MEMBER(wxBORDER_NONE
)
109 // old style border flags
110 wxFLAGS_MEMBER(wxSIMPLE_BORDER
)
111 wxFLAGS_MEMBER(wxSUNKEN_BORDER
)
112 wxFLAGS_MEMBER(wxDOUBLE_BORDER
)
113 wxFLAGS_MEMBER(wxRAISED_BORDER
)
114 wxFLAGS_MEMBER(wxSTATIC_BORDER
)
115 wxFLAGS_MEMBER(wxBORDER
)
117 // standard window styles
118 wxFLAGS_MEMBER(wxTAB_TRAVERSAL
)
119 wxFLAGS_MEMBER(wxCLIP_CHILDREN
)
120 wxFLAGS_MEMBER(wxTRANSPARENT_WINDOW
)
121 wxFLAGS_MEMBER(wxWANTS_CHARS
)
122 wxFLAGS_MEMBER(wxFULL_REPAINT_ON_RESIZE
)
123 wxFLAGS_MEMBER(wxALWAYS_SHOW_SB
)
124 wxFLAGS_MEMBER(wxVSCROLL
)
125 wxFLAGS_MEMBER(wxHSCROLL
)
127 wxFLAGS_MEMBER(wxTE_PROCESS_ENTER
)
128 wxFLAGS_MEMBER(wxTE_PROCESS_TAB
)
129 wxFLAGS_MEMBER(wxTE_MULTILINE
)
130 wxFLAGS_MEMBER(wxTE_PASSWORD
)
131 wxFLAGS_MEMBER(wxTE_READONLY
)
132 wxFLAGS_MEMBER(wxHSCROLL
)
133 wxFLAGS_MEMBER(wxTE_RICH
)
134 wxFLAGS_MEMBER(wxTE_RICH2
)
135 wxFLAGS_MEMBER(wxTE_AUTO_URL
)
136 wxFLAGS_MEMBER(wxTE_NOHIDESEL
)
137 wxFLAGS_MEMBER(wxTE_LEFT
)
138 wxFLAGS_MEMBER(wxTE_CENTRE
)
139 wxFLAGS_MEMBER(wxTE_RIGHT
)
140 wxFLAGS_MEMBER(wxTE_DONTWRAP
)
141 wxFLAGS_MEMBER(wxTE_LINEWRAP
)
142 wxFLAGS_MEMBER(wxTE_WORDWRAP
)
144 wxEND_FLAGS( wxTextCtrlStyle
)
146 IMPLEMENT_DYNAMIC_CLASS_XTI(wxTextCtrl
, wxControl
,"wx/textctrl.h")
148 wxBEGIN_PROPERTIES_TABLE(wxTextCtrl
)
149 wxEVENT_PROPERTY( TextUpdated
, wxEVT_COMMAND_TEXT_UPDATED
, wxCommandEvent
)
150 wxEVENT_PROPERTY( TextEnter
, wxEVT_COMMAND_TEXT_ENTER
, wxCommandEvent
)
152 wxPROPERTY( Font
, wxFont
, SetFont
, GetFont
, EMPTY_MACROVALUE
, 0 /*flags*/ , wxT("Helpstring") , wxT("group") )
153 wxPROPERTY( Value
, wxString
, SetValue
, GetValue
, wxString() , 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
154 wxPROPERTY_FLAGS( WindowStyle
, wxTextCtrlStyle
, long , SetWindowStyleFlag
, GetWindowStyleFlag
, EMPTY_MACROVALUE
, 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // style
155 wxEND_PROPERTIES_TABLE()
157 wxBEGIN_HANDLERS_TABLE(wxTextCtrl
)
158 wxEND_HANDLERS_TABLE()
160 wxCONSTRUCTOR_6( wxTextCtrl
, wxWindow
* , Parent
, wxWindowID
, Id
, wxString
, Value
, wxPoint
, Position
, wxSize
, Size
, long , WindowStyle
)
162 IMPLEMENT_DYNAMIC_CLASS(wxTextCtrl
, wxControl
)
166 BEGIN_EVENT_TABLE(wxTextCtrl
, wxControl
)
167 EVT_CHAR(wxTextCtrl::OnChar
)
168 EVT_DROP_FILES(wxTextCtrl::OnDropFiles
)
171 EVT_RIGHT_UP(wxTextCtrl::OnRightClick
)
174 EVT_MENU(wxID_CUT
, wxTextCtrl::OnCut
)
175 EVT_MENU(wxID_COPY
, wxTextCtrl::OnCopy
)
176 EVT_MENU(wxID_PASTE
, wxTextCtrl::OnPaste
)
177 EVT_MENU(wxID_UNDO
, wxTextCtrl::OnUndo
)
178 EVT_MENU(wxID_REDO
, wxTextCtrl::OnRedo
)
179 EVT_MENU(wxID_CLEAR
, wxTextCtrl::OnDelete
)
180 EVT_MENU(wxID_SELECTALL
, wxTextCtrl::OnSelectAll
)
182 EVT_UPDATE_UI(wxID_CUT
, wxTextCtrl::OnUpdateCut
)
183 EVT_UPDATE_UI(wxID_COPY
, wxTextCtrl::OnUpdateCopy
)
184 EVT_UPDATE_UI(wxID_PASTE
, wxTextCtrl::OnUpdatePaste
)
185 EVT_UPDATE_UI(wxID_UNDO
, wxTextCtrl::OnUpdateUndo
)
186 EVT_UPDATE_UI(wxID_REDO
, wxTextCtrl::OnUpdateRedo
)
187 EVT_UPDATE_UI(wxID_CLEAR
, wxTextCtrl::OnUpdateDelete
)
188 EVT_UPDATE_UI(wxID_SELECTALL
, wxTextCtrl::OnUpdateSelectAll
)
190 EVT_SET_FOCUS(wxTextCtrl::OnSetFocus
)
193 // ============================================================================
195 // ============================================================================
197 // ----------------------------------------------------------------------------
199 // ----------------------------------------------------------------------------
201 void wxTextCtrl::Init()
205 wxTextCtrl::~wxTextCtrl()
209 bool wxTextCtrl::Create(wxWindow
*parent
, wxWindowID id
,
210 const wxString
& value
,
214 const wxValidator
& validator
,
215 const wxString
& name
)
220 WXDWORD
wxTextCtrl::MSWGetStyle(long style
, WXDWORD
*exstyle
) const
225 // ----------------------------------------------------------------------------
226 // set/get the controls text
227 // ----------------------------------------------------------------------------
229 wxString
wxTextCtrl::GetValue() const
236 wxString
wxTextCtrl::GetRange(long from
, long to
) const
243 void wxTextCtrl::SetValue(const wxString
& value
)
247 #if wxUSE_RICHEDIT && (!wxUSE_UNICODE || wxUSE_UNICODE_MSLU)
249 // TODO: using memcpy() would improve performance a lot for big amounts of text
252 wxRichEditStreamIn(DWORD dwCookie
, BYTE
*buf
, LONG cb
, LONG
*pcb
)
257 // helper struct used to pass parameters from wxTextCtrl to wxRichEditStreamOut
258 struct wxStreamOutData
265 wxRichEditStreamOut(DWORD_PTR dwCookie
, BYTE
*buf
, LONG cb
, LONG
*pcb
)
271 #if wxUSE_UNICODE_MSLU
272 #define UNUSED_IF_MSLU(param)
274 #define UNUSED_IF_MSLU(param) param
278 wxTextCtrl::StreamIn(const wxString
& value
,
279 wxFontEncoding
UNUSED_IF_MSLU(encoding
),
285 #if !wxUSE_UNICODE_MSLU
288 wxTextCtrl::StreamOut(wxFontEncoding encoding
, bool selectionOnly
) const
295 #endif // !wxUSE_UNICODE_MSLU
297 #endif // wxUSE_RICHEDIT
299 void wxTextCtrl::WriteText(const wxString
& value
)
303 void wxTextCtrl::DoWriteText(const wxString
& value
, bool selectionOnly
)
307 void wxTextCtrl::AppendText(const wxString
& text
)
311 void wxTextCtrl::Clear()
315 // ----------------------------------------------------------------------------
316 // Clipboard operations
317 // ----------------------------------------------------------------------------
319 void wxTextCtrl::Copy()
323 void wxTextCtrl::Cut()
327 void wxTextCtrl::Paste()
331 bool wxTextCtrl::HasSelection() const
336 bool wxTextCtrl::CanCopy() const
341 bool wxTextCtrl::CanCut() const
346 bool wxTextCtrl::CanPaste() const
351 // ----------------------------------------------------------------------------
353 // ----------------------------------------------------------------------------
355 void wxTextCtrl::SetEditable(bool editable
)
359 void wxTextCtrl::SetInsertionPoint(long pos
)
363 void wxTextCtrl::SetInsertionPointEnd()
367 long wxTextCtrl::GetInsertionPoint() const
372 wxTextPos
wxTextCtrl::GetLastPosition() const
377 // If the return values from and to are the same, there is no
379 void wxTextCtrl::GetSelection(long* from
, long* to
) const
383 bool wxTextCtrl::IsEditable() const
388 // ----------------------------------------------------------------------------
390 // ----------------------------------------------------------------------------
392 void wxTextCtrl::SetSelection(long from
, long to
)
396 void wxTextCtrl::DoSetSelection(long from
, long to
, bool scrollCaret
)
400 // ----------------------------------------------------------------------------
401 // Working with files
402 // ----------------------------------------------------------------------------
404 bool wxTextCtrl::LoadFile(const wxString
& file
)
409 // ----------------------------------------------------------------------------
411 // ----------------------------------------------------------------------------
413 void wxTextCtrl::Replace(long from
, long to
, const wxString
& value
)
417 void wxTextCtrl::Remove(long from
, long to
)
421 bool wxTextCtrl::IsModified() const
426 void wxTextCtrl::MarkDirty()
430 void wxTextCtrl::DiscardEdits()
434 int wxTextCtrl::GetNumberOfLines() const
439 // ----------------------------------------------------------------------------
440 // Positions <-> coords
441 // ----------------------------------------------------------------------------
443 long wxTextCtrl::XYToPosition(long x
, long y
) const
448 bool wxTextCtrl::PositionToXY(long pos
, long *x
, long *y
) const
453 wxTextCtrlHitTestResult
454 wxTextCtrl::HitTest(const wxPoint
& pt
, wxTextCoord
*col
, wxTextCoord
*row
) const
456 return wxTE_HT_UNKNOWN
;
459 // ----------------------------------------------------------------------------
461 // ----------------------------------------------------------------------------
463 void wxTextCtrl::ShowPosition(long pos
)
467 long wxTextCtrl::GetLengthOfLineContainingPos(long pos
) const
472 int wxTextCtrl::GetLineLength(long lineNo
) const
477 wxString
wxTextCtrl::GetLineText(long lineNo
) const
484 void wxTextCtrl::SetMaxLength(unsigned long len
)
488 // ----------------------------------------------------------------------------
490 // ----------------------------------------------------------------------------
492 void wxTextCtrl::Undo()
496 void wxTextCtrl::Redo()
500 bool wxTextCtrl::CanUndo() const
504 bool wxTextCtrl::CanRedo() const
508 // ----------------------------------------------------------------------------
509 // caret handling (Windows only)
510 // ----------------------------------------------------------------------------
512 bool wxTextCtrl::ShowNativeCaret(bool show
)
517 // ----------------------------------------------------------------------------
518 // implemenation details
519 // ----------------------------------------------------------------------------
521 void wxTextCtrl::Command(wxCommandEvent
& event
)
525 void wxTextCtrl::OnDropFiles(wxDropFilesEvent
& event
)
529 // ----------------------------------------------------------------------------
530 // kbd input processing
531 // ----------------------------------------------------------------------------
533 bool wxTextCtrl::MSWShouldPreProcessMessage(WXMSG
* pMsg
)
538 void wxTextCtrl::OnChar(wxKeyEvent
& event
)
542 WXLRESULT
wxTextCtrl::MSWWindowProc(WXUINT nMsg
, WXWPARAM wParam
, WXLPARAM lParam
)
547 // ----------------------------------------------------------------------------
548 // text control event processing
549 // ----------------------------------------------------------------------------
551 bool wxTextCtrl::SendUpdateEvent()
556 bool wxTextCtrl::MSWCommand(WXUINT param
, WXWORD
WXUNUSED(id
))
561 bool wxTextCtrl::AdjustSpaceLimit()
566 bool wxTextCtrl::AcceptsFocus() const
571 wxSize
wxTextCtrl::DoGetBestSize() const
576 // ----------------------------------------------------------------------------
577 // standard handlers for standard edit menu events
578 // ----------------------------------------------------------------------------
580 void wxTextCtrl::OnCut(wxCommandEvent
& WXUNUSED(event
))
584 void wxTextCtrl::OnCopy(wxCommandEvent
& WXUNUSED(event
))
588 void wxTextCtrl::OnPaste(wxCommandEvent
& WXUNUSED(event
))
592 void wxTextCtrl::OnUndo(wxCommandEvent
& WXUNUSED(event
))
596 void wxTextCtrl::OnRedo(wxCommandEvent
& WXUNUSED(event
))
600 void wxTextCtrl::OnDelete(wxCommandEvent
& WXUNUSED(event
))
604 void wxTextCtrl::OnSelectAll(wxCommandEvent
& WXUNUSED(event
))
608 void wxTextCtrl::OnUpdateCut(wxUpdateUIEvent
& event
)
612 void wxTextCtrl::OnUpdateCopy(wxUpdateUIEvent
& event
)
616 void wxTextCtrl::OnUpdatePaste(wxUpdateUIEvent
& event
)
620 void wxTextCtrl::OnUpdateUndo(wxUpdateUIEvent
& event
)
624 void wxTextCtrl::OnUpdateRedo(wxUpdateUIEvent
& event
)
628 void wxTextCtrl::OnUpdateDelete(wxUpdateUIEvent
& event
)
632 void wxTextCtrl::OnUpdateSelectAll(wxUpdateUIEvent
& event
)
636 void wxTextCtrl::OnRightClick(wxMouseEvent
& event
)
640 void wxTextCtrl::OnSetFocus(wxFocusEvent
& WXUNUSED(event
))
644 // the rest of the file only deals with the rich edit controls
647 // ----------------------------------------------------------------------------
648 // EN_LINK processing
649 // ----------------------------------------------------------------------------
651 bool wxTextCtrl::MSWOnNotify(int idCtrl
, WXLPARAM lParam
, WXLPARAM
*result
)
656 // ----------------------------------------------------------------------------
657 // colour setting for the rich edit controls
658 // ----------------------------------------------------------------------------
660 bool wxTextCtrl::SetBackgroundColour(const wxColour
& colour
)
665 bool wxTextCtrl::SetForegroundColour(const wxColour
& colour
)
670 // ----------------------------------------------------------------------------
671 // styling support for rich edit controls
672 // ----------------------------------------------------------------------------
676 bool wxTextCtrl::SetStyle(long start
, long end
, const wxTextAttr
& style
)
681 bool wxTextCtrl::SetDefaultStyle(const wxTextAttr
& style
)
686 bool wxTextCtrl::GetStyle(long position
, wxTextAttr
& style
)
693 // ----------------------------------------------------------------------------
695 // ----------------------------------------------------------------------------
697 bool wxRichEditModule::OnInit()
702 void wxRichEditModule::OnExit()
707 bool wxRichEditModule::Load(int version
)
712 #endif // wxUSE_RICHEDIT
714 #endif // wxUSE_TEXTCTRL