You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
457 B
C++
30 lines
457 B
C++
#ifndef CPREFERENCES_H
|
|
#define CPREFERENCES_H
|
|
|
|
#include <QDialog>
|
|
|
|
namespace Ui {
|
|
class cPreferences;
|
|
}
|
|
|
|
class cPreferences : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit cPreferences(QWidget *parent = nullptr);
|
|
~cPreferences();
|
|
|
|
bool displaySeason0Changed();
|
|
private slots:
|
|
void on_m_lpSeriesPathSelect_clicked();
|
|
|
|
void on_m_lpMoviesPathSelect_clicked();
|
|
|
|
private:
|
|
Ui::cPreferences* ui;
|
|
bool m_bDisplaySeason0;
|
|
};
|
|
|
|
#endif // CPREFERENCES_H
|