miqt/qt-restricted-extras/qscintilla/gen_qscicommand.h

37 lines
859 B
C
Raw Normal View History

2024-10-20 04:59:23 +00:00
#ifndef GEN_QSCICOMMAND_H
#define GEN_QSCICOMMAND_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 QsciCommand;
#else
typedef struct QsciCommand QsciCommand;
#endif
int QsciCommand_Command(const QsciCommand* self);
void QsciCommand_Execute(QsciCommand* self);
void QsciCommand_SetKey(QsciCommand* self, int key);
void QsciCommand_SetAlternateKey(QsciCommand* self, int altkey);
int QsciCommand_Key(const QsciCommand* self);
int QsciCommand_AlternateKey(const QsciCommand* self);
bool QsciCommand_ValidKey(int key);
struct miqt_string QsciCommand_Description(const QsciCommand* self);
void QsciCommand_Delete(QsciCommand* self);
#ifdef __cplusplus
} /* extern C */
#endif
#endif