tcp: Fix 64 bit build with debugging features enabled.
[haiku.git] / src / preferences / dun / DetailsView.h
blob8977cba07f551d2f8738a78c8cbece53b1fe429d
1 /*
3 DetailsView Header
5 Author: Misza (misza@ihug.com.au)
7 (C) 2002 OpenBeOS under MIT license
9 */
11 #ifndef __DETAILSVIEW_H__
12 #define __DETAILSVIEW_H__
14 #include <InterfaceKit.h>
15 #include <iostream>
16 #include <Application.h>
18 const uint32 CHANGE_PHONENO = 'Cphn';
19 const uint32 CHANGE_USERNAME = 'Cusr';
20 const uint32 CHANGE_PASSWORD = 'Cpwd';
21 const uint32 SAVEPASSWORD = 'Spwd';
22 const uint32 BTN_SETTINGS = 'Stng';
24 class DetailsView: public BView
27 public:
28 DetailsView();
29 virtual void MessageReceived(BMessage* msg);
30 virtual void AttachedToWindow();
31 private:
32 BTextControl* phoneno;
33 BTextControl* username;
34 BTextControl* passwd;
36 BCheckBox* savepasswd;
38 BButton* settingsbtn;
41 #endif