/* * Copyright 2003-2007, Haiku, Inc. All Rights Reserved. * Distributed under the terms of the MIT License. * * Authors: * Michael Phipps * Jérôme Duval, jerome.duval@free.fr */ #ifndef PASSWORD_WINDOW_H #define PASSWORD_WINDOW_H #include "ScreenSaverSettings.h" #include class BRadioButton; class BTextControl; class PasswordWindow : public BWindow { public: PasswordWindow(ScreenSaverSettings &settings); virtual void MessageReceived(BMessage *message); void Update(); private: void _Setup(); BRadioButton *fUseCustom; BRadioButton *fUseNetwork; BTextControl *fConfirmControl; BTextControl *fPasswordControl; ScreenSaverSettings &fSettings; }; #endif // PASSWORD_WINDOW_H