mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 08:58:37 +00:00
40 lines
1.3 KiB
C++
40 lines
1.3 KiB
C++
#ifndef GEN_QSTANDARDPATHS_H
|
|
#define GEN_QSTANDARDPATHS_H
|
|
|
|
#include <stdbool.h>
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
|
|
|
|
#include "binding.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
class QStandardPaths;
|
|
#else
|
|
typedef struct QStandardPaths QStandardPaths;
|
|
#endif
|
|
|
|
struct miqt_string* QStandardPaths_WritableLocation(int typeVal);
|
|
struct miqt_array* QStandardPaths_StandardLocations(int typeVal);
|
|
struct miqt_string* QStandardPaths_Locate(int typeVal, struct miqt_string* fileName);
|
|
struct miqt_array* QStandardPaths_LocateAll(int typeVal, struct miqt_string* fileName);
|
|
struct miqt_string* QStandardPaths_DisplayName(int typeVal);
|
|
struct miqt_string* QStandardPaths_FindExecutable(struct miqt_string* executableName);
|
|
void QStandardPaths_EnableTestMode(bool testMode);
|
|
void QStandardPaths_SetTestModeEnabled(bool testMode);
|
|
bool QStandardPaths_IsTestModeEnabled();
|
|
struct miqt_string* QStandardPaths_Locate3(int typeVal, struct miqt_string* fileName, int options);
|
|
struct miqt_array* QStandardPaths_LocateAll3(int typeVal, struct miqt_string* fileName, int options);
|
|
struct miqt_string* QStandardPaths_FindExecutable2(struct miqt_string* executableName, struct miqt_array* /* of struct miqt_string* */ paths);
|
|
|
|
#ifdef __cplusplus
|
|
} /* extern C */
|
|
#endif
|
|
|
|
#endif
|