xref: /haiku/src/apps/poorman/PoorManAdvancedView.h (revision 4f00613311d0bd6b70fa82ce19931c41f071ea4e)
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 {
18 public:
19 				PoorManAdvancedView(BRect, const char *name);
20 		int32	MaxSimultaneousConnections() { return maxConnections->Value(); }
21 		void	SetMaxSimutaneousConnections(int32 num);
22 private:
23 		// Advanced Tab
24 			// Connections Options
25 			StatusSlider	*	maxConnections;
26 };
27 
28 #endif
29