mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-04 16:49:58 +02:00
Add WebWindow::getURL
This commit is contained in:
parent
8088b01356
commit
1e1c60847b
1 changed files with 2 additions and 0 deletions
|
@ -34,6 +34,7 @@ signals:
|
|||
class WebWindowClass : public QObject {
|
||||
Q_OBJECT
|
||||
Q_PROPERTY(QObject* eventBridge READ getEventBridge)
|
||||
Q_PROPERTY(QString url READ getURL)
|
||||
public:
|
||||
WebWindowClass(const QString& title, const QString& url, int width, int height, bool isToolWindow = false);
|
||||
~WebWindowClass();
|
||||
|
@ -42,6 +43,7 @@ public:
|
|||
|
||||
public slots:
|
||||
void setVisible(bool visible);
|
||||
QString getURL() const { return _webView->url().url(); }
|
||||
void setURL(const QString& url);
|
||||
void raise();
|
||||
ScriptEventBridge* getEventBridge() const { return _eventBridge; }
|
||||
|
|
Loading…
Reference in a new issue