/* * Copyright 2021, Jaidyn Levesque * All rights reserved. Distributed under the terms of the MIT license. */ #ifndef CONVERSATIONLIST_H #define CONVERSATIONLIST_H #include class BPopUpMenu; class UserListView : public BListView { public: UserListView(const char* name); void MessageReceived(BMessage* msg); void MouseDown(BPoint where); private: BPopUpMenu* _UserPopUp(); BPopUpMenu* _BlankPopUp(); }; #endif // CONVERSATIONLIST_H