txtcord/mainwindow.h

26 lines
457 B
C
Raw Normal View History

2024-08-14 13:48:27 -04:00
#ifndef MAINWINDOW_H
#define MAINWINDOW_H
2024-08-14 14:54:24 -04:00
#include <QLineEdit>
2024-08-14 13:48:27 -04:00
#include <QMainWindow>
#include <QProgressBar>
#include <QPushButton>
#include <QSlider>
2024-08-14 14:54:24 -04:00
#include <QTextEdit>
2024-08-14 13:48:27 -04:00
#include <QVBoxLayout>
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
MainWindow(QWidget *parent = nullptr);
~MainWindow();
private:
QVBoxLayout *m_layout;
2024-08-14 14:54:24 -04:00
QTextEdit *m_chatlog;
QLineEdit *m_box;
QPushButton *m_send;
2024-08-14 13:48:27 -04:00
};
#endif // MAINWINDOW_H