diff --git a/src/prefs/dun/NewConnectionWindow.h b/src/prefs/dun/NewConnectionWindow.h new file mode 100644 index 0000000000..a403b424cb --- /dev/null +++ b/src/prefs/dun/NewConnectionWindow.h @@ -0,0 +1,44 @@ +/* + +NewConnectionWindow Header + +Author: Sikosis (beos@gravity24hr.com) + +(C) 2002 OpenBeOS under MIT license + +*/ + +#ifndef __NEWCONNECTIONWINDOW_H__ +#define __NEWCONNECTIONWINDOW_H__ + +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include "DUNView.h" + +class NewConnectionWindowView; + +class NewConnectionWindow : public BWindow +{ + public: + NewConnectionWindow(BRect frame); + ~NewConnectionWindow(); + virtual void MessageReceived(BMessage *message); + private: + void InitWindow(void); + + NewConnectionWindowView* ptrNewConnectionWindowView; + BButton *btnOkay; + BButton *btnCancel; + BTextControl *txtNewConnection; + +}; + +#endif