fat: Greatly simplify and clean up dosfs_get_file_map().
[haiku.git] / src / preferences / joysticks / MessageWin.h
blob2353171fa19e4d7512c22b29ee958ebc8a83651b
1 /*
2 * Copyright 2007 Haiku.
3 * Distributed under the terms of the MIT License.
5 * Authors:
6 * Oliver Ruiz Dorantes, oliver.ruiz.dorantes_at_gmail.com
7 * Ryan Leavengood, leavengood@gmail.com
8 */
9 #ifndef _MESSAGE_WIN_H
10 #define _MESSAGE_WIN_H
13 #include <Window.h>
15 class BBox;
16 class BButton;
17 class BCheckBox;
18 class BStringView;
19 class BView;
20 class BTextView;
23 class MessageWin : public BWindow
25 public:
26 MessageWin(BRect parent_frame, const char *title,
27 window_look look,
28 window_feel feel,
29 uint32 flags,
30 uint32 workspace = B_CURRENT_WORKSPACE);
32 void SetText(const char* str);
33 virtual void MessageReceived(BMessage *message);
34 virtual bool QuitRequested();
36 protected:
37 BBox* fBox;
38 BTextView* fText;
41 #endif /* _MESSAGE_WIN_H */