paysages3d/src/interface/desktop/tools.h

52 lines
929 B
C
Raw Normal View History

#ifndef _PAYSAGES_QT_TOOLS_H_
#define _PAYSAGES_QT_TOOLS_H_
#include <QColor>
#include <QDialog>
#include <QDir>
#include "Color.h"
static inline QColor colorToQColor(Color color)
{
colorNormalize(&color);
return QColor(color.r * 255.0, color.g * 255.0, color.b * 255.0, color.a * 255.0);
}
static inline QString getDataPath(QString path)
{
2013-06-16 17:06:10 +00:00
QFile datafile(QDir("/usr/share/paysages3d/").absoluteFilePath(path));
if (datafile.exists())
{
return datafile.fileName();
}
else
{
return QDir("./data").absoluteFilePath(path);
}
}
QString getHumanMemory(qint64 memused);
class DialogWithPreview:public QDialog
{
Q_OBJECT
public:
DialogWithPreview(QWidget* parent);
protected:
virtual bool event(QEvent* event);
};
#ifndef NDEBUG
#include <QDebug>
static inline void logDebug(QString string)
{
qDebug() << string;
}
#else
#define logDebug(_x_) ;
#endif
#endif