mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
31 lines
439 B
C++
31 lines
439 B
C++
#ifndef CHATVIEW_H
|
|
#define CHATVIEW_H
|
|
|
|
#include <QWidget>
|
|
#include "scrollbar.h"
|
|
#include "QPaintEvent"
|
|
#include "channel.h"
|
|
|
|
class ChatWidgetView : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
ChatWidgetView();
|
|
|
|
Channel* channel() {
|
|
return m_channel;
|
|
}
|
|
|
|
protected:
|
|
void resizeEvent(QResizeEvent *);
|
|
|
|
private:
|
|
ScrollBar scrollbar;
|
|
Channel* m_channel;
|
|
|
|
void paintEvent(QPaintEvent *);
|
|
};
|
|
|
|
#endif // CHATVIEW_H
|