txtcord/mainwindow.h

24 lines
417 B
C
Raw Normal View History

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