mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 00:48:38 +00:00
57 lines
2.1 KiB
C++
57 lines
2.1 KiB
C++
#pragma once
|
|
#ifndef MIQT_QT_MULTIMEDIA_GEN_QMEDIACONTENT_H
|
|
#define MIQT_QT_MULTIMEDIA_GEN_QMEDIACONTENT_H
|
|
|
|
#include <stdbool.h>
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
|
|
|
|
#include "../../libmiqt/libmiqt.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
class QMediaContent;
|
|
class QMediaPlaylist;
|
|
class QMediaResource;
|
|
class QNetworkRequest;
|
|
class QUrl;
|
|
#else
|
|
typedef struct QMediaContent QMediaContent;
|
|
typedef struct QMediaPlaylist QMediaPlaylist;
|
|
typedef struct QMediaResource QMediaResource;
|
|
typedef struct QNetworkRequest QNetworkRequest;
|
|
typedef struct QUrl QUrl;
|
|
#endif
|
|
|
|
QMediaContent* QMediaContent_new();
|
|
QMediaContent* QMediaContent_new2(QUrl* contentUrl);
|
|
QMediaContent* QMediaContent_new3(QNetworkRequest* contentRequest);
|
|
QMediaContent* QMediaContent_new4(QMediaResource* contentResource);
|
|
QMediaContent* QMediaContent_new5(struct miqt_array /* of QMediaResource* */ resources);
|
|
QMediaContent* QMediaContent_new6(QMediaContent* other);
|
|
QMediaContent* QMediaContent_new7(QMediaPlaylist* playlist);
|
|
QMediaContent* QMediaContent_new8(QMediaPlaylist* playlist, QUrl* contentUrl);
|
|
QMediaContent* QMediaContent_new9(QMediaPlaylist* playlist, QUrl* contentUrl, bool takeOwnership);
|
|
void QMediaContent_OperatorAssign(QMediaContent* self, QMediaContent* other);
|
|
bool QMediaContent_OperatorEqual(const QMediaContent* self, QMediaContent* other);
|
|
bool QMediaContent_OperatorNotEqual(const QMediaContent* self, QMediaContent* other);
|
|
bool QMediaContent_IsNull(const QMediaContent* self);
|
|
QNetworkRequest* QMediaContent_Request(const QMediaContent* self);
|
|
QUrl* QMediaContent_CanonicalUrl(const QMediaContent* self);
|
|
QNetworkRequest* QMediaContent_CanonicalRequest(const QMediaContent* self);
|
|
QMediaResource* QMediaContent_CanonicalResource(const QMediaContent* self);
|
|
struct miqt_array /* of QMediaResource* */ QMediaContent_Resources(const QMediaContent* self);
|
|
QMediaPlaylist* QMediaContent_Playlist(const QMediaContent* self);
|
|
void QMediaContent_Delete(QMediaContent* self, bool isSubclass);
|
|
|
|
#ifdef __cplusplus
|
|
} /* extern C */
|
|
#endif
|
|
|
|
#endif
|