mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 08:58:37 +00:00
69 lines
2.6 KiB
C++
69 lines
2.6 KiB
C++
#pragma once
|
|
#ifndef MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCILEXERXML_H
|
|
#define MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCILEXERXML_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 QColor;
|
|
class QFont;
|
|
class QMetaObject;
|
|
class QObject;
|
|
class QsciLexer;
|
|
class QsciLexerHTML;
|
|
class QsciLexerXML;
|
|
#else
|
|
typedef struct QColor QColor;
|
|
typedef struct QFont QFont;
|
|
typedef struct QMetaObject QMetaObject;
|
|
typedef struct QObject QObject;
|
|
typedef struct QsciLexer QsciLexer;
|
|
typedef struct QsciLexerHTML QsciLexerHTML;
|
|
typedef struct QsciLexerXML QsciLexerXML;
|
|
#endif
|
|
|
|
QsciLexerXML* QsciLexerXML_new();
|
|
QsciLexerXML* QsciLexerXML_new2(QObject* parent);
|
|
void QsciLexerXML_virtbase(QsciLexerXML* src, QsciLexerHTML** outptr_QsciLexerHTML);
|
|
QMetaObject* QsciLexerXML_MetaObject(const QsciLexerXML* self);
|
|
void* QsciLexerXML_Metacast(QsciLexerXML* self, const char* param1);
|
|
struct miqt_string QsciLexerXML_Tr(const char* s);
|
|
struct miqt_string QsciLexerXML_TrUtf8(const char* s);
|
|
const char* QsciLexerXML_Language(const QsciLexerXML* self);
|
|
const char* QsciLexerXML_Lexer(const QsciLexerXML* self);
|
|
QColor* QsciLexerXML_DefaultColor(const QsciLexerXML* self, int style);
|
|
bool QsciLexerXML_DefaultEolFill(const QsciLexerXML* self, int style);
|
|
QFont* QsciLexerXML_DefaultFont(const QsciLexerXML* self, int style);
|
|
QColor* QsciLexerXML_DefaultPaper(const QsciLexerXML* self, int style);
|
|
const char* QsciLexerXML_Keywords(const QsciLexerXML* self, int set);
|
|
void QsciLexerXML_RefreshProperties(QsciLexerXML* self);
|
|
void QsciLexerXML_SetScriptsStyled(QsciLexerXML* self, bool styled);
|
|
bool QsciLexerXML_ScriptsStyled(const QsciLexerXML* self);
|
|
struct miqt_string QsciLexerXML_Tr2(const char* s, const char* c);
|
|
struct miqt_string QsciLexerXML_Tr3(const char* s, const char* c, int n);
|
|
struct miqt_string QsciLexerXML_TrUtf82(const char* s, const char* c);
|
|
struct miqt_string QsciLexerXML_TrUtf83(const char* s, const char* c, int n);
|
|
void QsciLexerXML_override_virtual_SetFoldCompact(void* self, intptr_t slot);
|
|
void QsciLexerXML_virtualbase_SetFoldCompact(void* self, bool fold);
|
|
void QsciLexerXML_override_virtual_SetFoldPreprocessor(void* self, intptr_t slot);
|
|
void QsciLexerXML_virtualbase_SetFoldPreprocessor(void* self, bool fold);
|
|
void QsciLexerXML_override_virtual_SetCaseSensitiveTags(void* self, intptr_t slot);
|
|
void QsciLexerXML_virtualbase_SetCaseSensitiveTags(void* self, bool sens);
|
|
void QsciLexerXML_Delete(QsciLexerXML* self, bool isSubclass);
|
|
|
|
#ifdef __cplusplus
|
|
} /* extern C */
|
|
#endif
|
|
|
|
#endif
|