adamdruppe / arsd

This is a collection of modules that I've released over the years. Most of them stand alone, or have just one or two dependencies in here, so you don't have to download this whole repo.
http://arsd-official.dpldocs.info/arsd.html
530 stars 127 forks source link

Minigui: LineEdit password style #272

Closed andre2007 closed 3 years ago

andre2007 commented 3 years ago

Could you add the possibility to mask the text in a LineEdit / LabeledLineEdit as password? For win32 this is the ES_PASSWORD style.

https://docs.microsoft.com/en-us/windows/win32/controls/use-a-single-line--edit-control

adamdruppe commented 3 years ago

Yeah, that's fairly simple, I'll add it to my todo list.

I'm in the middle of rewriting the whole text engine on linux right now which will make that a lot easier to do there too... but I'll prolly push the Windows thing possibly as early as tomorrow.

adamdruppe commented 3 years ago

I had to do it as a separate class which I don't love but Windows doesn't let you change that style after construction...

andre2007 commented 3 years ago

Thanks a lot Adam.