-
-
Notifications
You must be signed in to change notification settings - Fork 79
Expand file tree
/
Copy pathFrmPopup.h
More file actions
25 lines (22 loc) · 573 Bytes
/
FrmPopup.h
File metadata and controls
25 lines (22 loc) · 573 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
// Author: Kang Lin <kl222@126.com>
#pragma once
#include <QLineEdit>
#include <QAction>
#include <QWidget>
#include <QWebEnginePage>
class CFrmWebView;
class CFrmWebBrowser;
class CFrmPopup : public QWidget
{
Q_OBJECT
public:
explicit CFrmPopup(QWebEngineProfile *profile, CFrmWebBrowser* pWebBrowser, QWidget *parent = nullptr);
virtual ~CFrmPopup();
CFrmWebView* GetView();
private Q_SLOTS:
void slotHandleGeometryChangeRequested(const QRect &newGeometry);
private:
QLineEdit* m_pleUrl;
QAction* m_pFavAction;
CFrmWebView* m_pView;
};