2 * Copyright 2003-2007, Haiku, Inc. All Rights Reserved.
3 * Distributed under the terms of the MIT License.
7 * Jérôme Duval, jerome.duval@free.fr
9 #ifndef PASSWORD_WINDOW_H
10 #define PASSWORD_WINDOW_H
13 #include <TextControl.h>
17 const static int32 kMsgUnlock
= 'ULMS';
20 class PasswordWindow
: public BWindow
{
24 const char *Password() { return fPassword
->Text(); }
25 void SetPassword(const char* text
);
28 BTextControl
*fPassword
;
31 #endif // PASSWORDWINDOW_H