1 /* PoorManAdvancedView.h 2 * 3 * Philip Harrison 4 * Started: 5/12/2004 5 * Version: 0.1 6 */ 7 8 #ifndef POOR_MAN_ADVANCED_VIEW_H 9 #define POOR_MAN_ADVANCED_VIEW_H 10 11 #include <View.h> 12 13 #include "StatusSlider.h" 14 15 16 class PoorManAdvancedView: public BView { 17 public: 18 PoorManAdvancedView(const char *name); 19 20 int32 MaxSimultaneousConnections() 21 { return fMaxConnections->Value(); } 22 void SetMaxSimutaneousConnections(int32 num); 23 private: 24 // Advanced Tab 25 // Connections Options 26 StatusSlider* fMaxConnections; 27 }; 28 29 #endif 30