blob: f0d18f691b96f70e22dd03c028316e7f17c3c09d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#ifndef PEBBLESTOREVIEW_H
#define PEBBLESTOREVIEW_H
#include <private/qquickwebview_p.h>
#include <private/qwebnavigationrequest_p.h>
#include <QQuickItem>
class PebbleStoreView : public QQuickWebView
{
Q_OBJECT
public:
PebbleStoreView();
public slots:
void onNavigationRequested(QWebNavigationRequest* request);
signals:
void loginSuccess(const QString & accessToken);
void downloadPebbleApp(const QString & title, const QString & downloadUrl);
void call(const QString &, const QString &);
};
#endif // PEBBLESTOREVIEW_H
|