2007-10-22 18:59:04 +04:00
|
|
|
/*
|
2009-08-27 15:12:41 +04:00
|
|
|
* Copyright 2001-2009, Haiku, Inc. All rights reserved.
|
|
|
|
* Distributed under the terms of the MIT License.
|
2007-10-22 18:59:04 +04:00
|
|
|
*/
|
|
|
|
#ifndef _OPTION_CONTROL_H
|
2002-10-23 17:54:44 +04:00
|
|
|
#define _OPTION_CONTROL_H
|
|
|
|
|
2009-08-26 18:19:30 +04:00
|
|
|
|
2002-10-23 17:54:44 +04:00
|
|
|
#include <Control.h>
|
|
|
|
|
2009-08-26 18:19:30 +04:00
|
|
|
|
2002-10-23 17:54:44 +04:00
|
|
|
enum {
|
|
|
|
B_OPTION_CONTROL_VALUE = '_BMV'
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2007-10-22 18:59:04 +04:00
|
|
|
class BOptionControl : public BControl {
|
2009-08-26 18:19:30 +04:00
|
|
|
public:
|
|
|
|
BOptionControl(BRect frame, const char* name,
|
|
|
|
const char* label, BMessage* message,
|
|
|
|
uint32 resizeMask = B_FOLLOW_LEFT
|
|
|
|
| B_FOLLOW_TOP,
|
|
|
|
uint32 flags = B_WILL_DRAW);
|
2009-10-25 13:45:42 +03:00
|
|
|
BOptionControl(const char* name,
|
|
|
|
const char* label, BMessage* message,
|
|
|
|
uint32 flags = B_WILL_DRAW);
|
|
|
|
|
2009-08-26 18:19:30 +04:00
|
|
|
virtual ~BOptionControl();
|
2007-10-22 18:59:04 +04:00
|
|
|
|
2009-08-26 18:19:30 +04:00
|
|
|
virtual void MessageReceived(BMessage* message);
|
2007-10-22 18:59:04 +04:00
|
|
|
|
2009-08-26 18:19:30 +04:00
|
|
|
status_t AddOption(const char* name, int32 value);
|
|
|
|
virtual bool GetOptionAt(int32 index, const char** _name,
|
|
|
|
int32* _value) = 0;
|
|
|
|
virtual void RemoveOptionAt(int32 index) = 0;
|
|
|
|
virtual int32 CountOptions() const = 0;
|
|
|
|
virtual status_t AddOptionAt(const char* name, int32 value,
|
|
|
|
int32 index) = 0;
|
|
|
|
virtual int32 SelectedOption(const char** name = NULL,
|
|
|
|
int32* outValue = NULL) const = 0;
|
2007-10-22 18:59:04 +04:00
|
|
|
|
2009-08-26 18:19:30 +04:00
|
|
|
virtual status_t SelectOptionFor(int32 value);
|
|
|
|
virtual status_t SelectOptionFor(const char* name);
|
2007-10-22 18:59:04 +04:00
|
|
|
|
2009-08-26 18:19:30 +04:00
|
|
|
protected:
|
|
|
|
BMessage* MakeValueMessage(int32 value);
|
2007-10-22 18:59:04 +04:00
|
|
|
|
2009-08-26 18:19:30 +04:00
|
|
|
private:
|
|
|
|
// FBC padding and forbidden methods
|
|
|
|
BOptionControl();
|
|
|
|
BOptionControl(const BOptionControl& other);
|
|
|
|
BOptionControl& operator=(const BOptionControl& other);
|
2007-10-22 18:59:04 +04:00
|
|
|
|
2009-08-26 18:19:30 +04:00
|
|
|
virtual status_t _Reserved_OptionControl_0(void*, ...);
|
|
|
|
virtual status_t _Reserved_OptionControl_1(void*, ...);
|
|
|
|
virtual status_t _Reserved_OptionControl_2(void*, ...);
|
|
|
|
virtual status_t _Reserved_OptionControl_3(void*, ...);
|
|
|
|
virtual status_t _Reserved_OptionControl_4(void*, ...);
|
|
|
|
virtual status_t _Reserved_OptionControl_5(void*, ...);
|
|
|
|
virtual status_t _Reserved_OptionControl_6(void*, ...);
|
|
|
|
virtual status_t _Reserved_OptionControl_7(void*, ...);
|
|
|
|
virtual status_t _Reserved_OptionControl_8(void*, ...);
|
|
|
|
virtual status_t _Reserved_OptionControl_9(void*, ...);
|
|
|
|
virtual status_t _Reserved_OptionControl_10(void*, ...);
|
|
|
|
virtual status_t _Reserved_OptionControl_11(void*, ...);
|
2002-10-23 17:54:44 +04:00
|
|
|
|
2009-08-26 18:19:30 +04:00
|
|
|
private:
|
|
|
|
uint32 _reserved[8];
|
2002-10-23 17:54:44 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2009-08-26 18:19:30 +04:00
|
|
|
#endif // _OPTION_CONTROL_H
|