Chat-O-Matic/application/windows/UserInfoWindow.h

42 lines
836 B
C
Raw Normal View History

/*
* Copyright 2012, Casalinuovo Dario. All rights reserved.
2021-07-07 22:35:44 -05:00
* Copyright 2021, Jaidyn Levesque. All rights reserved.
* Distributed under the terms of the MIT License.
*
* Authors:
* Casalinuovo Dario
2021-07-07 22:35:44 -05:00
* Jaidyn Levesque <jadedctrl@teknik.io>
*/
#ifndef _USER_INFO_WINDOW_H
#define _USER_INFO_WINDOW_H
#include <Window.h>
#include <TextView.h>
#include <StringView.h>
#include "Observer.h"
class BitmapView;
class User;
class UserInfoWindow: public BWindow, public Observer {
public:
UserInfoWindow(User* user);
virtual void MessageReceived(BMessage* message);
private:
2021-07-07 22:35:44 -05:00
void _InitInterface();
User* fUser;
2021-07-07 22:35:44 -05:00
BitmapView* fAvatar;
2021-07-07 22:35:44 -05:00
BStringView* fNameLabel;
2021-07-24 20:54:46 -05:00
BTextView* fIdLabel;
BitmapView* fStatusIcon;
2021-07-07 22:35:44 -05:00
BStringView* fStatusLabel;
BStringView* fTextStatusLabel;
};
#endif // _USER_INFO_WINDOW_H