mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 08:58:37 +00:00
40 lines
1.1 KiB
C++
40 lines
1.1 KiB
C++
#pragma once
|
|
#ifndef MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCISTYLEDTEXT_H
|
|
#define MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCISTYLEDTEXT_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 QsciScintillaBase;
|
|
class QsciStyle;
|
|
class QsciStyledText;
|
|
#else
|
|
typedef struct QsciScintillaBase QsciScintillaBase;
|
|
typedef struct QsciStyle QsciStyle;
|
|
typedef struct QsciStyledText QsciStyledText;
|
|
#endif
|
|
|
|
QsciStyledText* QsciStyledText_new(struct miqt_string text, int style);
|
|
QsciStyledText* QsciStyledText_new2(struct miqt_string text, QsciStyle* style);
|
|
QsciStyledText* QsciStyledText_new3(QsciStyledText* param1);
|
|
void QsciStyledText_Apply(const QsciStyledText* self, QsciScintillaBase* sci);
|
|
struct miqt_string QsciStyledText_Text(const QsciStyledText* self);
|
|
int QsciStyledText_Style(const QsciStyledText* self);
|
|
void QsciStyledText_Delete(QsciStyledText* self, bool isSubclass);
|
|
|
|
#ifdef __cplusplus
|
|
} /* extern C */
|
|
#endif
|
|
|
|
#endif
|