-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebwindow.h
More file actions
46 lines (35 loc) · 785 Bytes
/
webwindow.h
File metadata and controls
46 lines (35 loc) · 785 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
41
42
43
44
45
46
#ifndef WEBWINDOW_H
#define WEBWINDOW_H
#include "defines.h"
#include <QMainWindow>
#include <QUrl>
#include <QWebFrame>
namespace Ui {
class WebWindow;
}
class MainWindow;
class WebWindow : public QMainWindow
{
Q_OBJECT
public:
explicit WebWindow(QWidget *parent = 0);
~WebWindow();
private:
Ui::WebWindow *ui;
MainWindow *mainWindow;
void initWeb();
private slots:
void linkClickedWebView(QUrl);
public slots:
void attachObject();
QString getFiles();
bool isShowA0();
bool isShowF0();
bool isShowError();
bool isShowTime();
void setShowA0(QVariant);
void setShowF0(QVariant);
void setShowError(QVariant);
void setShowTime(QVariant);
};
#endif // WEBWINDOW_H