1*70c51973SJohn Scipione /* 2*70c51973SJohn Scipione * Copyright 2009-2012 Haiku Inc. All rights reserved. 3*70c51973SJohn Scipione * Distributed under the terms of the MIT License. 4*70c51973SJohn Scipione */ 5*70c51973SJohn Scipione #ifndef EXTENSIONS_VIEW_H 6*70c51973SJohn Scipione #define EXTENSIONS_VIEW_H 7*70c51973SJohn Scipione 8*70c51973SJohn Scipione 9*70c51973SJohn Scipione #include <ColumnListView.h> 10*70c51973SJohn Scipione #include <ColumnTypes.h> 11*70c51973SJohn Scipione #include <GroupView.h> 12*70c51973SJohn Scipione 13*70c51973SJohn Scipione 14*70c51973SJohn Scipione class ExtensionsView : public BGroupView { 15*70c51973SJohn Scipione public: 16*70c51973SJohn Scipione ExtensionsView(); 17*70c51973SJohn Scipione virtual ~ExtensionsView(); 18*70c51973SJohn Scipione 19*70c51973SJohn Scipione private: 20*70c51973SJohn Scipione void _AddExtensionsList( 21*70c51973SJohn Scipione BColumnListView* fExtensionsList, 22*70c51973SJohn Scipione char* stringList); 23*70c51973SJohn Scipione 24*70c51973SJohn Scipione BColumnListView* fExtensionsList; 25*70c51973SJohn Scipione BStringColumn* fAvailableColumn; 26*70c51973SJohn Scipione }; 27*70c51973SJohn Scipione 28*70c51973SJohn Scipione 29*70c51973SJohn Scipione #endif /* EXTENSIONS_VIEW_H */ 30