1 /* 2 * Copyright 2010, Haiku, Inc. All Rights Reserved. 3 * Copyright 2009, Pier Luigi Fiorini. 4 * Distributed under the terms of the MIT License. 5 */ 6 #ifndef _PREFLET_VIEW_H 7 #define _PREFLET_VIEW_H 8 9 #include <TabView.h> 10 11 class BIconRule; 12 13 class SettingsHost; 14 15 class PrefletView : public BTabView { 16 public: 17 PrefletView(SettingsHost* host); 18 19 BView* CurrentPage(); 20 int32 CountPages() const; 21 BView* PageAt(int32 index); 22 }; 23 24 #endif // PREFLETVIEW_H 25