comparison gtk/dw.c @ 1926:3c60066cb16f

Added dw_mle_set_auto_complete() stubs for GTK2/3.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Thu, 20 Apr 2017 10:56:46 +0000
parents 6923871d0048
children 758f49e54566
comparison
equal deleted inserted replaced
1925:0448507827e6 1926:3c60066cb16f
1 /* 1 /*
2 * Dynamic Windows: 2 * Dynamic Windows:
3 * A GTK like cross-platform GUI 3 * A GTK like cross-platform GUI
4 * GTK forwarder module for portabilty. 4 * GTK forwarder module for portabilty.
5 * 5 *
6 * (C) 2000-2013 Brian Smith <brian@dbsoft.org> 6 * (C) 2000-2017 Brian Smith <brian@dbsoft.org>
7 * (C) 2003-2011 Mark Hessling <mark@rexx.org> 7 * (C) 2003-2011 Mark Hessling <mark@rexx.org>
8 * (C) 2002 Nickolay V. Shmyrev <shmyrev@yandex.ru> 8 * (C) 2002 Nickolay V. Shmyrev <shmyrev@yandex.ru>
9 */ 9 */
10 #include "config.h" 10 #include "config.h"
11 #include "dw.h" 11 #include "dw.h"
5669 gtk_text_set_line_wrap(GTK_TEXT(tmp), state); 5669 gtk_text_set_line_wrap(GTK_TEXT(tmp), state);
5670 } 5670 }
5671 } 5671 }
5672 #endif 5672 #endif
5673 DW_MUTEX_UNLOCK; 5673 DW_MUTEX_UNLOCK;
5674 }
5675
5676 /*
5677 * Sets the word auto complete state of an MLE box.
5678 * Parameters:
5679 * handle: Handle to the MLE.
5680 * state: Bitwise combination of DW_MLE_COMPLETE_TEXT/DASH/QUOTE
5681 */
5682 void dw_mle_set_auto_complete(HWND handle, int state)
5683 {
5674 } 5684 }
5675 5685
5676 /* 5686 /*
5677 * Sets the current cursor position of an MLE box. 5687 * Sets the current cursor position of an MLE box.
5678 * Parameters: 5688 * Parameters: