New Connection Window

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@2261 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Phil Greenway 2002-12-17 00:36:22 +00:00
parent e3cb015484
commit 4d50901035
1 changed files with 44 additions and 0 deletions

View File

@ -0,0 +1,44 @@
/*
NewConnectionWindow Header
Author: Sikosis (beos@gravity24hr.com)
(C) 2002 OpenBeOS under MIT license
*/
#ifndef __NEWCONNECTIONWINDOW_H__
#define __NEWCONNECTIONWINDOW_H__
#include <Application.h>
#include <Alert.h>
#include <Button.h>
#include <Screen.h>
#include <stdio.h>
#include <TextControl.h>
#include <TextView.h>
#include <Window.h>
#include <View.h>
#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