////////////////////////////////////////////////// // Blabber [BuddyInfoWindow.h] ////////////////////////////////////////////////// #pragma once #include #include #include #include "../jabber/UserID.h" class BGridLayout; class PictureView; class BuddyInfoWindow : public BWindow { public: BuddyInfoWindow(UserID *querying_user); ~BuddyInfoWindow(); void MessageReceived(BMessage*) override; private: BGridLayout* fDetails; PictureView* fAvatar; BString fJID; };