btrfs: Attempt to fix GCC2 build.
[haiku.git] / src / apps / debugger / user_interface / gui / utility_windows / StartTeamWindow.h
blob1f08f8e868599a7d77a5d8e7d2a220473e0c332c
1 /*
2 * Copyright 2013-2016, Rene Gollent, rene@gollent.com.
3 * Distributed under the terms of the MIT License.
4 */
5 #ifndef START_TEAM_WINDOW_H
6 #define START_TEAM_WINDOW_H
9 #include <Window.h>
12 class BButton;
13 class BFilePanel;
14 class BStringView;
15 class BTextControl;
16 class TargetHostInterface;
19 class StartTeamWindow : public BWindow
21 public:
22 StartTeamWindow(
23 TargetHostInterface* hostInterface);
25 ~StartTeamWindow();
27 static StartTeamWindow* Create(TargetHostInterface* hostInterface);
28 // throws
31 virtual void MessageReceived(BMessage* message);
33 virtual void Show();
35 private:
36 void _Init();
39 private:
40 BStringView* fGuideText;
41 BTextControl* fTeamTextControl;
42 BTextControl* fArgumentsTextControl;
43 BButton* fBrowseTeamButton;
44 BFilePanel* fBrowseTeamPanel;
45 BButton* fStartButton;
46 BButton* fCancelButton;
47 TargetHostInterface* fTargetHostInterface;
50 #endif // START_TEAM_WINDOW_H