miqt/qt/gen_qloggingcategory.cpp

62 lines
1.6 KiB
C++
Raw Normal View History

#include <QLoggingCategory>
#include <QString>
2024-08-29 07:01:51 +00:00
#include <QByteArray>
#include <cstring>
#include "qloggingcategory.h"
2024-08-29 07:01:51 +00:00
#include "gen_qloggingcategory.h"
extern "C" {
extern void miqt_exec_callback(void* cb, int argc, void* argv);
}
2024-08-29 07:01:51 +00:00
QLoggingCategory* QLoggingCategory_new(const char* category) {
return new QLoggingCategory(category);
}
bool QLoggingCategory_IsDebugEnabled(const QLoggingCategory* self) {
return self->isDebugEnabled();
}
bool QLoggingCategory_IsInfoEnabled(const QLoggingCategory* self) {
return self->isInfoEnabled();
}
bool QLoggingCategory_IsWarningEnabled(const QLoggingCategory* self) {
return self->isWarningEnabled();
}
bool QLoggingCategory_IsCriticalEnabled(const QLoggingCategory* self) {
return self->isCriticalEnabled();
}
const char* QLoggingCategory_CategoryName(const QLoggingCategory* self) {
return (const char*) self->categoryName();
}
QLoggingCategory* QLoggingCategory_OperatorCall(QLoggingCategory* self) {
QLoggingCategory& ret = self->operator()();
// Cast returned reference into pointer
return &ret;
}
QLoggingCategory* QLoggingCategory_OperatorCall2(const QLoggingCategory* self) {
const QLoggingCategory& ret = self->operator()();
// Cast returned reference into pointer
return const_cast<QLoggingCategory*>(&ret);
}
QLoggingCategory* QLoggingCategory_DefaultCategory() {
return QLoggingCategory::defaultCategory();
}
void QLoggingCategory_SetFilterRules(const char* rules, size_t rules_Strlen) {
QString rules_QString = QString::fromUtf8(rules, rules_Strlen);
QLoggingCategory::setFilterRules(rules_QString);
}
void QLoggingCategory_Delete(QLoggingCategory* self) {
delete self;
}