khchen / wNim

Nim's Windows GUI Framework
MIT License
326 stars 17 forks source link

wTextCtr paste command #126

Open arhiloh opened 6 days ago

arhiloh commented 6 days ago
`proc paste*(self: wTextCtrl) {.validate, inline.} =
  ## Pastes text from the clipboard to the text item.
  SendMessage(self.mHwnd, WM_COPY, 0, 0)`

WM_COPY ? maybe WM_PASTE* = 0x0302