repository_infos: Enable automatic updates on the main Haiku repostiory.
[haiku.git] / src / apps / webpositive / ConsoleWindow.h
blob66d62a8cbe216b27dca1a1a2aee4bb4e871091c6
1 /*
2 * Copyright 2014 Haiku, Inc. All rights reserved.
3 * Distributed under the terms of the MIT License.
5 * Authors:
6 * Zhuowei Zhang
7 */
8 #ifndef CONSOLE_WINDOW_H
9 #define CONSOLE_WINDOW_H
12 #include <String.h>
13 #include <Window.h>
16 class BListView;
17 class BButton;
20 class ConsoleWindow : public BWindow {
21 public:
22 ConsoleWindow(BRect frame);
23 virtual void MessageReceived(BMessage* message);
24 virtual bool QuitRequested();
25 private:
26 BListView* fMessagesListView;
27 BButton* fClearMessagesButton;
31 #endif // CONSOLE_WINDOW_H