2017-07-19 23:20:32 +02:00
|
|
|
#pragma once
|
2013-08-09 06:57:18 +02:00
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
|
2017-07-27 02:34:25 +02:00
|
|
|
QString lcFormatValue(float Value, int Precision);
|
2016-06-13 03:46:50 +02:00
|
|
|
QString lcFormatValueLocalized(float Value);
|
2016-06-14 01:57:31 +02:00
|
|
|
float lcParseValueLocalized(const QString& Value);
|
2015-01-20 00:48:46 +01:00
|
|
|
|
2013-08-09 06:57:18 +02:00
|
|
|
class lcQTreeWidgetColumnStretcher : public QObject
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
lcQTreeWidgetColumnStretcher(QTreeWidget *treeWidget, int columnToStretch);
|
|
|
|
|
|
|
|
virtual bool eventFilter(QObject *obj, QEvent *ev);
|
|
|
|
|
|
|
|
const int m_columnToStretch;
|
|
|
|
};
|
|
|
|
|