More TODOs.
This commit is contained in:
parent
7d714c455b
commit
ba31d13c6d
|
@ -16,6 +16,13 @@ type textfield struct {
|
||||||
|
|
||||||
var editclass = toUTF16("EDIT")
|
var editclass = toUTF16("EDIT")
|
||||||
|
|
||||||
|
/*
|
||||||
|
notes about multiline text boxes
|
||||||
|
- ES_LEFT | ES_MULTILINE | ES_NOHIDESEL | ES_WANTRETURN
|
||||||
|
(ES_AUTOVSCROLL as well?)
|
||||||
|
(what about word wrap?)
|
||||||
|
*/
|
||||||
|
|
||||||
func startNewTextField(style C.DWORD) *textfield {
|
func startNewTextField(style C.DWORD) *textfield {
|
||||||
hwnd := C.newControl(editclass,
|
hwnd := C.newControl(editclass,
|
||||||
style|C.textfieldStyle,
|
style|C.textfieldStyle,
|
||||||
|
|
Loading…
Reference in New Issue