File: PasswordBox.ec

package info (click to toggle)
ecere-sdk 0.44.15-1
  • links: PTS
  • area: main
  • in suites: sid, stretch
  • size: 97,712 kB
  • ctags: 54,695
  • sloc: ansic: 593,042; makefile: 12,250; yacc: 4,955; lex: 707; objc: 259; python: 252; xml: 102
file content (23 lines) | stat: -rw-r--r-- 580 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifdef ECERE_STATIC
public import static "ecere"
#else
public import "ecere"
#endif

class PasswordBox : EditBox
{
   font = { "Wingdings"/*"Webdings"*/, 16 };

   void OnRedraw(Surface surface)
   {
      char * contents = (char *)this.contents;
      char * backup = CopyString(contents);
      int len = strlen(backup);
      // what char / font combination to use for desired blocking char on all platforms?
      // memset(string, 'g', len);
      memset(contents, 'l', len);
      EditBox::OnRedraw(surface);
      memcpy(contents, backup, len);
      delete backup;
   }
}