1/*
2 * Copyright 2011, Axel Dörfler, axeld@pinc-software.de.
3 * Distributed under the terms of the MIT License.
4 */
5#ifndef WINDOWS_VIEW_H
6#define WINDOWS_VIEW_H
7
8
9#include <GridView.h>
10
11
12class GroupListView;
13
14
15class WindowsView : public BGridView {
16public:
17								WindowsView(team_id team, uint32 location);
18	virtual						~WindowsView();
19
20protected:
21	virtual void				AttachedToWindow();
22	virtual	void				MessageReceived(BMessage* message);
23
24private:
25			orientation			_Orientation(uint32 location);
26
27private:
28			GroupListView*		fListView;
29};
30
31
32#endif	// WINDOWS_VIEW_H
33