comparison os2/dw.c @ 1925:0448507827e6

Added dw_mle_set_auto_complete() stubs for OS/2 and Windows... Updates to support RichEdit 4.1 control on Windows if enabled. This should allow us to support auto complete in the future.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Thu, 20 Apr 2017 10:36:49 +0000
parents 0df3fc47002e
children 21811c9e2eaf
comparison
equal deleted inserted replaced
1924:c47a04d83b90 1925:0448507827e6
1 /* 1 /*
2 * Dynamic Windows: 2 * Dynamic Windows:
3 * A GTK like implementation of the PM GUI 3 * A GTK like implementation of the PM GUI
4 * 4 *
5 * (C) 2000-2012 Brian Smith <brian@dbsoft.org> 5 * (C) 2000-2017 Brian Smith <brian@dbsoft.org>
6 * (C) 2003-2011 Mark Hessling <mark@rexx.org> 6 * (C) 2003-2011 Mark Hessling <mark@rexx.org>
7 * (C) 2000 Achim Hasenmueller <achimha@innotek.de> 7 * (C) 2000 Achim Hasenmueller <achimha@innotek.de>
8 * (C) 2000 Peter Nielsen <peter@pmview.com> 8 * (C) 2000 Peter Nielsen <peter@pmview.com>
9 * (C) 2007 Alex Taylor (some code borrowed from clipuni) 9 * (C) 2007 Alex Taylor (some code borrowed from clipuni)
10 * (C) 1998 Sergey I. Yevtushenko (some code borrowed from cell toolkit) 10 * (C) 1998 Sergey I. Yevtushenko (some code borrowed from cell toolkit)
8814 { 8814 {
8815 WinSendMsg(handle, MLM_SETWRAP, MPFROMLONG(state), 0); 8815 WinSendMsg(handle, MLM_SETWRAP, MPFROMLONG(state), 0);
8816 } 8816 }
8817 8817
8818 /* 8818 /*
8819 * Sets the word auto complete state of an MLE box.
8820 * Parameters:
8821 * handle: Handle to the MLE.
8822 * state: Bitwise combination of DW_MLE_COMPLETE_TEXT/DASH/QUOTE
8823 */
8824 void API dw_mle_set_auto_complete(HWND handle, int state)
8825 {
8826 }
8827
8828 /*
8819 * Sets the current cursor position of an MLE box. 8829 * Sets the current cursor position of an MLE box.
8820 * Parameters: 8830 * Parameters:
8821 * handle: Handle to the MLE to be positioned. 8831 * handle: Handle to the MLE to be positioned.
8822 * point: Point to position cursor. 8832 * point: Point to position cursor.
8823 */ 8833 */