repository_infos: Enable automatic updates on the main Haiku repostiory.
[haiku.git] / src / apps / mediaplayer / NetworkStreamWin.h
blobc3d03112c9d5fb38b66156817cd1e5ebbf7b7dc6
1 /*
2 * Copyright 2016 Dario Casalinuovo. All rights reserved.
3 * Distributed under the terms of the MIT License.
5 */
6 #ifndef __NETWORK_STREAM_WIN_H
7 #define __NETWORK_STREAM_WIN_H
10 #include <Messenger.h>
11 #include <TextControl.h>
12 #include <Window.h>
15 class NetworkStreamWin : public BWindow
17 public:
18 NetworkStreamWin(BMessenger target);
19 virtual ~NetworkStreamWin();
21 virtual void MessageReceived(BMessage* message);
23 virtual void WindowActivated(bool active);
24 private:
25 void _LookIntoClipboardForUrl();
27 BMessenger fTarget;
28 BTextControl* fTextControl;
31 #endif