diff options
| author | Pietro Gagliardi <[email protected]> | 2014-10-22 14:17:11 -0400 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-10-22 14:17:11 -0400 |
| commit | ba31d13c6d961545037cf0572c717e2643893180 (patch) | |
| tree | 86eb66b09ded5639237e4562229c7f1fe63b7c2d /textfield_windows.go | |
| parent | 7d714c455b21602a60b23bf54370e2adf5a661b3 (diff) | |
More TODOs.
Diffstat (limited to 'textfield_windows.go')
| -rw-r--r-- | textfield_windows.go | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/textfield_windows.go b/textfield_windows.go index 76ec882..d3b4193 100644 --- a/textfield_windows.go +++ b/textfield_windows.go @@ -16,6 +16,13 @@ type textfield struct { 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 { hwnd := C.newControl(editclass, style|C.textfieldStyle, |
