repository_infos: Enable automatic updates on the main Haiku repostiory.
[haiku.git] / src / apps / login / DesktopWindow.h
blobf83336dc2ff4890f01d4d3876ba34e92a6e7264b
1 /*
2 * Copyright 2008, François Revol, <revol@free.fr>. All rights reserved.
3 * Distributed under the terms of the MIT License.
4 */
5 #ifndef _DESKTOPWINDOW_H_
6 #define _DESKTOPWINDOW_H_
8 #include <Shelf.h>
9 #include <Window.h>
11 class DesktopWindow : public BWindow {
12 public:
13 DesktopWindow(BRect frame, bool editMode);
14 virtual ~DesktopWindow();
16 bool QuitRequested();
17 void DispatchMessage(BMessage *message, BHandler *handler);
19 private:
20 bool fEditShelfMode;
22 //TODO:
23 BShelf* fDesktopShelf;
26 #endif // _DESKTOPWINDOW_H_