36 lines
729 B
C++
36 lines
729 B
C++
/*
|
|
* Copyright 2009, Pier Luigi Fiorini. All rights reserved.
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef _ROSTER_LIST_VIEW_H
|
|
#define _ROSTER_LIST_VIEW_H
|
|
|
|
#include <OutlineListView.h>
|
|
|
|
class BPopUpMenu;
|
|
|
|
class Contact;
|
|
class RosterItem;
|
|
|
|
class RosterListView : public BOutlineListView
|
|
{
|
|
public:
|
|
RosterListView(const char* name);
|
|
|
|
virtual void MessageReceived(BMessage* msg);
|
|
virtual void MouseMoved(BPoint where, uint32 code, const BMessage*);
|
|
virtual void MouseDown(BPoint where);
|
|
virtual void Draw(BRect updateRect);
|
|
virtual void AttachedToWindow();
|
|
void Sort();
|
|
|
|
private:
|
|
|
|
void _InfoWindow(Contact* linker);
|
|
|
|
BPopUpMenu* fPopUp;
|
|
RosterItem* fPrevItem;
|
|
};
|
|
|
|
#endif // _ROSTER_LIST_VIEW_H
|