/* * Copyright 2012, Casalinuovo Dario. All rights reserved. * Distributed under the terms of the MIT License. * * Authors: * Casalinuovo Dario */ #ifndef _CONTACT_INFO_WINDOW_H #define _CONTACT_INFO_WINDOW_H #include #include #include #include "Observer.h" #include "CayaConstants.h" class BitmapView; class Contact; class ContactInfoWindow: public BWindow, public Observer { public: ContactInfoWindow(Contact* linker); virtual void MessageReceived(BMessage* message); private: BTextView* fStatus; Contact* fContact; BTextView* fPersonalMessage; BitmapView* fAvatar; }; #endif