1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: src/msw/textentry.cpp
3 // Purpose: wxTextEntry implementation for wxMSW
4 // Author: Vadim Zeitlin
7 // Copyright: (c) 2007 Vadim Zeitlin <vadim@wxwindows.org>
8 // Licence: wxWindows licence
9 ///////////////////////////////////////////////////////////////////////////////
11 // ============================================================================
13 // ============================================================================
15 // ----------------------------------------------------------------------------
17 // ----------------------------------------------------------------------------
19 // for compilers that support precompilation, includes "wx.h".
20 #include "wx/wxprec.h"
27 #include "wx/string.h"
30 #if wxUSE_TEXTCTRL || wxUSE_COMBOBOX
32 #include "wx/textentry.h"
33 #include "wx/dynlib.h"
35 #include "wx/msw/private.h"
37 #ifndef SHACF_FILESYS_ONLY
38 #define SHACF_FILESYS_ONLY 0x00000010
41 #define GetEditHwnd() ((HWND)(GetEditHWND()))
43 // ============================================================================
44 // wxTextEntry implementation
45 // ============================================================================
47 void wxTextEntry::WriteText(const wxString
& text
)
49 ::SendMessage(GetEditHwnd(), EM_REPLACESEL
, 0, (LPARAM
)text
.wx_str());
52 wxString
wxTextEntry::GetValue() const
54 return wxGetWindowText(GetEditHWND());
57 void wxTextEntry::Remove(long from
, long to
)
59 DoSetSelection(from
, to
, SetSel_NoScroll
);
60 WriteText(wxString());
63 void wxTextEntry::Copy()
65 ::SendMessage(GetEditHwnd(), WM_COPY
, 0, 0);
68 void wxTextEntry::Cut()
70 ::SendMessage(GetEditHwnd(), WM_CUT
, 0, 0);
73 void wxTextEntry::Paste()
75 ::SendMessage(GetEditHwnd(), WM_PASTE
, 0, 0);
78 void wxTextEntry::Undo()
80 ::SendMessage(GetEditHwnd(), EM_UNDO
, 0, 0);
83 void wxTextEntry::Redo()
85 // same as Undo, since Undo undoes the undo
90 bool wxTextEntry::CanUndo() const
92 return ::SendMessage(GetEditHwnd(), EM_CANUNDO
, 0, 0) != 0;
95 bool wxTextEntry::CanRedo() const
97 // see comment in Redo()
101 void wxTextEntry::SetInsertionPoint(long pos
)
103 // be careful to call DoSetSelection() which is overridden in wxTextCtrl
104 // and not just SetSelection() here
105 DoSetSelection(pos
, pos
);
108 long wxTextEntry::GetInsertionPoint() const
111 GetSelection(&from
, NULL
);
115 long wxTextEntry::GetLastPosition() const
117 return ::SendMessage(GetEditHwnd(), EM_LINELENGTH
, 0, 0);
120 void wxTextEntry::DoSetSelection(long from
, long to
, int WXUNUSED(flags
))
122 // if from and to are both -1, it means (in wxWidgets) that all text should
123 // be selected, translate this into Windows convention
124 if ( (from
== -1) && (to
== -1) )
129 ::SendMessage(GetEditHwnd(), EM_SETSEL
, from
, to
);
132 void wxTextEntry::GetSelection(long *from
, long *to
) const
134 DWORD dwStart
, dwEnd
;
135 ::SendMessage(GetEditHwnd(), EM_GETSEL
, (WPARAM
)&dwStart
, (LPARAM
)&dwEnd
);
143 bool wxTextEntry::AutoCompleteFileNames()
145 typedef HRESULT (WINAPI
*SHAutoComplete_t
)(HWND
, DWORD
);
146 static SHAutoComplete_t s_pfnSHAutoComplete
= (SHAutoComplete_t
)-1;
147 static wxDynamicLibrary s_dllShlwapi
;
148 if ( s_pfnSHAutoComplete
== (SHAutoComplete_t
)-1 )
152 if ( !s_dllShlwapi
.Load(_T("shlwapi.dll"), wxDL_VERBATIM
) )
154 s_pfnSHAutoComplete
= NULL
;
158 wxDL_INIT_FUNC(s_pfn
, SHAutoComplete
, s_dllShlwapi
);
162 if ( !s_pfnSHAutoComplete
)
165 HRESULT hr
= (*s_pfnSHAutoComplete
)(GetEditHwnd(), SHACF_FILESYS_ONLY
);
168 wxLogApiError(_T("SHAutoComplete()"), hr
);
176 bool wxTextEntry::IsEditable() const
178 return !(::GetWindowLong(GetEditHwnd(), GWL_STYLE
) & ES_READONLY
);
181 void wxTextEntry::SetEditable(bool editable
)
183 ::SendMessage(GetEditHwnd(), EM_SETREADONLY
, !editable
, 0);
186 void wxTextEntry::SetMaxLength(unsigned long len
)
190 // this will set it to a platform-dependent maximum (much more
191 // than 64Kb under NT)
195 ::SendMessage(GetEditHwnd(), EM_LIMITTEXT
, len
, 0);
198 #endif // wxUSE_TEXTCTRL || wxUSE_COMBOBOX