xref: /haiku/src/preferences/shortcuts/EditWindow.h (revision 9642f7705b27e5c270c15fa526d14e1848c2c27d)
1 /*
2  * Copyright 2015 Haiku, Inc. All rights reserved.
3  * Distributed under the terms of the MIT License.
4  *
5  * Authors:
6  * 		Josef Gajdusek
7  */
8 
9 #ifndef EDITWINDOW_H
10 #define EDITWINDOW_H
11 
12 #include <Window.h>
13 
14 class BTextControl;
15 
16 class EditWindow : public BWindow {
17 public:
18 						EditWindow(const char* placeholder, uint32 flags);
19 
20 		void			MessageReceived(BMessage* message);
21 		BString			Go();
22 
23 private:
24 	sem_id				fSem;
25 	BTextControl*		fTextControl;
26 };
27 
28 #endif	// EDITWINDOW_H
29