mainwindow.h 623 B

12345678910111213141516171819202122232425262728293031323334
  1. #ifndef MAINWINDOW_H
  2. #define MAINWINDOW_H
  3. #include <QMainWindow>
  4. QT_BEGIN_NAMESPACE
  5. namespace Ui { class MainWindow; }
  6. QT_END_NAMESPACE
  7. class QMediaPlayer;
  8. class MainWindow : public QMainWindow
  9. {
  10. Q_OBJECT
  11. public:
  12. MainWindow(QWidget *parent = nullptr);
  13. ~MainWindow();
  14. private slots:
  15. void on_dosya_clicked();
  16. void on_oynat_clicked();
  17. void on_Beklet_clicked();
  18. void on_durdur_clicked();
  19. void on_sessiz_clicked();
  20. void on_ses_valueChanged(int value);
  21. void on_liste_itemSelectionChanged();
  22. private:
  23. Ui::MainWindow *ui;
  24. QMediaPlayer *mMediaPlayer;
  25. };
  26. #endif // MAINWINDOW_H