fat: Greatly simplify and clean up dosfs_get_file_map().
[haiku.git] / src / preferences / dun / NewConnectionWindow.h
blobaaef4b5af15bc72d21a5596511d957888fbedc9e
1 /*
3 NewConnectionWindow Header
5 Author: Sikosis (beos@gravity24hr.com)
7 (C) 2002 OpenBeOS under MIT license
9 */
11 #ifndef __NEWCONNECTIONWINDOW_H__
12 #define __NEWCONNECTIONWINDOW_H__
14 #include <Application.h>
15 #include <Alert.h>
16 #include <Button.h>
17 #include <Screen.h>
18 #include <stdio.h>
19 #include <TextControl.h>
20 #include <TextView.h>
21 #include <Window.h>
22 #include <View.h>
24 #include "DUNView.h"
26 class NewConnectionWindowView;
28 class NewConnectionWindow : public BWindow
30 public:
31 NewConnectionWindow(BRect frame);
32 ~NewConnectionWindow();
33 virtual void MessageReceived(BMessage *message);
34 private:
35 void InitWindow(void);
37 NewConnectionWindowView* ptrNewConnectionWindowView;
38 BButton *btnAdd;
39 BButton *btnCancel;
40 BTextControl *txtNewConnection;
44 #endif