New Connection Window
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@2261 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
parent
e3cb015484
commit
4d50901035
44
src/prefs/dun/NewConnectionWindow.h
Normal file
44
src/prefs/dun/NewConnectionWindow.h
Normal 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
|
Loading…
Reference in New Issue
Block a user