mirror of
https://github.com/QuasarApp/QtAndroidTools.git
synced 2025-04-30 06:54:31 +00:00
98 lines
2.9 KiB
C++
98 lines
2.9 KiB
C++
/*
|
|
* MIT License
|
|
*
|
|
* Copyright (c) 2018 Fabio Falsini <falsinsoft@gmail.com>
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
* in the Software without restriction, including without limitation the rights
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
* furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in all
|
|
* copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
* SOFTWARE.
|
|
*/
|
|
#pragma once
|
|
|
|
#include <QtAndroidExtras>
|
|
#include <QQmlEngine>
|
|
#include <QQuickItem>
|
|
|
|
class QAndroidAdMobRewardedVideo : public QQuickItem
|
|
{
|
|
Q_PROPERTY(QString unitId READ getUnitId WRITE setUnitId)
|
|
Q_ENUMS(ERROR_TYPE)
|
|
Q_OBJECT
|
|
|
|
public:
|
|
QAndroidAdMobRewardedVideo(QQuickItem *parent = nullptr);
|
|
~QAndroidAdMobRewardedVideo();
|
|
|
|
enum ERROR_TYPE
|
|
{
|
|
ERROR_INTERNAL = 0,
|
|
ERROR_NETWORK,
|
|
ERROR_INVALID_REQUEST,
|
|
ERROR_NO_FILL
|
|
};
|
|
|
|
Q_INVOKABLE bool show();
|
|
Q_INVOKABLE bool load();
|
|
|
|
const QString& getUnitId() const;
|
|
void setUnitId(const QString &UnitId);
|
|
|
|
static const QMap<int, QAndroidAdMobRewardedVideo*>& Instances();
|
|
|
|
signals:
|
|
void rewarded(const QString &type, int amount);
|
|
void loadError(int errorId);
|
|
void loading();
|
|
void loaded();
|
|
void opened();
|
|
void closed();
|
|
void started();
|
|
void completed();
|
|
void leftApplication();
|
|
|
|
private:
|
|
const QAndroidJniObject m_JavaAdMobRewardedVideo;
|
|
static QMap<int, QAndroidAdMobRewardedVideo*> m_pInstancesMap;
|
|
static int m_InstancesCounter;
|
|
const int m_InstanceIndex;
|
|
QString m_UnitId;
|
|
|
|
enum EVENT_TYPE
|
|
{
|
|
EVENT_LOADING = 0,
|
|
EVENT_LOADED,
|
|
EVENT_OPENED,
|
|
EVENT_CLOSED,
|
|
EVENT_STARTED,
|
|
EVENT_COMPLETED,
|
|
EVENT_LEFT_APPLICATION
|
|
};
|
|
|
|
static void RewardedVideoReward(JNIEnv *env, jobject thiz, jstring type, jint amount);
|
|
static void RewardedVideoEvent(JNIEnv *env, jobject thiz, jint eventId);
|
|
static void RewardedVideoError(JNIEnv *env, jobject thiz, jint errorId);
|
|
|
|
enum APP_STATE
|
|
{
|
|
APP_STATE_CREATE = 0,
|
|
APP_STATE_START,
|
|
APP_STATE_STOP,
|
|
APP_STATE_DESTROY
|
|
};
|
|
void SetNewAppState(APP_STATE NewState);
|
|
};
|