38 lines
947 B
C
Raw Normal View History

#pragma once
#ifndef MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA6_GEN_QSCICOMMAND_H
#define MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA6_GEN_QSCICOMMAND_H
2024-11-06 18:30:07 +13:00
#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
2025-02-01 13:45:16 +13:00
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);
2024-11-06 18:30:07 +13:00
#ifdef __cplusplus
} /* extern C */
2025-02-01 13:45:16 +13:00
#endif
2024-11-06 18:30:07 +13:00
#endif