#ifndef SetVideoUrlDialog_H
|
#define SetVideoUrlDialog_H
|
|
#include <QDialog>
|
|
namespace Ui {
|
class SetVideoUrlDialog;
|
}
|
|
class SetVideoUrlDialog : public QDialog
|
{
|
Q_OBJECT
|
|
public:
|
explicit SetVideoUrlDialog(QWidget *parent = 0);
|
~SetVideoUrlDialog();
|
|
void setVideoUrl(const QString &url);
|
QString getVideoUrl();
|
|
void setType(const int &type);
|
int getType();
|
|
int getItemCount();
|
|
private:
|
Ui::SetVideoUrlDialog *ui;
|
int videoType = 0;
|
int itemCount = 0;
|
|
private slots:
|
void slotBtnClick(bool isChecked);
|
|
void on_lineEdit_fileUrl_cursorPositionChanged(int arg1, int arg2);
|
void on_comboBox_currentIndexChanged(int index);
|
};
|
|
#endif // SetVideoUrlDialog_H
|