TrayView
db.AddItem(new TrayView(BRect(0, 0, db.MaxItemHeight() - 1, db.MaxItemHeight() - 1)));
return new TrayView(BRect(0, 0, maxHeight - 1, maxHeight - 1));
TrayView::TrayView(BRect frame)
TrayView::TrayView(BMessage *mdArchive):BView(mdArchive){
void TrayView::_init()
TrayView::~TrayView(){
status_t TrayView::Archive(BMessage *data, bool deep) const {
TrayView *TrayView::Instantiate(BMessage *data) {
return (new TrayView(data));
void TrayView::AttachedToWindow() {
void TrayView::Draw(BRect updaterect) {
void TrayView::MouseDown(BPoint where) {
TrayView *tv = (TrayView *)arg;
TrayView *tv = (TrayView *)arg;
void TrayView::MessageReceived(BMessage* message)
ConfigMenu::ConfigMenu(TrayView *tv, bool useMag)
AutoRaiseSettings *TrayView::Settings() const
void TrayView::SetActive(bool st)
class _EXPORT TrayView;
class TrayView:public BView{
TrayView(BRect frame);
TrayView(BMessage *mdArchive);
virtual ~TrayView();
static TrayView *Instantiate(BMessage *data);
ConfigMenu(TrayView *tv, bool useMag);