-
-
Notifications
You must be signed in to change notification settings - Fork 78
Expand file tree
/
Copy pathDlgSettings.h
More file actions
40 lines (32 loc) · 865 Bytes
/
DlgSettings.h
File metadata and controls
40 lines (32 loc) · 865 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
// Author: Kang Lin <kl222@126.com>
#pragma once
#include <QDialog>
#include <QStandardItemModel>
#include <QWebEngineProfile>
#include "ParameterWebBrowser.h"
#include "ParameterRecordUI.h"
#include "FrmMediaDevices.h"
class CFrmWebBrowser;
namespace Ui {
class CDlgSettings;
}
class CDlgSettings : public QDialog
{
Q_OBJECT
public:
explicit CDlgSettings(QWebEngineProfile* pProfile,
CParameterWebBrowser* para,
QWidget *parent = nullptr);
~CDlgSettings();
public slots:
virtual void accept() override;
private slots:
void on_leHomeUrl_editingFinished();
void on_pbDownloadFolder_clicked();
private:
Ui::CDlgSettings *ui;
CParameterWebBrowser* m_pPara;
QStandardItemModel* m_pSearchModel;
CParameterRecordUI* m_pRecordUI;
CFrmMediaDevices* m_pMediaDevices;
};