haiku/headers/private/media/DefaultMediaTheme.h
Axel Dörfler 243a71e41e Forgot to commit the latest headers, sorry.
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@3855 a95241bf-73f2-0310-859d-f6bbb57e9c96
2003-07-05 12:53:10 +00:00

35 lines
902 B
C++

/*
** Copyright 2003, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
** Distributed under the terms of the OpenBeOS License.
*/
#ifndef DEFAULT_MEDIA_THEME_H
#define DEFAULT_MEDIA_THEME_H
#include <MediaTheme.h>
namespace BPrivate {
class DefaultMediaTheme : public BMediaTheme {
public:
DefaultMediaTheme();
virtual BControl *MakeControlFor(BParameter *parameter);
static BControl *MakeViewFor(BParameter *parameter, const BRect *hintRect = NULL);
// this is also called by the BMediaTheme::MakeFallbackViewFor()
// method - that's why it's a static.
protected:
virtual BView *MakeViewFor(BParameterWeb *web, const BRect *hintRect = NULL);
private:
BView *MakeViewFor(BParameterGroup &group, const BRect &hintRect);
BView *MakeSelfHostingViewFor(BParameter &parameter, const BRect &hintRect);
};
} // namespace BPrivate
#endif /* DEFAULT_MEDIA_THEME_H */