mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 08:58:37 +00:00
59 lines
2.1 KiB
C++
59 lines
2.1 KiB
C++
#pragma once
|
|
#ifndef MIQT_QT_GEN_QCOLLATOR_H
|
|
#define MIQT_QT_GEN_QCOLLATOR_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 QChar;
|
|
class QCollator;
|
|
class QCollatorSortKey;
|
|
class QLocale;
|
|
#else
|
|
typedef struct QChar QChar;
|
|
typedef struct QCollator QCollator;
|
|
typedef struct QCollatorSortKey QCollatorSortKey;
|
|
typedef struct QLocale QLocale;
|
|
#endif
|
|
|
|
void QCollatorSortKey_new(QCollatorSortKey* other, QCollatorSortKey** outptr_QCollatorSortKey);
|
|
void QCollatorSortKey_OperatorAssign(QCollatorSortKey* self, QCollatorSortKey* other);
|
|
void QCollatorSortKey_Swap(QCollatorSortKey* self, QCollatorSortKey* other);
|
|
int QCollatorSortKey_Compare(const QCollatorSortKey* self, QCollatorSortKey* key);
|
|
void QCollatorSortKey_Delete(QCollatorSortKey* self, bool isSubclass);
|
|
|
|
void QCollator_new(QCollator** outptr_QCollator);
|
|
void QCollator_new2(QLocale* locale, QCollator** outptr_QCollator);
|
|
void QCollator_new3(QCollator* param1, QCollator** outptr_QCollator);
|
|
void QCollator_OperatorAssign(QCollator* self, QCollator* param1);
|
|
void QCollator_Swap(QCollator* self, QCollator* other);
|
|
void QCollator_SetLocale(QCollator* self, QLocale* locale);
|
|
QLocale* QCollator_Locale(const QCollator* self);
|
|
int QCollator_CaseSensitivity(const QCollator* self);
|
|
void QCollator_SetCaseSensitivity(QCollator* self, int cs);
|
|
void QCollator_SetNumericMode(QCollator* self, bool on);
|
|
bool QCollator_NumericMode(const QCollator* self);
|
|
void QCollator_SetIgnorePunctuation(QCollator* self, bool on);
|
|
bool QCollator_IgnorePunctuation(const QCollator* self);
|
|
int QCollator_Compare(const QCollator* self, struct miqt_string s1, struct miqt_string s2);
|
|
int QCollator_Compare3(const QCollator* self, QChar* s1, int len1, QChar* s2, int len2);
|
|
bool QCollator_OperatorCall(const QCollator* self, struct miqt_string s1, struct miqt_string s2);
|
|
QCollatorSortKey* QCollator_SortKey(const QCollator* self, struct miqt_string stringVal);
|
|
void QCollator_Delete(QCollator* self, bool isSubclass);
|
|
|
|
#ifdef __cplusplus
|
|
} /* extern C */
|
|
#endif
|
|
|
|
#endif
|