amuse/Editor/Common.cpp

92 lines
3.0 KiB
C++
Raw Permalink Normal View History

#include "Common.hpp"
2018-08-03 19:31:47 -07:00
#include "MainWindow.hpp"
#include <QDir>
#include <QMessageBox>
#include <QObject>
2018-07-31 01:04:43 -07:00
#include <QProcess>
#include <QTransform>
2021-06-30 11:15:40 -07:00
std::string QStringToUTF8(const QString& str) {
2018-12-07 21:20:09 -08:00
return str.toUtf8().toStdString();
}
2021-06-30 11:15:40 -07:00
QString UTF8ToQString(const std::string& str) {
2018-12-07 21:20:09 -08:00
return QString::fromStdString(str);
}
2018-12-07 21:20:09 -08:00
bool MkPath(const QString& path, UIMessenger& messenger) {
QFileInfo fInfo(path);
return MkPath(fInfo.dir(), fInfo.fileName(), messenger);
}
2018-12-07 21:20:09 -08:00
bool MkPath(const QDir& dir, const QString& file, UIMessenger& messenger) {
if (!dir.mkpath(file)) {
QString msg = QString(MainWindow::tr("A directory at '%1/%2' could not be created.")).arg(dir.path()).arg(file);
messenger.critical(MainWindow::tr("Unable to create directory"), msg);
return false;
}
return true;
}
2018-07-31 01:04:43 -07:00
2018-12-07 21:20:09 -08:00
void ShowInGraphicalShell(QWidget* parent, const QString& pathIn) {
const QFileInfo fileInfo(pathIn);
// Mac, Windows support folder or file.
2018-07-31 01:04:43 -07:00
#if defined(Q_OS_WIN)
2018-12-07 21:20:09 -08:00
QString paths = QProcessEnvironment::systemEnvironment().value(QStringLiteral("Path"));
QString explorer;
for (QString path : paths.split(QStringLiteral(";"))) {
QFileInfo finfo(QDir(path), QStringLiteral("explorer.exe"));
if (finfo.exists()) {
explorer = finfo.filePath();
break;
2018-07-31 01:04:43 -07:00
}
2018-12-07 21:20:09 -08:00
}
if (explorer.isEmpty()) {
QMessageBox::warning(parent, MainWindow::tr("Launching Windows Explorer Failed"),
MainWindow::tr("Could not find explorer.exe in path to launch Windows Explorer."));
return;
}
QStringList param;
if (!fileInfo.isDir())
param += QLatin1String("/select,");
param += QDir::toNativeSeparators(fileInfo.canonicalFilePath());
QProcess::startDetached(explorer, param);
2018-07-31 01:04:43 -07:00
#elif defined(Q_OS_MAC)
2018-12-07 21:20:09 -08:00
QStringList scriptArgs;
scriptArgs << QLatin1String("-e")
<< QString::fromLatin1("tell application \"Finder\" to reveal POSIX file \"%1\"")
.arg(fileInfo.canonicalFilePath());
QProcess::execute(QLatin1String("/usr/bin/osascript"), scriptArgs);
scriptArgs.clear();
scriptArgs << QLatin1String("-e") << QLatin1String("tell application \"Finder\" to activate");
QProcess::execute(QLatin1String("/usr/bin/osascript"), scriptArgs);
2018-07-31 01:04:43 -07:00
#else
2018-12-07 21:20:09 -08:00
// we cannot select a file here, because no file browser really supports it...
const QString folder = fileInfo.isDir() ? fileInfo.absoluteFilePath() : fileInfo.filePath();
QProcess browserProc;
2020-09-08 16:23:55 -07:00
const QStringList browserArgs = QStringList() << QStringLiteral("%1").arg(QFileInfo(folder).path());
browserProc.startDetached(QStringLiteral("xdg-open"), browserArgs);
2018-07-31 01:04:43 -07:00
#endif
}
2018-12-07 21:20:09 -08:00
QString ShowInGraphicalShellString() {
2018-07-31 01:04:43 -07:00
#if defined(Q_OS_WIN)
2018-12-07 21:20:09 -08:00
return MainWindow::tr("Show in Explorer");
2018-07-31 01:04:43 -07:00
#elif defined(Q_OS_MAC)
2018-12-07 21:20:09 -08:00
return MainWindow::tr("Show in Finder");
2018-07-31 01:04:43 -07:00
#else
2018-12-07 21:20:09 -08:00
return MainWindow::tr("Show in Browser");
2018-07-31 01:04:43 -07:00
#endif
}
2018-08-05 21:20:42 -07:00
2018-12-07 21:20:09 -08:00
QTransform RectToRect(const QRectF& from, const QRectF& to) {
QPolygonF orig(from);
orig.pop_back();
QPolygonF resize(to);
resize.pop_back();
QTransform ret;
QTransform::quadToQuad(orig, resize, ret);
return ret;
2018-08-05 21:20:42 -07:00
}