mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
22 lines
390 B
C++
22 lines
390 B
C++
#ifndef MAINWINDOW_H
|
|
#define MAINWINDOW_H
|
|
|
|
#include "notebook.h"
|
|
|
|
#include <QMainWindow>
|
|
|
|
class MainWindow : public QMainWindow
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit MainWindow(QWidget *parent = 0);
|
|
~MainWindow();
|
|
Notebook notebook;
|
|
|
|
void layoutVisibleChatWidgets(Channel *channel = NULL);
|
|
void repaintVisibleChatWidgets(Channel *channel = NULL);
|
|
};
|
|
|
|
#endif // MAINWINDOW_H
|