RedPanda-CPP/RedPandaIDE/systemconsts.h

85 lines
2.5 KiB
C
Raw Normal View History

2021-04-11 21:33:08 +08:00
#ifndef SYSTEMCONSTS_H
#define SYSTEMCONSTS_H
#include <QStringList>
#define DEVCPP_VERSION "0.6.8"
2021-04-24 15:57:45 +08:00
#ifdef Q_OS_WIN
#define APP_SETTSINGS_FILENAME "redpandacpp.ini"
2021-04-15 11:18:14 +08:00
#define GCC_PROGRAM "gcc.exe"
#define GPP_PROGRAM "g++.exe"
#define GDB_PROGRAM "gdb.exe"
#define GDB32_PROGRAM "gdb32.exe"
#define MAKE_PROGRAM "mingw32-make.exe"
#define WINDRES_PROGRAM "windres.exe"
#define GPROF_PROGRAM "gprof.exe"
2021-09-13 22:45:50 +08:00
#define CLEAN_PROGRAM "del /q /f"
2021-04-15 11:18:14 +08:00
#define CPP_PROGRAM "cpp.exe"
2021-04-24 15:57:45 +08:00
#else
#error "Only support windows now!"
#endif
2021-04-15 11:18:14 +08:00
2021-09-07 10:28:40 +08:00
#define DEV_PROJECT_EXT "dev"
#define RC_EXT "rc"
#define RES_EXT "res"
2021-09-07 10:28:40 +08:00
#define H_EXT "h"
2021-09-13 10:48:44 +08:00
#define OBJ_EXT "o"
2021-09-13 19:09:15 +08:00
#define DEF_EXT "def"
#define LIB_EXT "a"
#define GCH_EXT "gch"
#define ICON_EXT "ico"
2021-09-16 12:03:10 +08:00
#define TEMPLATE_EXT "template"
2021-09-07 16:49:35 +08:00
#define DEV_INTERNAL_OPEN "$__DEV_INTERNAL_OPEN"
#define DEV_LASTOPENS_FILE "lastopens.ini"
#define DEV_SYMBOLUSAGE_FILE "symbolusage.json"
#define DEV_CODESNIPPET_FILE "codesnippets.json"
2021-10-06 23:19:18 +08:00
#define DEV_AUTOLINK_FILE "autolink.json"
#define DEV_SHORTCUT_FILE "shortcuts.json"
2021-10-08 00:06:41 +08:00
#define DEV_TOOLS_FILE "tools.json"
2021-10-06 23:19:18 +08:00
2021-04-20 22:24:33 +08:00
#ifdef Q_OS_WIN
# define PATH_SENSITIVITY Qt::CaseInsensitive
# define PATH_SEPARATOR ";"
2021-04-20 22:24:33 +08:00
# define NULL_FILE "NUL"
2021-09-06 08:45:53 +08:00
# define EXECUTABLE_EXT "exe"
# define STATIC_LIB_EXT "a"
# define DYNAMIC_LIB_EXT "dll"
2021-09-06 12:58:29 +08:00
# define MAKEFILE_NAME "makefile.win"
2021-04-20 22:24:33 +08:00
#elif Q_OS_LINUX
# define PATH_SENSITIVITY Qt::CaseSensitive
# define PATH_SEPARATOR ":"
2021-04-20 22:24:33 +08:00
# define NULL_FILE "/dev/null"
2021-09-06 08:45:53 +08:00
# define EXECUTABLE_EXT ""
# define STATIC_LIB_EXT "a"
# define DYNAMIC_LIB_EXT "d"
2021-09-06 12:58:29 +08:00
# define MAKEFILE_NAME "makefile"
2021-04-20 22:24:33 +08:00
#else
#error "Only support windows and linux now!"
#endif
2021-04-11 21:33:08 +08:00
class SystemConsts
{
public:
SystemConsts();
const QStringList& defaultFileFilters() const noexcept;
const QString& defaultCFileFilter() const noexcept;
const QString& defaultCPPFileFilter() const noexcept;
2021-08-30 19:52:38 +08:00
const QString& defaultAllFileFilter() const noexcept;
2021-04-11 21:33:08 +08:00
void addDefaultFileFilter(const QString& name, const QString& fileExtensions);
const QStringList &iconFileFilters() const;
const QString& iconFileFilter() const;
void setIconFileFilters(const QStringList &newIconFileFilters);
const QStringList &codecNames() const;
2021-04-11 21:33:08 +08:00
private:
2021-09-16 23:51:05 +08:00
void addFileFilter(QStringList& filters, const QString& name, const QString& fileExtensions);
2021-04-11 21:33:08 +08:00
QStringList mDefaultFileFilters;
QStringList mIconFileFilters;
QStringList mCodecNames;
2021-04-11 21:33:08 +08:00
};
extern SystemConsts* pSystemConsts;
#endif // SYSTEMCONSTS_H