TrackGit
CredentialsWindow.h
Go to the documentation of this file.
1 
8 #ifndef _CREDENTIALS_WINDOW_H_
9 #define _CREDENTIALS_WINDOW_H_
10 
11 #include <InterfaceKit.h>
12 
13 enum {
16 };
17 
21 class CredentialsWindow : public BWindow {
25  BTextControl* fUsername;
29  BTextControl* fPassword;
33  char* fUsernamePtr;
37  char* fPasswordPtr;
38  public:
39  CredentialsWindow(char*, char*);
40  virtual void MessageReceived(BMessage*);
41 };
42 
43 #endif
BTextControl * fPassword
The text control for password.
char * fUsernamePtr
The username pointer.
virtual void MessageReceived(BMessage *)
The handler to receive messages.
BTextControl * fUsername
The text control for username.
char * fPasswordPtr
The password pointer.
The Credentials Window class.
CredentialsWindow(char *, char *)
Constructor for CredentialsWindow.