mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 08:58:37 +00:00
52 lines
1.7 KiB
C++
52 lines
1.7 KiB
C++
#pragma once
|
|
#ifndef MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCILEXEROCTAVE_H
|
|
#define MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCILEXEROCTAVE_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 QMetaObject;
|
|
class QObject;
|
|
class QsciLexer;
|
|
class QsciLexerMatlab;
|
|
class QsciLexerOctave;
|
|
#else
|
|
typedef struct QMetaObject QMetaObject;
|
|
typedef struct QObject QObject;
|
|
typedef struct QsciLexer QsciLexer;
|
|
typedef struct QsciLexerMatlab QsciLexerMatlab;
|
|
typedef struct QsciLexerOctave QsciLexerOctave;
|
|
#endif
|
|
|
|
QsciLexerOctave* QsciLexerOctave_new();
|
|
QsciLexerOctave* QsciLexerOctave_new2(QObject* parent);
|
|
void QsciLexerOctave_virtbase(QsciLexerOctave* src, QsciLexerMatlab** outptr_QsciLexerMatlab);
|
|
QMetaObject* QsciLexerOctave_MetaObject(const QsciLexerOctave* self);
|
|
void* QsciLexerOctave_Metacast(QsciLexerOctave* self, const char* param1);
|
|
struct miqt_string QsciLexerOctave_Tr(const char* s);
|
|
struct miqt_string QsciLexerOctave_TrUtf8(const char* s);
|
|
const char* QsciLexerOctave_Language(const QsciLexerOctave* self);
|
|
const char* QsciLexerOctave_Lexer(const QsciLexerOctave* self);
|
|
const char* QsciLexerOctave_Keywords(const QsciLexerOctave* self, int set);
|
|
struct miqt_string QsciLexerOctave_Tr2(const char* s, const char* c);
|
|
struct miqt_string QsciLexerOctave_Tr3(const char* s, const char* c, int n);
|
|
struct miqt_string QsciLexerOctave_TrUtf82(const char* s, const char* c);
|
|
struct miqt_string QsciLexerOctave_TrUtf83(const char* s, const char* c, int n);
|
|
void QsciLexerOctave_Delete(QsciLexerOctave* self, bool isSubclass);
|
|
|
|
#ifdef __cplusplus
|
|
} /* extern C */
|
|
#endif
|
|
|
|
#endif
|