xref: /haiku/src/apps/mediaplayer/NetworkStreamWin.h (revision 05fc1277c47440dc36134816d70e5723c99cfcd2)
1 /*
2  * Copyright 2016 Dario Casalinuovo. All rights reserved.
3  * Distributed under the terms of the MIT License.
4  *
5  */
6 #ifndef __NETWORK_STREAM_WIN_H
7 #define __NETWORK_STREAM_WIN_H
8 
9 
10 #include <Messenger.h>
11 #include <TextControl.h>
12 #include <Window.h>
13 
14 
15 class NetworkStreamWin : public BWindow
16 {
17 public:
18 								NetworkStreamWin(BMessenger target);
19 	virtual						~NetworkStreamWin();
20 
21 	virtual	void				MessageReceived(BMessage* message);
22 
23 private:
24 			BMessenger			fTarget;
25 			BTextControl*		fTextControl;
26 };
27 
28 #endif
29