mirror of
https://review.haiku-os.org/haiku
synced 2025-01-30 18:24:53 +01:00
a1ae802279
Also includes many style fixes. This patch was done by tokyo6pm, and then updated by mks after changes to Poorman broke the patch. ticket: #3787
30 lines
537 B
C++
30 lines
537 B
C++
/* PoorManAdvancedView.h
|
|
*
|
|
* Philip Harrison
|
|
* Started: 5/12/2004
|
|
* Version: 0.1
|
|
*/
|
|
|
|
#ifndef POOR_MAN_ADVANCED_VIEW_H
|
|
#define POOR_MAN_ADVANCED_VIEW_H
|
|
|
|
#include <View.h>
|
|
|
|
#include "StatusSlider.h"
|
|
|
|
|
|
class PoorManAdvancedView: public BView {
|
|
public:
|
|
PoorManAdvancedView(const char *name);
|
|
|
|
int32 MaxSimultaneousConnections()
|
|
{ return fMaxConnections->Value(); }
|
|
void SetMaxSimutaneousConnections(int32 num);
|
|
private:
|
|
// Advanced Tab
|
|
// Connections Options
|
|
StatusSlider* fMaxConnections;
|
|
};
|
|
|
|
#endif
|