/usr/include/juffed/AppInfo.apple.h is in juffed-dev 0.10-85-g5ba17f9-17.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | /*
This file was automatically generated by configure script.
All the changes you made will be lost after the next run
of configure script.
*/
#ifndef _APP_INFO_APPLE_H_
#define _APP_INFO_APPLE_H_
#include <QtCore/QCoreApplication>
#include <QtCore/QDir>
#include <QtCore/QLocale>
#include <QtCore/QString>
/*! This class has to be used in the APPLEBUNDLE build types only!
*/
class AppInfo {
public:
static QString name() { return "JuffEd"; }
static QString organization() { return "Juff"; }
static QString version() { return "0.10"; }
static QString dataDirPath() { return QCoreApplication::applicationDirPath() + "/../Resources/"; }
static QString pluginsPath() { return QCoreApplication::applicationDirPath() + "/../plugins"; }
static QString translationPath() { return QCoreApplication::applicationDirPath() + "/../Resources/l10n"; }
static QString configDirPath() { return QDir::homePath() + "/.config/" + organization().toLower(); }
static QString configFile() { return configDirPath() + "/" + name().toLower() + ".conf"; }
static QString logFile() { return configDirPath() + "/juffed.log"; }
static QString defaultPrjPath() { return configDirPath() + "/empty_project.xml"; }
};
#endif
|