Fixed warnings. Maximum initial values are 100 (One should always print values in decimal, not hex). Implemented GetSupportedSuites().

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@11180 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Stefano Ceccherini 2005-02-01 13:16:22 +00:00
parent 1c3a6ab025
commit 976f53a988
2 changed files with 18 additions and 3 deletions

View File

@ -5,7 +5,13 @@
#include <ChannelControl.h>
#include <Message.h>
#include <PropertyInfo.h>
static property_info // TODO: Finish this
sPropertyInfo[] = {
{0}
};
BChannelControl::BChannelControl(BRect frame, const char *name, const char *label,
@ -23,7 +29,7 @@ BChannelControl::BChannelControl(BRect frame, const char *name, const char *labe
memset(_m_channel_min, 0, sizeof(int32) * channel_count);
_m_channel_max = new int32[channel_count];
memset(_m_channel_max, 64, sizeof(int32) * channel_count);
memset(_m_channel_max, 100, sizeof(int32) * channel_count);
_m_channel_val = new int32[channel_count];
memset(_m_channel_val, 0, sizeof(int32) * channel_count);
@ -106,7 +112,15 @@ BChannelControl::ResolveSpecifier(BMessage *msg, int32 index, BMessage *specifie
status_t
BChannelControl::GetSupportedSuites(BMessage *data)
{
return B_ERROR;
if (data == NULL)
return B_BAD_VALUE;
data->AddString("suites", "suite/vnd.Be-channel-control");
BPropertyInfo propertyInfo(sPropertyInfo);
data->AddFlat("messages", &propertyInfo);
return BControl::GetSupportedSuites(data);
}

View File

@ -317,6 +317,7 @@ const BBitmap *
BChannelSlider::ThumbFor(int32 channel, bool pressed)
{
// TODO: Implement
return NULL;
}