haiku/src/apps/poorman/PoorManAdvancedView.h
Alex Wilson a1ae802279 Convert Poorman to use the Layout API.
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
2012-07-16 14:59:33 +12:00

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