From 4d50901035e2ea1f27da8be6a67e2a0d00f82a07 Mon Sep 17 00:00:00 2001 From: Phil Greenway Date: Tue, 17 Dec 2002 00:36:22 +0000 Subject: [PATCH] New Connection Window git-svn-id: file:///srv/svn/repos/haiku/trunk/current@2261 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/prefs/dun/NewConnectionWindow.h | 44 +++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 src/prefs/dun/NewConnectionWindow.h 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