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 12 class GroupListView; 13 14 15 class WindowsView : public BGridView { 16 public: 17 WindowsView(team_id team, uint32 location); 18 virtual ~WindowsView(); 19 20 protected: 21 virtual void AttachedToWindow(); 22 virtual void MessageReceived(BMessage* message); 23 24 private: 25 orientation _Orientation(uint32 location); 26 27 private: 28 GroupListView* fListView; 29 }; 30 31 32 #endif // WINDOWS_VIEW_H 33